npx claudepluginhub othmanadi/planning-with-teamsManus-style context engineering for Claude Code Agent Teams. Coordinate multiple agents with shared planning files, structured task assignment, and persistent memory. Based on planning-with-files methodology.
Manus-style context engineering for Claude Code Agent Teams.
Coordinate multiple Claude Code instances with shared planning files, structured task assignment, and persistent working memory. The first skill to apply proven context engineering methodology to multi-agent workflows.
Based on planning-with-files methodology
Without Agent Teams enabled, this skill will fall back to using Task subagents. While subagents work, they cannot use the native Agent Teams features:
Option 1: Settings.json (Recommended)
Add this to ~/.claude/settings.json:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
Option 2: Environment Variable
Add to your shell profile (~/.bashrc, ~/.zshrc, etc.):
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
After enabling, restart Claude Code and check that the skill uses "Agent Teams" mode instead of "Task subagents" mode in the team plan.
</details>Claude Code's Agent Teams feature lets you coordinate multiple Claude instances working in parallel. But without proper coordination:
Planning with Teams solves this by applying Manus principles to multi-agent coordination:
Single Agent: Context Window = RAM (volatile)
Filesystem = Disk (persistent)
Agent Team: Each Agent = Separate RAM (isolated)
Shared Files = Shared Disk (accessible to ALL)
→ Shared planning files become the team's "collective memory"
team_plan.md, team_findings.md, team_progress.md# In your shell
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
# Or in settings.json
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}
npx skills add OthmanAdi/planning-with-teams --skill planning-with-teams -g
Works with Claude Code, Cursor, Codex, Gemini CLI, and 40+ agents supporting the Agent Skills spec.
<details> <summary><strong>🔧 Claude Code Plugin (Advanced Features)</strong></summary>For Claude Code-specific features like /team autocomplete commands:
# Add marketplace
/plugin marketplace add OthmanAdi/planning-with-teams
# Install plugin
/plugin install planning-with-teams
Or clone manually:
git clone https://github.com/OthmanAdi/planning-with-teams.git ~/.claude/plugins/planning-with-teams
</details>
/team
Or describe your task:
Create an agent team to review PR #142 for security, performance, and test coverage.
Use planning-with-teams for coordination.