Implementation skill pack for Claude Code — Build software with AI agent teams
English | 한국어
A plugin of 25 skills for Claude Code. Skills auto-install project-level hooks and agents on demand — no manual setup required.
Option 1: Plugin Install (Recommended)
Launch Claude Code, then run:
/plugin marketplace add insightflo/claude-impl-tools
/plugin install claude-impl-tools@insightflo
Option 2: Quick Install (No plugin)
curl -fsSL https://raw.githubusercontent.com/insightflo/claude-impl-tools/main/scripts/quick-install.sh | bash
This clones the repo and symlinks skills. No hooks or agents installed — skills handle that on demand.
Component
Count
Installed when
Skills
25
Plugin install
Hooks
up to 17
On demand (skill runs install.sh --local)
Worker Agents
4
On demand (project-level)
Templates
11
On demand (project-level)
Skill
What it does
/workflow
Meta hub — analyzes your state and recommends the next skill
/agile
Layered sprints (Skeleton → Muscles → Skin) for 1-30 tasks
/recover
Resume work after interruptions
/checkpoint
Save/restore progress at any point
Skill
What it does
/governance-setup
Set up governance structure before starting
/tasks-init
Generate TASKS.md from scratch
/tasks-migrate
Migrate existing task files to new format
Skill
What it does
/quality-auditor
Pre-deployment comprehensive audit
/security-review
OWASP TOP 10, CVE, secrets detection
/multi-ai-review
Universal consensus engine (v4.1) — Claude + Gemini CLI + Codex CLI
Skill
What it does
/team-orchestrate
Native Agent Teams orchestration with tmux pane auto-creation
/cmux-orchestrate
cmux-based multi-AI team orchestration — physical 3-level hierarchy with Claude/Gemini/Codex
/cmux-ai-run
cmux pane-split parallel task execution — Codex/Gemini run simultaneously in split panes
/cmux-ai-review
cmux pane-split parallel review — Gemini + Codex review side-by-side, 3-stage pipeline
/multi-ai-run
Parallel AI execution with automatic CLI routing (Claude/Gemini/Codex)
/whitebox
Execution dashboard, health/state inspection
/cmux
cmux terminal multiplexer control (workspaces, panes, browser automation)
Skill
What it does
/maintenance
ITIL 5-stage production maintenance orchestrator
/impact
Analyze change impact before editing
/deps
Visualize dependencies + detect cycles
/changelog
Query change history by domain
/coverage
Visualize test coverage gaps
/architecture
Map project structure & domains
/compress
Long Context optimization (H2O pattern)
/statusline
Display TASKS.md progress in Claude Code status bar
Uses Claude Code native Agent Teams with CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 and tmux auto-pane creation.
Your Claude session (= team lead)
├── architecture-lead ← tmux pane
│ ├── backend-builder
│ └── reviewer
├── design-lead ← tmux pane
│ ├── frontend-builder
│ └── designer
└── qa-lead ← tmux pane
Run /team-orchestrate in any project with TASKS.md
Skill checks prerequisites — if hooks/agents missing, auto-installs locally
Team spawns in tmux panes (if teammateMode: "tmux")
Agents communicate via shared task list and mailbox
Run install.sh --local --mode=team from the project root, or let /team-orchestrate do it automatically:
bash project-team/install.sh --local --mode=team
This adds to your project's .claude/settings.json:
{
"env" : { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS" : " 1" },
"preferences" : { "teammateMode" : " tmux" }
}
Project-level hooks (installed on demand)
Category
Hooks
Permission
permission-checker, domain-boundary-enforcer
Safety
pre-edit-impact-check, risk-area-warning, security-scan
Quality
standards-validator, design-validator, interface-validator, quality-gate
Gates
policy-gate, contract-gate, risk-gate, docs-gate
Sync
architecture-updater, changelog-recorder, cross-domain-notifier, task-sync
Mode
Hooks
Use case
lite
4
MVP, startups
standard
7
Most projects
full
17
Regulated industries
team
8 + Agent Teams hooks
Team orchestration
Start
│
├─ "What should I do?" ────────────── /workflow
│
├─ Plan your project
│ ├─ Large project? ──────── /governance-setup
│ └─ Generate tasks ───────── /tasks-init
│
├─ Implement (choose by scale)
│ ├─ Small (≤30 tasks) ───── /agile auto
│ └─ Medium-Large (30+) ──── /team-orchestrate
│
├─ Maintain
│ ├─ Before editing ──────── /impact
│ ├─ Check dependencies ──── /deps
│ └─ Review changes ──────── /changelog
│
├─ Quality
│ ├─ Test coverage ───────── /coverage
│ ├─ Security scan ───────── /security-review
│ └─ Pre-deploy audit ────── /quality-auditor
│
└─ If interrupted ───────────── /recover
claude-impl-tools/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/ # 21 skills (auto-discovered)
│ ├── team-orchestrate/
│ ├── multi-ai-review/
│ ├── agile/
│ └── ...
├── project-team/ # On-demand project setup
│ ├── install.sh # Local installer (hooks, agents, templates)
│ ├── agents/ # Worker agents
│ ├── hooks/ # Validation & governance hooks
│ ├── templates/ # Protocols, ADR, contracts
│ └── scripts/ # Collaboration scripts
└── scripts/
└── quick-install.sh # Alternative install (clone + symlink)
Component
Requirement
All skills
Claude Code CLI
/multi-ai-review
gemini CLI, codex CLI (optional)
Project Team hooks
Node.js 18+
Agent Teams + tmux
tmux, CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
MIT License - Copyright (c) 2026 Insightflo Team
English | 한국어