Claude-Code-Minoan
Curated Claude Code configuration: skills, MCP servers, slash commands, CLI tools, and VS Code extensions.
Structure
/skills - Custom skills organized by category (copy to ~/.claude/skills/)
/commands - Slash commands (copy to ~/.claude/commands/)
/bin - CLI tools: cc, ccls, ccpick, cckill, claude-tracker, claude-tracker-search, claude-tracker-resume
/lib - Shared libraries (tracker-utils.js)
/extensions - VS Code extensions (claude-session-tracker)
/hooks - Terminal title, session handoff, automation scripts
/sounds - Notification audio
.mcp.json - MCP server configurations
tmux.conf.example - Optimized tmux config for Claude Code
Setup
cp -r skills/* ~/.claude/skills/
cp -r commands/* ~/.claude/commands/
cp bin/* ~/.local/bin/
mkdir -p ~/.claude/lib && cp lib/* ~/.claude/lib/
Key Skills
- minoan-swarm - Agent Teams orchestration with Minoan-Semitic naming. 5 team templates, 30+ named teammates, auto-discovers project context. Requires
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
- osgrep-reference - Semantic code search. ALWAYS prefer
osgrep over grep/rg
- claude-agent-sdk - Build AI agents with Claude Agent SDK
- codex-orchestrator - Delegate to specialized Codex CLI subagents (reviewer, debugger, architect, security)
- super-ralph-wiggum - Autonomous iteration loops (HITL/AFK modes)
- llama-cpp / rlama / parakeet / smolvlm / speak-response - Local ML stack (inference, RAG, STT, vision, TTS)
- RLAMA default: Always use retrieve-only mode (
rlama_retrieve.py)—Claude synthesizes from raw chunks. Never route through Qwen when Claude is in the loop. rlama run is fallback only.
- image-forge - Precision image editing via ImageMagick 7, sips, rembg, Pillow. Three-tier routing: deterministic (magick), AI semantic (Gemini/nano-banana-pro), vision analysis (Claude). JSON pipeline specs, batch ops, smart crop, montage builder.
- Firecrawl / exa-search - Web scraping and search
- claude-md-manager - Create and optimize CLAUDE.md files
Key Commands
/workflows:review - Multi-agent code review (12+ parallel agents)
/workflows:work - Execute plans with quality checks
/workflows:plan - Feature planning with architecture analysis
/requirements-start - Extensive project planning workflow
/audit-plans - Audit plans for completeness
OSGrep Quick Reference
osgrep "query" # Semantic search (25 results)
osgrep trace "function" # Call graph
osgrep skeleton <file> # Compressed structure (~85% token reduction)
osgrep index --reset # Full re-index if stale
VS Code Extension
Claude Session Tracker — Track and resume sessions across VS Code windows and crashes.
cd extensions/claude-session-tracker
npm run compile && npx vsce package
code --install-extension claude-session-tracker-*.vsix
Cmd+Shift+C to quick-resume last session.
tmux + Claude
cp bin/cc bin/ccls bin/ccpick bin/cckill bin/claude-tmux-status ~/.local/bin/
| Command |
Description |
cc [name] |
Create/attach tmux session with Claude |
ccls |
List sessions with Claude status |
ccpick |
fzf picker with tmux + Claude history |
cckill |
Kill idle sessions (preserves running Claude) |
Prefix: Ctrl+A. See docs/tmux-claude-workflow.md for keybindings.
MCP Servers
Core: playwright, chrome-devtools, figma, shadcn, supabase, context7, arxiv, perplexity
Teammate Quick Start
Copy CLAUDE.template.md to ~/.claude/CLAUDE.md and customize:
- Add your
## Identity section (or remove it)
- Uncomment
## Always Loaded references you want active
- Add your own
## On-Demand References
Guides
CLAUDE.template.md - Teammate-ready global CLAUDE.md (no personal details)
docs/tmux-claude-workflow.md - tmux session management
CONTRIBUTING.md - Contribution guidelines
README.md - Full setup, all skills, all commands
1---2name: 030-claude-f54cc6823description: Claude-Code-Minoan4---5# Claude-Code-Minoan67Curated Claude Code configuration: skills, MCP servers, slash commands, CLI tools, and VS Code extensions.89## Structure1011- `/skills` - Custom skills organized by category (copy to `~/.claude/skills/`)12- `/commands` - Slash commands (copy to `~/.claude/commands/`)13- `/bin` - CLI tools: `cc`, `ccls`, `ccpick`, `cckill`, `claude-tracker`, `claude-tracker-search`, `claude-tracker-resume`14- `/lib` - Shared libraries (`tracker-utils.js`)15- `/extensions` - VS Code extensions (`claude-session-tracker`)16- `/hooks` - Terminal title, session handoff, automation scripts17- `/sounds` - Notification audio18- `.mcp.json` - MCP server configurations19- `tmux.conf.example` - Optimized tmux config for Claude Code2021## Setup2223```bash24cp -r skills/* ~/.claude/skills/25cp -r commands/* ~/.claude/commands/26cp bin/* ~/.local/bin/27mkdir -p ~/.claude/lib && cp lib/* ~/.claude/lib/28```2930## Key Skills3132- **minoan-swarm** - Agent Teams orchestration with Minoan-Semitic naming. 5 team templates, 30+ named teammates, auto-discovers project context. Requires `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1`33- **osgrep-reference** - Semantic code search. ALWAYS prefer `osgrep` over grep/rg34- **claude-agent-sdk** - Build AI agents with Claude Agent SDK35- **codex-orchestrator** - Delegate to specialized Codex CLI subagents (reviewer, debugger, architect, security)36- **super-ralph-wiggum** - Autonomous iteration loops (HITL/AFK modes)37- **llama-cpp** / **rlama** / **parakeet** / **smolvlm** / **speak-response** - Local ML stack (inference, RAG, STT, vision, TTS)38 - **RLAMA default**: Always use retrieve-only mode (`rlama_retrieve.py`)—Claude synthesizes from raw chunks. Never route through Qwen when Claude is in the loop. `rlama run` is fallback only.39- **image-forge** - Precision image editing via ImageMagick 7, sips, rembg, Pillow. Three-tier routing: deterministic (magick), AI semantic (Gemini/nano-banana-pro), vision analysis (Claude). JSON pipeline specs, batch ops, smart crop, montage builder.40- **Firecrawl** / **exa-search** - Web scraping and search41- **claude-md-manager** - Create and optimize CLAUDE.md files4243## Key Commands4445- `/workflows:review` - Multi-agent code review (12+ parallel agents)46- `/workflows:work` - Execute plans with quality checks47- `/workflows:plan` - Feature planning with architecture analysis48- `/requirements-start` - Extensive project planning workflow49- `/audit-plans` - Audit plans for completeness5051## OSGrep Quick Reference5253```bash54osgrep "query" # Semantic search (25 results)55osgrep trace "function" # Call graph56osgrep skeleton <file> # Compressed structure (~85% token reduction)57osgrep index --reset # Full re-index if stale58```5960## VS Code Extension6162**Claude Session Tracker** — Track and resume sessions across VS Code windows and crashes.6364```bash65cd extensions/claude-session-tracker66npm run compile && npx vsce package67code --install-extension claude-session-tracker-*.vsix68```6970`Cmd+Shift+C` to quick-resume last session.7172## tmux + Claude7374```bash75cp bin/cc bin/ccls bin/ccpick bin/cckill bin/claude-tmux-status ~/.local/bin/76```7778| Command | Description |79|---------|-------------|80| `cc [name]` | Create/attach tmux session with Claude |81| `ccls` | List sessions with Claude status |82| `ccpick` | fzf picker with tmux + Claude history |83| `cckill` | Kill idle sessions (preserves running Claude) |8485Prefix: `Ctrl+A`. See `docs/tmux-claude-workflow.md` for keybindings.8687## MCP Servers8889Core: playwright, chrome-devtools, figma, shadcn, supabase, context7, arxiv, perplexity9091## Teammate Quick Start9293Copy `CLAUDE.template.md` to `~/.claude/CLAUDE.md` and customize:94- Add your `## Identity` section (or remove it)95- Uncomment `## Always Loaded` references you want active96- Add your own `## On-Demand References`9798## Guides99100- `CLAUDE.template.md` - **Teammate-ready global CLAUDE.md** (no personal details)101- `docs/tmux-claude-workflow.md` - tmux session management102- `CONTRIBUTING.md` - Contribution guidelines103- `README.md` - Full setup, all skills, all commands