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>
1.4 KiB
1.4 KiB
description: Create a new Gitea issue. Can create single issues or batch create from a plan.
model: haiku
argument-hint: [title] or "batch"
Create Issue(s)
@~/.claude/skills/gitea/SKILL.md
Milestone Assignment
Before creating issues, fetch available milestones:
tea milestones -f title,description
For each issue, automatically assign to the most relevant milestone by matching:
- Issue content/problem area → Milestone title and description
- If no clear match, ask the user which milestone (goal) the issue supports
- If no milestones exist, skip milestone assignment
Include --milestone "<milestone>" in the create command when a milestone is assigned.
Single Issue (default)
If title provided:
- Create an issue with that title
- Ask for description
- Assign to appropriate milestone (see above)
- Ask if this issue depends on any existing issues
- If dependencies exist, link them:
tea issues deps add <new-issue> <blocker>
Batch Mode
If $1 is "batch":
- Ask user for the plan/direction
- Fetch available milestones
- Generate list of issues with titles, descriptions, milestone assignments, and dependencies
- Show for approval
- Create each issue with milestone (in dependency order)
- Link dependencies between created issues:
tea issues deps add <issue> <blocker> - Display all created issue numbers with dependency graph