fix: convert inline questions to AskUserQuestion (#803)#807
Open
ethan-hurst wants to merge 6 commits intogsd-build:mainfrom
Open
fix: convert inline questions to AskUserQuestion (#803)#807ethan-hurst wants to merge 6 commits intogsd-build:mainfrom
ethan-hurst wants to merge 6 commits intogsd-build:mainfrom
Conversation
added 6 commits
February 28, 2026 20:28
Command shipped in a92512a but was missing from all documentation. Added to help.md (full reference + common workflows), README.md command table, and USER-GUIDE.md command reference.
Add centralized path resolution layer (paths.cjs) that enables milestone-scoped directories for parallel milestone work. All 11 lib files refactored to use resolvePlanningPaths() instead of hardcoded .planning/ paths. Key changes: - New paths.cjs: resolvePlanningPaths(cwd, milestoneOverride) resolves abs/rel paths based on ACTIVE_MILESTONE file or --milestone CLI flag - --milestone <name> CLI flag parsed in gsd-tools.cjs - New commands: milestone create/switch/list/status - All init commands output milestone, is_multi_milestone, planning_base - Legacy mode (no ACTIVE_MILESTONE) returns identical paths to before - Auto-migration: first milestone create copies existing global state - 25 new tests for paths and milestone commands (457 total, 0 failures)
Replace hardcoded .planning/ paths in bash commands and commit
file lists with init JSON variables ({state_path}, {roadmap_path},
{planning_base}/...). Workflows without init calls gain appropriate
init calls. Global paths (PROJECT.md, codebase/) left unchanged.
…tusline, and docs (gsd-build#291) Phase 5: polish for concurrent milestone execution. - Milestone-scoped commit prefixes in execute-plan.md (v2.0/08-02) - cmdMilestoneSwitch warns about in-progress work before switching - /gsd:switch-milestone workflow and command - Statusline shows active milestone in cyan [v2.0] - new-milestone.md calls milestone create for multi-milestone mode - Help and README updated with switch-milestone and concurrent docs
…itch-warning tests (gsd-build#291) - USER-GUIDE: add /gsd:switch-milestone, concurrent milestones section, multi-milestone directory layout - CHANGELOG: add [Unreleased] entry for concurrent milestone execution - planner-subagent-prompt.md: replace hardcoded .planning/ paths with milestone-aware template variables - 4 new tests: switch in-progress warning, idle switch, same-milestone switch, and auto-migration on first milestone create (461 total)
…ering (gsd-build#803) Claude Code 2.1.63+ auto-parses and auto-answers inline question patterns like "(yes / no)" in workflow text. Convert all 9 instances across 7 workflow files to use structured AskUserQuestion tool calls.
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.
What
Convert all inline natural-language question patterns to structured
AskUserQuestiontool calls across 7 workflow files.Why
Claude Code 2.1.63+ auto-parses and auto-answers inline question patterns like
(yes / no)andProceed? (y/n)in workflow text, breaking all interactive workflows. Fixes #803.Changes
9 inline questions converted across 7 files:
discovery-phase.mdProceed to planning?(inline)discovery-phase.md(yes / address first)execute-plan.md(yes / different approach / defer)complete-milestone.md(yes / wait / adjust scope)complete-milestone.md(y/n)push tagnew-project.md(yes / adjust)new-milestone.md(yes / adjust)plan-milestone-gaps.md(yes / adjust / defer)remove-phase.md(y/n)Testing
Checklist
Breaking Changes
None