Polyglot monorepo for personal, agent-assisted projects, MCPs, and workflows.
misc/
├─ projects/ # one-off apps, prototypes, life-specific tools
├─ workflows/ # reusable agent/human workflows and playbooks
├─ mcp/ # personal MCP servers and support code
├─ packages/ # shared code (only when justified by multiple consumers)
├─ templates/ # starter scaffolds for recurring shapes
├─ scripts/ # repo-level helper scripts
├─ docs/ # architecture notes, decisions, conventions
└─ data/ # non-sensitive sample/derived data only
- Each project is self-contained and may use any language or framework.
- Most new work starts in
projects/. - Agent-facing conventions live in
AGENTS.md; humans can read it too, butREADME.mdis the quick orientation. - Agents preserve task state in markdown notes so interrupted work can be resumed.
mainis the stable branch; work happens on initiative branches and merges after review.
- Look through
projects/for existing work. - To start something new, create a directory under
projects/with aREADME.md(seetemplates/project-readme.md). - For non-trivial work, add a
PLAN.md(seetemplates/task-note.md). - Work on a branch; merge to
mainwhen ready.
See AGENTS.md for the full operating model, and docs/conventions/ for elaboration on specific topics.