From team
Agent Teams機能を有効化するための設定セットアップ。~/.claude/settings.jsonにCLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1を追加する。teamスキルを使う前に一度だけ実行する。
How this skill is triggered — by the user, by Claude, or both
Slash command
/team:setup-teamThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
`team` スキルを使うには `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` が必要です。このスキルはその設定を自動追加します。
team スキルを使うには CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 が必要です。このスキルはその設定を自動追加します。
現在の設定を確認:
cat ~/.claude/settings.json | python3 -c "import json,sys; d=json.load(sys.stdin); print(d.get('env', {}).get('CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS', 'not set'))"
未設定の場合、セットアップスクリプトを実行:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/setup-team-env.sh"
実行後の確認:
cat ~/.claude/settings.json | python3 -c "import json,sys; d=json.load(sys.stdin); v=d.get('env',{}).get('CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS'); print('✅ 設定済み:', v) if v=='1' else print('❌ 未設定')"
Claude Code を再起動 して設定を反映させる。
/team コマンドでチームを起動できます。
/team
~/.claude/settings.json)に追加されます~/.claude/settings.json の env.CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS を削除してくださいGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
npx claudepluginhub arkatom/claude-plugins --plugin team