Global Claude Code configuration — workflow orchestration, permissions, agents, and task templates.
git clone git@github.com:YOUR_USER/claude-code-setup.git
cd claude-code-setup
bash setup.shGlobally (~/.claude/) — applies to every Claude Code session:
CLAUDE.md— Workflow rules: plan mode, context management, subagent strategy, self-improvement loop, verification, elegance, autonomous bug fixing, task management, Linear integration, git conventions, code review standardssettings.json— Permission allowlists/denylists and hooks (auto-format, notifications)agents/— Explorer (read-only investigation), Implementer (scoped execution), Reviewer (code review)
Per-repo (copy manually):
tasks/todo.md— Task tracking templatetasks/lessons.md— Self-improvement loop logtasks/context-state.md— State dump for context compaction
Copy the task templates into any project:
cp -r tasks your-repo/tasksEdit files in this repo, push, then re-run on each machine:
git pull
bash setup.shAdd a plan-mode alias to your shell:
echo "alias cc='claude --permission-mode plan'" >> ~/.zshrc