feat(quick): add --research flag for focused pre-planning research#958
Open
RyanAlberts wants to merge 1 commit intogsd-build:mainfrom
Open
feat(quick): add --research flag for focused pre-planning research#958RyanAlberts wants to merge 1 commit intogsd-build:mainfrom
RyanAlberts wants to merge 1 commit intogsd-build:mainfrom
Conversation
…sd-build#317) Add composable --research flag to /gsd:quick that spawns a focused gsd-phase-researcher before planning. Investigates implementation approaches, library options, and pitfalls for the task. Addresses the middle-ground gap between quick (no quality agents) and full milestone workflows. All three flags are composable: --discuss --research --full gives the complete quality pipeline. Made-with: Cursor
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
Add
--researchflag to/gsd:quickthat spawns a focusedgsd-phase-researcheragent before planning. The flag is composable with existing--discussand--fullflags.Changes
commands/gsd/quick.md— Updated argument-hint and objective to include--researchget-shit-done/workflows/quick.md— Added Step 4.75 (research phase), updated flag parsing, banner variants for all flag combinations, planner context to read RESEARCH.md, commit file list, and success criteriaget-shit-done/workflows/help.md— Updated Quick Mode section with--researchdocumentationREADME.md— Updated Utilities table and Quick Mode sectionCHANGELOG.md— Added entry under Unreleasedtests/quick-research.test.cjs— 21 new tests covering frontmatter, workflow structure, file management, and banner variantsWhy
Issue #317 (13 👍,
priority: high,area: workflow) identifies a gap between/gsd:quick(no quality agents) and/gsd:new-milestone(full ceremony). Currently:/gsd:quickskips research, discuss, plan-checker, verifier/gsd:quick --full --discussadds discuss + plan-checker + verifier but no research/gsd:new-milestonerequires full project ceremonyThe
--researchflag completes the composable flag set, giving users the full quality pipeline for single tasks without milestone overhead:--discuss --research --full.How it works
/gsd:quick --research "task description"--researchflag →$RESEARCH_MODEgsd-phase-researcher(not 4 parallel like full phases — quick tasks need targeted, not broad research)${QUICK_DIR}/${next_num}-RESEARCH.md<files_to_read>to inform implementation choicesTesting
tests/quick-research.test.cjs— all passChecklist
subagent_typespawning (no hardcoded$HOMEpaths in new code)path.join()Breaking Changes
None. The
--researchflag is additive — existing/gsd:quick,/gsd:quick --discuss, and/gsd:quick --fullbehavior is unchanged.Made with Cursor