# 030 Claude F54cc682

> Claude-Code-Minoan

- Skill: `tools-only/030-claude-f54cc682` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/030-claude-f54cc682`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/030-claude-f54cc682/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/030-claude-f54cc682

---

# 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

```bash
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

```bash
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.

```bash
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

```bash
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

