2 Commits

Author SHA1 Message Date
elordenador 709129801c fix: correct tea actions subcommands in AGENTS.md
Build / build_arch (push) Successful in 30s
Build / publish-release (push) Successful in 13s
2026-05-13 16:40:58 +02:00
elordenador 555eb2a74b docs: adapt AGENTS.md to use tea for Gitea operations (PRs, issues, actions, releases)
Build / build_arch (push) Successful in 33s
Build / publish-release (push) Successful in 13s
2026-05-13 16:40:13 +02:00
+43
View File
@@ -27,6 +27,48 @@ rcli api_uri <url> # Set API URI
- Builds Arch Linux package (.pkg.tar.zst) - Builds Arch Linux package (.pkg.tar.zst)
- Publishes releases to Gitea - Publishes releases to Gitea
## Gitea / tea
Login to the Gitea instance:
```bash
tea login add --name elordenador --url https://git.elordenador.org
```
### Issues
```bash
tea issues # List issues
tea issues create # Create new issue
tea issues close # Close an issue
```
### Pull Requests
```bash
tea pr # List pull requests
tea pr create # Create PR
tea pr checkout # Checkout PR locally
tea pr merge # Merge a PR
```
### Actions (Workflows)
```bash
tea actions info # Show workflow info
tea actions runs list # List workflow runs
tea actions workflows list # List workflows
tea actions logs <run-id> # View logs for a run
tea actions runs re-run <run-id> # Re-run a workflow
```
### Releases
```bash
tea release # List releases
tea release create # Create a release
```
### API
```bash
tea api GET /api/v1/repos/RedSocial/cli/releases
```
## Available Skills ## Available Skills
- python-patterns - python-patterns
- python-testing-patterns - python-testing-patterns
@@ -35,3 +77,4 @@ rcli api_uri <url> # Set API URI
## Notes ## Notes
- No test suite currently exists in the repo - No test suite currently exists in the repo
- Config class supports dot-notation paths (e.g., `config.get("token")`) - Config class supports dot-notation paths (e.g., `config.get("token")`)
- Use `tea` (Gitea CLI) instead of `gh` for Gitea operations