Stats
Actions
Tags
From tea
Edit Gitea/Forgejo issues — title, labels, milestone, assignees, deadline, and bulk edit operations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tea:edit-issuesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
tea issues edit 42 --title "New title"
tea issues edit 42 --add-labels "priority:high"
tea issues edit 42 --remove-labels "needs-triage"
tea issues edit 42 --milestone "v2.0" # change milestone (use "" to clear)
tea issues edit 42 --add-assignees "user1"
tea issues edit 42 --deadline "2025-06-01"
tea issues edit 1 2 3 --add-labels "sprint-5"
# Add label to all open issues in a milestone
tea issues list --milestones "v1.0" --output json | jq -r '.[].index' | xargs -I{} tea issues edit {} --add-labels "release:v1.0"
--add-labels / --remove-labels are additive/subtractive, not replacingnpx claudepluginhub deevus/tea-skills --plugin teaGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.