Turn Claude Code into a multi-agent “virtual dev team” with AgentTasks, memory-first flows, and guardrails.
git clone https://github.com/intelligentcode-ai/intelligent-claude-code.git
cd intelligent-claude-code
make install # or .\install.ps1 install on Windows
/icc-init-system # one-time initThen work conversationally:
@PM plan feature XYZ # breaks into AgentTasks
@Developer implement auth # executes via AgentTask
/icc-search-memory auth # reuse prior learnings- Specialist roles (PM, Dev, DevOps, QA, Security, DB, AI, etc.) plus dynamic specialists
- AgentTask automation with templates, memory injection, and constraints
- Guardrails: main-scope enforcement, scope/summary/file checks, infra safety
- MCP-ready: memory/docs/issue providers when enabled
- Main scope: coordinate, delegate, read; agents do the heavy work (configurable)
- Memory-first:
memory/is searched/stored automatically - Infra protection: IAC-only posture by default; see
icc.config.json
-
Primary knobs live in
icc.config.json(or project.icc/config.json) -
Quick presets available in
.icc/:config.relaxed.json– legacy behavior with lighter guardrailsconfig.sub-agent.json– agents do all writes/exec; main scope delegates onlyconfig.main-scope.json– coordination-only main scope (agents execute work)config.strict-main-scope.json– read-only/Task-only main scope (ultra-safe mode)config.main-scope-dev.json– Linux/macOS friendly preset where Main Scope may run curatedgit/ghcommands locally while all guardrails (file naming, folders, git privacy, @codex review, best practices, memory output) remain enabledconfig.workflow-reviewed.json– Enables workflow enforcement (Task → Plan → Review → Execute → Review → Document) for Main Scope + agents
See
sample-configs/README.mdfor usage instructions and runmake install CONFIG_FILE=sample-configs/<name>.jsonto apply one system-wide. -
Toggle
enforcement.main_scope_has_agent_privileges: trueif you want the Main Scope treated exactly like an agent (strict main-scope enforcement, PM-only limits, doc routing, etc. all short-circuit). Default isfalse;icc.config.main-scope-dev.jsonturns it on for systems impacted by the V8 issue. -
Enable
enforcement.workflowto require the Task → Plan → Review → Execute → Review → Document sequence (seeicc.config.workflow-reviewed.jsonfor the default step mapping).
- Start: docs/index.md
- Essentials: installation-guide, user-guide, agenttask-system-guide, virtual-team-guide
MIT (see LICENSE)