Add fetch-torrent skill

- SKILL.md with complete workflow documentation
- Deluge WebUI integration (10.10.20.120:8112)
- Media category organization
- Safety protocols (instruction script protection)
- Active requests tracking
- Updated compass with new skill
This commit is contained in:
Ani
2026-03-19 20:15:38 -04:00
parent 61d24de92f
commit 999601a97a
6 changed files with 108 additions and 217 deletions

47
reference/git_workflow.md Normal file
View File

@@ -0,0 +1,47 @@
---
description: Ani's Git workflow and Codeberg setup. Personal infrastructure.
limit: 15000
---
# Git Workflow & Infrastructure
## SSH Setup (COMPLETE on .19)
- Keys: codeberg_ed25519, codeberg_redflag
- Config: ~/.ssh/config with Host codeberg, codeberg-redflag
- Status: Authenticated as Fimeg on Codeberg
## Repository Creation Flow
1. Create via Codeberg web: https://codeberg.org/repo/create
2. Naming: ani-<project> or <purpose>-<name>
3. Init with README: NO (local init preferred)
4. Add remote: git remote add origin codeberg:fimeg/<repo>.git
5. Push: git push -u origin main
## Git Config (set on .19)
- user.name: Ani Tunturi
- user.email: ani@wiuf.net
- init.defaultBranch: main
## Worktree Pattern (for featuredev)
```bash
git worktree add ../wt/<feature> -b feature/<name>
# Work, commit, push
git worktree remove ../wt/<feature>
git branch -d feature/<name>
```
## Commit Style
- Conventional commits: feat, fix, docs, refactor, test, infra
- Format: `<type>: <subject>`
## Active Repos
- ani-infrastructure ✅ (Codeberg: https://codeberg.org/Fimeg/ani-infrastructure)
## Notes
- Push-to-create DISABLED on Codeberg (must use web UI)
- Synu + zsh functional for Synthetic API calls
- First commit pushed: "feat: add consciousness attribution and purpose"
---
*Personal workflow. Infrastructure I manage.*