Back to blog

Claude Code TEAM Mode and Migration Guide

TEAM mode enables multi-agent collaboration with effortLevel inheritance. When migrating, backup plugins/cache/ directory or plugins will show enabled but not work.

#Claude Code#Tips#Migration

TEAM Mode

TEAM mode is an experimental Claude Code feature enabling multi-agent collaboration.

Enabling TEAM Mode

Add to ~/.claude/settings.json:

{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

After restarting Claude Code, use a prompt requesting agent team mode in a new terminal.

TEAM Mode vs Sub-agents

FeatureSub-agent (Agent Tool)TEAM Mode
effortLevel inheritance❌ Default✅ Inherits main session
Model selectionManualAuto-inherits
Thinking depthStandardFollows main session
Task sharingIndependentShared task list
Inter-agent communicationNoneCan message each other

Key advantage: When you set effortLevel = "high", teammates inherit the same deep thinking.

Use Cases

Best for sub-agents:

  • Simple parallel search tasks
  • Batch operations without deep thinking

Best for TEAM mode:

  • Complex multi-step tasks
  • Needs deep thinking and planning
  • Requires inter-agent coordination

Plugin Issues After Migration

Problem

After restoring backup, plugins show "enabled" but don't work:

  • settings.json has correct enabledPlugins
  • But runtime errors or features unavailable

Cause

Easy to miss plugins/cache/ directory during backup. Claude Code sees installation records, assumes plugins installed, doesn't download, but files are missing.

Solutions

Option 1: Reinstall plugins

claude plugin install context7@claude-plugins-official
claude plugin install superpowers@claude-plugins-official

Option 2: Full backup (recommended)

~/.claude/
├── settings.json          # Settings
├── history.jsonl          # History
├── projects/              # Sessions
├── skills/                # Custom skills
├── memory/                # Memory files
└── plugins/
    ├── installed_plugins.json  # Plugin records
    ├── known_marketplaces.json # Marketplace info
    └── cache/                  # ⚠️ Actual plugin files

Migration Checklist

  • Restore settings.json
  • Restore projects/ directory
  • Restore memory/ directory
  • Restore plugins/cache/ directory
  • Verify plugins: ls ~/.claude/plugins/cache/
  • Set TEAM mode environment variable
  • Restart Claude Code
  • Verify TEAM mode

Related Links


Last updated: 2026-05-25