fix(skill): align compound-refresh question tool guidance

This commit is contained in:
Trevin Chow
2026-03-15 15:01:52 -07:00
parent b7e43910fb
commit c2582fab67

View File

@@ -33,7 +33,7 @@ Check if `$ARGUMENTS` contains `mode:autonomous`. If present, strip it from argu
Follow the same interaction style as `ce:brainstorm`: Follow the same interaction style as `ce:brainstorm`:
- Ask questions **one at a time** — use the platform's interactive question tool (e.g. `AskUserQuestion` in Claude Code, `request_user_input` in Codex) and **stop to wait for the answer** before continuing - Ask questions **one at a time** — use the platform's blocking question tool when available (`AskUserQuestion` in Claude Code, `request_user_input` in Codex, `ask_user` in Gemini). Otherwise, present numbered options in plain text and wait for the user's reply before continuing
- Prefer **multiple choice** when natural options exist - Prefer **multiple choice** when natural options exist
- Start with **scope and intent**, then narrow only when needed - Start with **scope and intent**, then narrow only when needed
- Do **not** ask the user to make decisions before you have evidence - Do **not** ask the user to make decisions before you have evidence
@@ -309,7 +309,7 @@ Do **not** ask questions about whether code changes were intentional, whether th
#### Question Style #### Question Style
Always present choices using the platform's interactive question tool (e.g. `AskUserQuestion` in Claude Code, `request_user_input` in Codex). If the environment has no interactive prompt tool, present numbered options in plain text and wait for the user's response before proceeding. Always present choices using the platform's blocking question tool when available (`AskUserQuestion` in Claude Code, `request_user_input` in Codex, `ask_user` in Gemini). Otherwise, present numbered options in plain text and wait for the user's reply before proceeding.
Question rules: Question rules: