From b77c0d6ec076a8fe12a5178616df1a96dae7efef Mon Sep 17 00:00:00 2001 From: Gandalf Date: Fri, 22 May 2026 19:25:01 +0100 Subject: [PATCH] Delete directory '.windsurf/skills/gitea-interaction' --- .windsurf/skills/gitea-interaction/SKILL.md | 68 --------------------- 1 file changed, 68 deletions(-) delete mode 100644 .windsurf/skills/gitea-interaction/SKILL.md diff --git a/.windsurf/skills/gitea-interaction/SKILL.md b/.windsurf/skills/gitea-interaction/SKILL.md deleted file mode 100644 index 7743d03..0000000 --- a/.windsurf/skills/gitea-interaction/SKILL.md +++ /dev/null @@ -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 \ - "[Resolution or update details]" -``` - -### Closing an Issue -```bash -/usr/local/bin/tea issues close \ - --login sofarr \ - --repo Gandalf/sofarr \ - -``` - -### Reopening an Issue -```bash -/usr/local/bin/tea issues reopen \ - --login sofarr \ - --repo Gandalf/sofarr \ - -``` - -## 4. Verification Check -To verify login configurations and connectivity without making modifications, use: -```bash -/usr/local/bin/tea logins list -``` -``` -*** \ No newline at end of file