Marketplace gitea
Gitea operations via tea CLI. Use when user mentions: gitea, tea, or when git remote shows a Gitea instance.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/eteissonniere/gitea" ~/.claude/skills/aiskillstore-marketplace-gitea && rm -rf "$T"
manifest:
skills/eteissonniere/gitea/SKILL.mdsource content
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
- Creating PRs: Always check for uncommitted changes first with
git status - CI Operations: Check pipeline status before triggering new runs
- Use
: For machine-readable output, use--output
or-o json-o yaml
Command Reference
Pull Requests
| Action | Command |
|---|---|
| Create | |
| List | |
| View | |
| Checkout | |
| Merge | |
Issues
| Action | Command |
|---|---|
| Create | |
| List | |
| List open | |
| View | |
| Close | |
| Comment | |
Repository
| Action | Command |
|---|---|
| Clone | |
| Fork | |
Output Formats
For JSON output (useful for scripting):
tea issue list -o json tea pr list -o json