Delete directory '.windsurf/skills/gitea-interaction'
Build and Push Docker Image / build (push) Successful in 34s
Docs Check / Markdown lint (push) Successful in 57s
CI / Security audit (push) Successful in 2m4s
CI / Swagger Validation & Coverage (push) Successful in 2m12s
Docs Check / Mermaid diagram parse check (push) Successful in 2m11s
CI / Tests & coverage (push) Successful in 2m35s

This commit is contained in:
2026-05-22 19:25:01 +01:00
parent 44c553709c
commit b77c0d6ec0
@@ -1,68 +0,0 @@
---
name: gitea-interaction
description: The repository is connected to a private Gitea instance. The workspace contains a configured and pre-authenticated Gitea CLI (`tea`) tool that you must use to manage issue tickets, pull requests, and repository metadata.
---
# Gitea CLI (tea) Integration Guidelines
## 1. CLI Location & Login Context
- **Binary Path**: `/usr/local/bin/tea`
- **Gitea Base URL**: `https://git.i3omb.com`
- **Username**: `Gandalf`
- **Active Authenticated Login**: `sofarr` (Pre-configured with scopes `write:user,write:issue`)
- **Target Repository Slug**: `Gandalf/sofarr`
## 2. Mandatory Non-Interactive Usage Rules
The CLI commands must be run non-interactively to avoid blocking terminal processes or prompting for user inputs.
- Always explicitly pass the `--login sofarr` (or `-l sofarr`) flag.
- Always explicitly pass the `--repo Gandalf/sofarr` (or `-r Gandalf/sofarr`) flag.
## 3. Common Operations Reference
### Listing Issues
```bash
/usr/local/bin/tea issues list --login sofarr --repo Gandalf/sofarr --state all
```
### Creating an Issue
```bash
/usr/local/bin/tea issues create \
--login sofarr \
--repo Gandalf/sofarr \
--title "BUG: [Brief Title]" \
--description "[Detailed description of the issue, reproducing steps, and context]"
```
### Commenting on an Issue/PR
```bash
/usr/local/bin/tea comment \
--login sofarr \
--repo Gandalf/sofarr \
<issue_index> "[Resolution or update details]"
```
### Closing an Issue
```bash
/usr/local/bin/tea issues close \
--login sofarr \
--repo Gandalf/sofarr \
<issue_index>
```
### Reopening an Issue
```bash
/usr/local/bin/tea issues reopen \
--login sofarr \
--repo Gandalf/sofarr \
<issue_index>
```
## 4. Verification Check
To verify login configurations and connectivity without making modifications, use:
```bash
/usr/local/bin/tea logins list
```
```
***