fix(brainstorming): suppress AskUserQuestion; add explicit conversational-text rule#1843
Open
citizen204 wants to merge 1 commit into
Open
fix(brainstorming): suppress AskUserQuestion; add explicit conversational-text rule#1843citizen204 wants to merge 1 commit into
citizen204 wants to merge 1 commit into
Conversation
…onal-text rule On v6.0.0 the platform-neutral bootstrap reframe caused Claude Code to map "ask clarifying questions / present multiple-choice options" to the native AskUserQuestion tool, overriding the skill's conversational intent. Add an explicit note in brainstorming/SKILL.md and in the Claude Code tool mapping reference that asking the user is not a tool action on Claude Code — questions must be presented as plain conversational text in the terminal. Fixes obra#1773
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
On v6.0.0 the platform-neutral bootstrap reframe caused Claude Code to route "ask clarifying questions / present multiple-choice options" to the native
AskUserQuestionstructured-choice tool, overriding the skill's explicit "present options conversationally / use the terminal" intent (see #1773 root-cause analysis).Fixes #1773
Changes
skills/brainstorming/SKILL.md: Add an explicit rule near "Prefer multiple choice questions" that brainstorming questions must be presented as plain conversational text —AskUserQuestionis not used here.skills/using-superpowers/references/claude-code-tools.md: Add a row to the tool mapping table clarifying that "ask the user a question" is not a mapped tool action on Claude Code; skills that say "ask one question at a time" or "prefer multiple choice" mean to type into the chat directly.The fix is scoped to Claude Code (in
claude-code-tools.md) so harnesses like Kimi that explicitly opt in toAskUserQuestionare unaffected.