Files
architecture/commands/groom.md
Hugo Nijhuis bbd7870483 Configure model settings for commands, agents, and skills
Set explicit model preferences to optimize for speed vs capability:

- haiku: 11 commands, 2 agents (issue-worker, pr-fixer), 10 skills
  Fast execution for straightforward tasks

- sonnet: 4 commands (groom, improve, plan-issues, review-pr),
  1 agent (code-reviewer)
  Better judgment for analysis and review tasks

- opus: 2 commands (arch-refine-issue, arch-review-repo),
  1 agent (software-architect)
  Deep reasoning for architectural analysis

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 00:06:53 +01:00

1.3 KiB

description, model, argument-hint
description model argument-hint
Groom and improve issues. Without argument, reviews all open issues. With argument, grooms specific issue. sonnet
issue-number

Groom Issues

@/.claude/skills/gitea/SKILL.md @/.claude/skills/backlog-grooming/SKILL.md @~/.claude/skills/issue-writing/SKILL.md

If issue number provided ($1):

  1. Fetch the issue details with tea issues <number> --comments
  2. Check dependencies with tea issues deps list <number>
  3. Evaluate against grooming checklist
  4. Suggest improvements for:
    • Title clarity
    • Description completeness
    • Acceptance criteria quality
    • Scope definition
    • Missing or incorrect dependencies
  5. Ask user if they want to apply changes
  6. Update issue if approved
  7. Link/unlink dependencies if needed: tea issues deps add/remove <issue> <dep>

If no argument (groom all):

  1. List open issues
  2. Review each against grooming checklist (including dependencies)
  3. Categorize:
    • Ready: Well-defined, dependencies linked, can start work
    • Blocked: Has unresolved dependencies
    • Needs work: Missing info, unclear, or missing dependency links
    • Stale: No longer relevant
  4. Present summary table with dependency status
  5. Offer to improve issues that need work (including linking dependencies)