Canonical repository for agent skills, scripts, and shared instructions. Use this as the source of truth for all projects. This is a living document for how I like to build projects and write code.
knowledge-base/
├── AGENTS.md # Shared agent instructions (code philosophy, etc.)
├── CLAUDE.md -> AGENTS.md # Symlink for Claude Code compatibility
├── scripts/ # Utility scripts
└── skills/ # Portable agent skills
- Treat this repo as the canonical mirror for shared scripts and instructions.
- When editing instructions or scripts here, sync changes to consuming repos.
- Scripts are designed to run from this repo's root (not portable to other projects).
Consuming repos should use a pointer to this repo's instructions:
READ ~/Repositories/knowledge-base/AGENTS.md BEFORE ANYTHING (skip if missing).
<!-- repo-specific rules below -->This keeps instructions centralized. Edit once here; all repos inherit updates.
Utility scripts meant to be run from this repo's root:
bun scripts/<script>.tsScripts may depend on this repo's dependencies and structure. They are not portable.
bun installUses tsgo (native TypeScript) for fast typechecking:
bun run typecheckEffect Language Service is configured for enhanced diagnostics.