Install
openclaw skills install codebergInteract with Codeberg using the `tea` CLI. Use `tea issue`, `tea pr`, `tea actions`, and `tea api` for issues, PRs, Actions, and advanced queries.
openclaw skills install codebergUse the tea CLI to interact with Codeberg. Codeberg is a Forgejo instance, and the tea CLI is fully compatible with it.
List open pull requests:
tea pulls --repo owner/repo
Check details of a PR:
tea pr 55 --repo owner/repo
List open issues:
tea issues --repo owner/repo
View an issue:
tea issue 123 --repo owner/repo
List repository secrets:
tea actions secrets list --repo owner/repo
List repository variables:
tea actions variables list --repo owner/repo
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'
To use tea with Codeberg, you first need to add your login:
tea login add --name codeberg --url https://codeberg.org --token <your-token>
Then you can use --login codeberg in your commands:
tea pulls --repo owner/repo --login codeberg
List all configured logins:
tea logins