π Git Workflow Policy
Mandated: 2026-08-01 by Pat (Founder) Enforced by: cron job
bfb6442beb07
The Rule
ALL code, scripts, configuration, and reproducible work products MUST be in Git with a remote backup. If itβs not in Git, it doesnβt exist. If itβs not pushed, itβs at risk.
Repository Structure
/root/repos/
βββ brain/ β Obsidian vault (this!)
βββ investinme/ β InvestInMe platform
βββ huible/ β Huible persona engine
βββ lettuce/ β LettuceAI projects
β βββ app/ engine/ website/ sprout/ seedvault/ embeddings/
βββ paperclip-config/ β Agent configs, SOPs
βββ vps-infra/ β Server configs
βββ [new-project]/ β New projects
Workflow
cd /root/repos/<project>βgit pull origin maingit checkout -b issue-<NUMBER>-<description>- Work, commit frequently with conventional commits
git push origin <branch>- Merge to main, push
Critical Rules
- NEVER work outside a git repository
- NEVER mark a task done without pushing to remote
- ALWAYS use conventional commits
- ALWAYS commit experiments β even failed ones
- NEVER commit secrets (use .env, gitignored)
- NEVER force-push to main
GitHub
- Org:
LettuceAI - Currently NOT authenticated β needs PAT from Pat
ghCLI installed butgh auth loginnot completed
See Also
- Skill:
git-workflow-policyin Hermes - Infrastructure Reference