Personal Claude Code configuration with plugin-based architecture, custom hooks, and orchestrator-mode workflow.
- Plugin System: Modular plugins containing agents, skills, hooks, and commands
- Orchestrator Mode: CLAUDE.md configures Claude as a delegating orchestrator that spawns sub-agents for all implementation work — launched async (in the background, so you stay interactive while they work), with a Workflow engine for large, opted-in, programmatically-enforced fan-out
- Custom Hooks: PreToolUse, SessionEnd, and Notification hooks for workflow automation
- Marketplace Integration: Install plugins from configured marketplaces
- Submodule Support: Some plugins are managed as git submodules from external repos
Plugins live in plugins/ and can contain:
plugins/<plugin-name>/
├── .claude-plugin/ # Plugin metadata
├── agents/ # Specialized agent configurations
├── commands/ # Custom slash commands
├── hooks/ # PreToolUse/PostToolUse hooks
├── skills/ # Invokable skills
└── README.md # Plugin documentation
Current plugins:
- codex - Agents, hooks, and skills for code analysis
- generic-dev - General development agents and skills
- hugo - Hugo static site generator support (agents, commands, hooks, skills)
- humanizer - Text humanization skill (external submodule)
- javascript - JavaScript development agents and skills
- typescript - TypeScript hooks and skills
- duckdb - DuckDB integration
- tmux - Tmux session management
Add this alias to your shell configuration:
alias claude="claude --mcp-config ~/.claude/mcp.json"Some plugins are git submodules pointing to external repositories. See CLAUDE.md for update commands:
# Check for updates
git submodule update --remote --dry-run
# Apply updates
git submodule update --remoteCLAUDE.md- Global instructions (orchestrator mode, async-first delegation & question routing, workflow orchestration, sub-agent restrictions, git operations)settings.json- Permissions, hooks, model preferences, enabled marketplace pluginsplugins/- Plugin directory with agents, skills, hooks, and commandshooks/- Global hook scripts