Edit issues
Agent skills for Gitea/Forgejo issue, pull request, milestone, and label workflows using the tea CLI
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.
One thing 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.
What its author says it does
Copied from the file, not written here
Edit Gitea/Forgejo issues — title, labels, milestone, assignees, deadline, and bulk edit operations.
SKILL.md
0.9 KB, 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