Files
get-shit-done/commands/gsd/inbox.md
Tom Boucher 262b395879 fix: embed model_overrides in Codex TOML and OpenCode agent files (#2279)
* docs: sync ARCHITECTURE.md command count to 74

commands/gsd/ has 74 .md files; the two count references in
ARCHITECTURE.md still said 73. Fixes the command-count-sync
regression test.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* fix: embed model_overrides in Codex TOML and OpenCode agent files (#2256)

Codex and OpenCode use static agent files (TOML / markdown frontmatter)
rather than inline Task(model=...) parameters, so model_overrides set in
~/.gsd/defaults.json was silently ignored — all subagents fell through to
the runtime's default model.

Fix: at install time, read model_overrides from ~/.gsd/defaults.json and
embed the matching model ID into each agent file:
  - Codex: model = "..." field in the agent TOML (generateCodexAgentToml)
  - OpenCode: model: ... field in agent frontmatter (convertClaudeToOpencodeFrontmatter)

Also adds readGsdGlobalModelOverrides() helper and passes the result
through installCodexConfig() and the OpenCode agent install loop.

Closes #2256

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* feat(commands): add gsd:inbox command for GitHub issue/PR triage

inbox.md was created but not committed, causing the command count
to read 73 in git while ARCHITECTURE.md correctly stated 74.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-15 14:59:56 -04:00

1.4 KiB

name, description, argument-hint, allowed-tools
name description argument-hint allowed-tools
gsd:inbox Triage and review all open GitHub issues and PRs against project templates and contribution guidelines [--issues] [--prs] [--label] [--close-incomplete] [--repo owner/repo]
Read
Bash
Write
Grep
Glob
AskUserQuestion
One-command triage of the project's GitHub inbox. Fetches all open issues and PRs, reviews each against the corresponding template requirements (feature, enhancement, bug, chore, fix PR, enhancement PR, feature PR), reports completeness and compliance, and optionally applies labels or closes non-compliant submissions.

Flow: Detect repo → Fetch open issues + PRs → Classify each by type → Review against template → Report findings → Optionally act (label, comment, close)

<execution_context> @~/.claude/get-shit-done/workflows/inbox.md </execution_context>

**Flags:** - `--issues` — Review only issues (skip PRs) - `--prs` — Review only PRs (skip issues) - `--label` — Auto-apply recommended labels after review - `--close-incomplete` — Close issues/PRs that fail template compliance (with comment explaining why) - `--repo owner/repo` — Override auto-detected repository (defaults to current git remote) Execute the inbox workflow from @~/.claude/get-shit-done/workflows/inbox.md end-to-end. Parse flags from arguments and pass to workflow.