- 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
48 lines
1.3 KiB
Markdown
48 lines
1.3 KiB
Markdown
---
|
|
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.*
|