agentsclimarketplace

Labels

Skill deevus/tea-skills/skills/labels

List, create, update, and delete Gitea/Forgejo issue labels.From its SKILL.md

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.

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 labels list -o simple` and 7 more.

SKILL.md

1.3 KB, 330 tokens by cl100k_base, 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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. 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.