Documentation site for AI-assisted development workflows at workforest.space.
A pattern catalog for working effectively with Claude Code and similar AI coding assistants:
- Git worktree workflows for parallel development
- Project-level instructions (CLAUDE.md)
- Skills and commands for common tasks
- Context management strategies
When developing libraries alongside consuming sites:
- Use git submodules to track library versions
- Use
npm linkfor local development - Commit submodule refs to lock versions
- See npm-link pattern for details
Commit your ~/.claude/projects/ folder to version control:
~/.claude/projects/
├── -Users-you-Projects-myapp/
│ ├── CLAUDE.md # Project instructions
│ └── skills/ # Custom skills/commands
└── ...
This preserves context across sessions and machines.
npm install
npm run dev # localhost:4321
npm run build # production build- bearing.dev - Git worktree management tooling
- fightingwithai.com - AI engineering patterns