Edit issues
Edit Gitea/Forgejo issues — title, labels, milestone, assignees, deadline, and bulk edit operations.From its SKILL.md
npx -y skills add deevus/tea-skills --skill edit-issuesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 8 commands, including `tea issues edit 42 --title "New title"` and 7 more.
SKILL.md
0.9 KB, 236 tokens by cl100k_base, as published. Nobody here has run it
Edit Issues
Single Issue
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"
Multiple Issues
tea issues edit 1 2 3 --add-labels "sprint-5"
Bulk Add Label
# 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"
Tips
--add-labels/--remove-labelsare additive/subtractive, not replacing- Pass multiple issue numbers to edit them in one command
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.