feat: wire up consult mode CLI + fix global squad resolution (#196)#198
Merged
bradygaster merged 3 commits intobradygaster:mainfrom Mar 5, 2026
Merged
feat: wire up consult mode CLI + fix global squad resolution (#196)#198bradygaster merged 3 commits intobradygaster:mainfrom
bradygaster merged 3 commits intobradygaster:mainfrom
Conversation
- Register consult and extract commands in cli-entry.ts with help text - Add docs/features/consult-mode.md with full command reference - Update docs/guide/personal-squad.md to reference consult mode - Add happy-path E2E tests (init global → consult → status → extract) - Add acceptance test features for consult and extract commands Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…ster#196) runShell() hardcoded teamRoot to process.cwd(), ignoring the global (personal) squad path. Now uses a fallback chain: 1. Walk up from cwd for local .squad/ 2. Check global squad path (resolveGlobalSquadPath) 3. Fall back to cwd (triggers init mode) Closes bradygaster#196 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Feature files referenced old output strings ("Getting Started",
"Here:", "Scaffold ready") that no longer exist in the CLI help,
status, and init output. Updated to match actual output.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
tmcclell
pushed a commit
to tmcclell/squad
that referenced
this pull request
Mar 5, 2026
Adds npm workspaces config and package scaffolds for @bradygaster/squad-sdk and @bradygaster/squad-cli. Closes bradygaster#197 Closes bradygaster#198 Closes bradygaster#200 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
bradygaster
added a commit
that referenced
this pull request
Mar 5, 2026
feat: wire up consult mode CLI + fix global squad resolution (#196)
bradygaster
added a commit
that referenced
this pull request
Mar 5, 2026
Session: 2026-03-05T21:05Z-release-planning Requested by: Copilot (Scribe role) Changes: - Logged orchestration entries for Keaton, McManus, Kobayashi, Fenster, Coordinator - Created session log documenting v0.8.21 release planning outcomes - Merged 3 decision inbox files into decisions.md - Deleted inbox files (contributor page, PR merges, user directives) Decision Merged: - Every release MUST include contributor page update - Workstreams MUST be included in v0.8.21 Outcomes documented: - 4 PRs merged to dev (#204, #203, #198, #189) - 2 issues fixed (#210, #195) - Build passing, 98.8% test coverage - Release scope: 18 unreleased commits
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
Wire up the consult and extract CLI commands, add documentation, fix global squad resolution, and clean up stale acceptance tests.
Changes
Consult mode CLI wiring
squad consultandsquad extractcommands incli-entry.tsDocumentation
docs/features/consult-mode.md— full command reference, quick start, learning classification, license handlingdocs/guide/personal-squad.md— section 6 now recommendssquad consultfor OSS work, remove resolved limitation from section 9, add cross-referencesFix: global squad resolution (Closes #196)
runShell()hardcodedteamRoot = process.cwd(), so the shell never found the global (personal) squad.squad/→resolveGlobalSquadPath()→cwd(init mode)/initloop reported in squad init --global mode does not work as expected #196 is resolved — the shell finds the global squad from any directoryTests
Getting Started,Here:,Scaffold ready)Test plan