agentsclimarketplace

Labels

Skill deevus/tea-skills/skills/labels

Agent skills for Gitea/Forgejo issue, pull request, milestone, and label workflows using the tea CLI

Install
npx -y skills add deevus/tea-skills --skill labels

Assembled 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

List, create, update, and delete Gitea/Forgejo issue labels.

SKILL.md

1.3 KB, as published. Nobody here has run it

Labels

List

tea labels list -o simple          # all labels, compact output (recommended)
tea labels list --output json      # use json only when parsing with jq
tea labels list --save             # export to file (tea internal format)

Create

tea labels create --name "bug" --color "#d73a4a"
tea labels create --name "enhancement" --color "#a2eeef" --description "New feature or request"
tea labels create --file labels.csv   # bulk import from file

Update

# Get label ID (requires json for parsing)
tea labels list --output json | jq '.[] | {id, name, color}'

tea labels update --id 5 --name "bugfix" --color "#d73a4a"
tea labels update --id 5 --description "Updated description"

Delete

tea labels delete 5

Apply to Issues

tea issues create --title "Fix login" --labels "type:bug,priority:high"
tea issues edit 42 --add-labels "status:in-progress"
tea issues edit 42 --remove-labels "status:needs-triage"

Tips

  • Labels identified by name in tea issues, by ID in tea labels update/delete
  • Colors need # prefix (e.g., #d73a4a)
  • Names are case-sensitive
  • Deleting a label removes it from all issues/PRs

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.