gitea

Verified·Scanned 2/18/2026

This skill provides tea CLI examples to interact with Gitea (issues, pull requests, Actions, and tea api). It instructs running shell commands like tea pulls --repo owner/repo, configuring a token via tea login add --url https://gitea.example.com --token <your-token>, and accessing https://gitea.example.com.

from clawhub.ai·v16b68fa·1.9 KB·0 installs
Scanned from 0.1.0 at 16b68fa · Transparency log ↗
$ vett add clawhub.ai/razzeee/gitea

Gitea Skill

Use the tea CLI to interact with Gitea instances. The tea CLI is the official command-line tool for Gitea.

Pull Requests

List open pull requests:

tea pulls --repo owner/repo

Check details of a PR:

tea pr 55 --repo owner/repo

Issues

List open issues:

tea issues --repo owner/repo

View an issue:

tea issue 123 --repo owner/repo

Actions (CI/CD)

List repository secrets:

tea actions secrets list --repo owner/repo

List repository variables:

tea actions variables list --repo owner/repo

API for Advanced Queries

The tea api command is useful for accessing data not available through other subcommands.

Get PR with specific fields (requires jq for filtering):

tea api repos/owner/repo/pulls/55 | jq '.title, .state, .user.login'

Logins

To use tea with a specific Gitea instance, you first need to add a login:

tea login add --name my-gitea --url https://gitea.example.com --token <your-token>

Then you can use --login my-gitea in your commands:

tea pulls --repo owner/repo --login my-gitea

List all configured logins:

tea logins