deevus/tea-skills

milestones

List, show, create, close, reopen, delete, and edit Gitea/Forgejo milestones.

First seen May 21, 2026

Installation

$ npx skills add deevus/tea-skills --skill milestones

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from deevus/tea-skills · top by installs.

npx skills add deevus/tea-skills

Browse all from deevus/tea-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 8
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,631 B
  • docs SUMMARY.md 95 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 82 installs

SKILL.md

Milestones

List

tea milestones list -o simple              # open milestones, compact output (recommended)
tea milestones list --state all -o simple   # include closed
tea milestones list --output json           # use json only when parsing is necessary
tea milestones list --fields "title,state,items_open,items_closed,duedate,description"

Show

tea milestones "v1.0"

Create

tea milestones create                                          # interactive
tea milestones create --title "v1.0" --description "First stable release"
tea milestones create --title "v1.0" --deadline "2025-06-01"   # with due date

Close / Reopen / Delete

tea milestones close "v1.0"          # or multiple: close "v0.8" "v0.9"
tea milestones reopen "v1.0"
tea milestones delete "v1.0"

Edit

The tea CLI doesn't have a milestone edit command. For the bundled action, see actions/milestones/README.md.

When resolving actions/... paths, use the actions/ directory bundled relative to this skill directory.

Pass explicit scope flags (--login, --remote, or --repo) to bundled actions when the user names a login, remote, backend, or repository. Otherwise, bundled actions use active-host-first discovery.

Tips

  • Milestones are identified by name in CLI, by ID in the API-backed milestone edit action
  • Deadlines accept date strings like 2025-06-01
  • Deleting a milestone doesn't close its issues — they just become unassigned