modelscope.cn

gitea

Gitea operations via tea CLI. Use when user mentions: gitea, tea, or when git remote shows a Gitea instance.

Installation

$ npx skills add https://modelscope.cn

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

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

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,644 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Gitea CLI (tea)

When to Use This Skill

Use tea for Gitea repositories. To detect Gitea, check if the remote is not GitHub or GitLab:

git remote -v

If the remote doesn't contain github.com or gitlab, it may be a Gitea instance.

Before Any Operation

Always verify authentication first:

tea login list

If not authenticated, guide the user to run tea login add.

Behavioral Guidelines

  1. Creating PRs: Always check for uncommitted changes first with git status
  2. CI Operations: Check pipeline status before triggering new runs
  3. Use --output: For machine-readable output, use -o json or -o yaml

Command Reference

Pull Requests

Action Command
Create tea pr create --title "Title" --description "Desc"
List tea pr list
View tea pr view <id>
Checkout tea pr checkout <id>
Merge tea pr merge <id>

Issues

Action Command
Create tea issue create --title "Title" --body "Desc"
List tea issue list
List open tea issue list --state open
View tea issue view <id>
Close tea issue close <id>
Comment tea issue comment <id> "Comment"

Repository

Action Command
Clone tea repo clone <owner/repo>
Fork tea repo fork <owner/repo>

Output Formats

For JSON output (useful for scripting):

tea issue list -o json
tea pr list -o json