feat(board): add mgw:board command for project board management#87
Merged
snipcodeit merged 1 commit intomainfrom Mar 1, 2026
Merged
Conversation
Implement new /mgw:board command with three subcommands: - create: idempotent board creation with 5 custom fields via GraphQL - show: display board state with items grouped by Status field - configure: compare field options against canonical schema Custom fields follow board schema from #71 (docs/BOARD-SCHEMA.md): - Status (SINGLE_SELECT, 13 options mapping 1:1 to pipeline_stage) - AI Agent State (TEXT, updated during GSD execution) - Milestone (TEXT, from project.json milestone name) - Phase (TEXT, phase number + name format) - GSD Route (SINGLE_SELECT, 4 options for all known routes) Board metadata (node_id, field IDs, option IDs) stored in project.json under project.project_board.fields for downstream commands to read without re-querying GitHub. Closes #72 Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
This was referenced Mar 1, 2026
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
/mgw:boardcommand withcreate,show, andconfiguresubcommandsCloses #72
Milestone Context
Changes
.claude/commands/mgw/board.md— full board command implementationmgw:board create(idempotent)createProjectV2mutationproject.project_board.fieldsmgw:board showmgw:board configureTest Plan
/mgw:board createcreates board and stores in project.json (run once, verify project.json updated)/mgw:board create(run again) exits cleanly with existing board URL — idempotency confirmed/mgw:board showdisplays board URL, field list, and items grouped by Status/mgw:board showon empty board shows "No items" with helpful next-step/mgw:board configurefetches field state and reports schema comparisonproject.project_board.fields