v3/implementation/v3-migration/CLI-MIGRATION.md
Migrating from V2 CLI (25 commands) to V3 CLI (7 commands)
V3 CLI is streamlined with 7 core commands. Many V2 commands need migration or have been consolidated.
| Status | V2 Commands | V3 Commands |
|---|---|---|
| ✅ Implemented | 7 | 7 |
| ❌ Missing | 18 | - |
| Total | 25 | 7 |
# V2
npx claude-flow agent spawn --type coder --name my-coder
npx claude-flow agent list --detailed
npx claude-flow agent info <agentId>
npx claude-flow agent terminate <agentId>
# V3 (same)
npx claude-flow agent spawn --type coder --id my-coder
npx claude-flow agent list --detailed
npx claude-flow agent status <agentId>
npx claude-flow agent terminate <agentId>
# V2
npx claude-flow memory store --namespace default --content "data"
npx claude-flow memory query --search "keyword" --limit 10
npx claude-flow memory list --namespace default
# V3 (enhanced)
npx claude-flow memory store --type episodic --content "data"
npx claude-flow memory search --query "keyword" --search-type hybrid
npx claude-flow memory list --type all --sort-by relevance
# V2
npx claude-flow swarm --strategy auto --max-agents 5
# V3 (enhanced)
npx claude-flow swarm init --topology hierarchical-mesh --max-agents 15
npx claude-flow swarm status --include-metrics
npx claude-flow swarm scale --target 10 --strategy gradual
# V2
npx claude-flow hooks pre-edit --file src/app.ts
npx claude-flow hooks post-edit --file src/app.ts --success true
# V3 (enhanced with learning)
npx claude-flow hooks pre-edit src/app.ts
npx claude-flow hooks post-edit src/app.ts --success true
npx claude-flow hooks route "implement feature X"
npx claude-flow hooks explain "implement feature X"
npx claude-flow hooks pretrain
npx claude-flow hooks metrics
# V2
npx claude-flow mcp start --port 3000 --transport stdio
npx claude-flow mcp stop
npx claude-flow mcp status
# V3 (same)
npx claude-flow mcp start --port 3000 --transport stdio
npx claude-flow mcp stop
npx claude-flow mcp status
# V2
npx claude-flow config get orchestrator
npx claude-flow config set orchestrator.maxAgents 10
# V3
npx claude-flow config load --scope project
npx claude-flow config save --create-backup
npx claude-flow config validate --strict
# V3 only
npx claude-flow migrate status
npx claude-flow migrate run --target all --backup
npx claude-flow migrate verify
npx claude-flow migrate rollback --backup-id <id>
# V2
npx claude-flow init
npx claude-flow init --minimal
npx claude-flow init --flow-nexus
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/init.ts
export const initCommand = {
command: 'init',
description: 'Initialize Claude Code integration files',
options: [
{ flags: '-f, --force', description: 'Overwrite existing files' },
{ flags: '-m, --minimal', description: 'Create minimal configuration' },
{ flags: '--flow-nexus', description: 'Initialize with Flow Nexus' }
],
action: async (options) => {
await createClaudeFlowConfig(options);
await createDefaultAgents(options);
if (!options.minimal) {
await createHooksConfig(options);
await createWorkflowTemplates(options);
}
}
};
# V2
npx claude-flow start
npx claude-flow start --daemon
npx claude-flow start --port 3000
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/start.ts
export const startCommand = {
command: 'start',
description: 'Start the orchestration system',
options: [
{ flags: '-d, --daemon', description: 'Run as daemon' },
{ flags: '-p, --port <port>', description: 'MCP server port' }
],
action: async (options) => {
const swarm = await initializeV3Swarm();
await swarm.spawnAllAgents();
if (options.port) {
await startMCPServer({ port: options.port });
}
}
};
# V2
npx claude-flow status
npx claude-flow status --watch
npx claude-flow status --json
npx claude-flow status --health-check
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/status.ts
export const statusCommand = {
command: 'status',
description: 'Show enhanced system status',
options: [
{ flags: '-w, --watch', description: 'Watch mode' },
{ flags: '-i, --interval <seconds>', description: 'Update interval' },
{ flags: '--json', description: 'Output in JSON format' },
{ flags: '--health-check', description: 'Perform health checks' }
],
action: async (options) => {
const status = await getSystemStatus();
if (options.healthCheck) {
status.health = await performHealthChecks();
}
if (options.watch) {
await watchStatus(status, options.interval);
} else {
displayStatus(status, options.json);
}
}
};
# V2
npx claude-flow task create --type implementation --description "Build feature"
npx claude-flow task list --status running
npx claude-flow task status <taskId>
npx claude-flow task cancel <taskId>
npx claude-flow task assign <taskId> --agent <agentId>
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/task.ts
export const taskCommand = {
command: 'task',
description: 'Manage tasks',
subcommands: [
{
command: 'create',
options: [
{ flags: '-t, --type <type>', description: 'Task type' },
{ flags: '-d, --description <desc>', description: 'Task description' },
{ flags: '-p, --priority <priority>', description: 'Task priority' },
{ flags: '-a, --assign <agentId>', description: 'Assign to agent' }
]
},
{ command: 'list', options: [{ flags: '-s, --status <status>' }] },
{ command: 'status', args: '<taskId>' },
{ command: 'cancel', args: '<taskId>' },
{ command: 'assign', args: '<taskId>', options: [{ flags: '--agent <agentId>' }] }
]
};
# V2
npx claude-flow session list
npx claude-flow session save --description "Checkpoint"
npx claude-flow session restore <sessionId>
npx claude-flow session delete <sessionId>
npx claude-flow session export --include-memory
npx claude-flow session import <file>
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/session.ts
export const sessionCommand = {
command: 'session',
description: 'Manage Claude-Flow sessions',
subcommands: [
{ command: 'list', options: [{ flags: '-a, --active' }] },
{ command: 'save', options: [{ flags: '-d, --description <desc>' }] },
{ command: 'restore', args: '<sessionId>' },
{ command: 'delete', args: '<sessionId>' },
{ command: 'export', options: [{ flags: '--include-memory' }] },
{ command: 'import', args: '<file>' }
]
};
# V2
npx claude-flow hive --topology mesh --consensus quorum --max-agents 8
npx claude-flow hive-mind init
npx claude-flow hive-mind status
npx claude-flow hive-mind spawn --type queen
npx claude-flow hive-mind task --description "Task"
npx claude-flow hive-mind wizard
npx claude-flow hive-mind pause
npx claude-flow hive-mind resume
npx claude-flow hive-mind stop
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/hive.ts
export const hiveCommand = {
command: 'hive',
description: 'Hive Mind multi-agent coordination',
options: [
{ flags: '--topology <type>', description: 'Topology: mesh, hierarchical, ring, star' },
{ flags: '--consensus <type>', description: 'Consensus: quorum, unanimous, weighted' },
{ flags: '--max-agents <n>', description: 'Maximum agents' }
],
subcommands: [
{ command: 'init' },
{ command: 'status' },
{ command: 'spawn', options: [{ flags: '-t, --type <type>' }] },
{ command: 'task', options: [{ flags: '-d, --description <desc>' }] },
{ command: 'wizard' },
{ command: 'pause' },
{ command: 'resume' },
{ command: 'stop' }
]
};
# V2
npx claude-flow sparc modes
npx claude-flow sparc info <mode>
npx claude-flow sparc run --mode specification
npx claude-flow sparc tdd --sequential
npx claude-flow sparc workflow --dry-run
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/sparc.ts
export const sparcCommand = {
command: 'sparc',
description: 'SPARC methodology commands',
subcommands: [
{ command: 'modes', description: 'List SPARC modes' },
{ command: 'info', args: '<mode>' },
{ command: 'run', options: [{ flags: '-m, --mode <mode>' }] },
{ command: 'tdd', options: [{ flags: '--sequential' }] },
{ command: 'workflow', options: [{ flags: '--dry-run' }] }
]
};
# V2
npx claude-flow monitor
npx claude-flow monitor --interval 2
npx claude-flow monitor --compact
npx claude-flow monitor --focus agents
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/monitor.ts
export const monitorCommand = {
command: 'monitor',
description: 'Start live monitoring dashboard',
options: [
{ flags: '-i, --interval <seconds>', description: 'Update interval' },
{ flags: '-c, --compact', description: 'Compact view' },
{ flags: '--focus <component>', description: 'Focus on component' }
],
action: async (options) => {
const dashboard = createDashboard(options);
await dashboard.start();
}
};
# V2
npx claude-flow github init
npx claude-flow github gh-coordinator
npx claude-flow github pr-manager
npx claude-flow github issue-tracker
npx claude-flow github release-manager
npx claude-flow github repo-architect
npx claude-flow github sync-coordinator
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/github.ts
export const githubCommand = {
command: 'github',
description: 'GitHub workflow automation',
subcommands: [
{ command: 'init' },
{ command: 'gh-coordinator' },
{ command: 'pr-manager' },
{ command: 'issue-tracker' },
{ command: 'release-manager' },
{ command: 'repo-architect' },
{ command: 'sync-coordinator' }
],
options: [
{ flags: '--auto-approve', description: 'Auto-approve permissions' },
{ flags: '--dry-run', description: 'Preview only' }
]
};
# V2
npx claude-flow neural init
npx claude-flow neural init --force --target .claude/agents/neural
# V3: Replaced by hooks pretrain
npx claude-flow hooks pretrain
# V2
npx claude-flow goal init
# V3: Replaced by hooks system
npx claude-flow hooks pretrain --include-goap
# V2
npx claude-flow claude spawn --tools View,Edit,Bash --mode full
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/claude.ts
export const claudeCommand = {
command: 'claude',
description: 'Spawn Claude instances',
subcommands: [
{
command: 'spawn',
options: [
{ flags: '-t, --tools <tools>', description: 'Allowed tools' },
{ flags: '-m, --mode <mode>', description: 'Dev mode' },
{ flags: '--parallel', description: 'Enable parallel execution' }
]
}
]
};
# V2
npx claude-flow workflow create --name "my-workflow"
npx claude-flow workflow execute <workflow>
npx claude-flow workflow list
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/workflow.ts
# V2
npx claude-flow repl
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/repl.ts
export const replCommand = {
command: 'repl',
description: 'Start interactive REPL mode',
action: async () => {
const rl = createInterface({ input: stdin, output: stdout });
// REPL loop
}
};
# V2
npx claude-flow version
npx claude-flow version --short
# V3 Migration needed:
# Add version flag to CLI root
# V2
npx claude-flow completion bash
npx claude-flow completion --install
# V3 Migration needed:
# Add to v3/@claude-flow/cli/src/commands/completion.ts
init - Project initializationstart - System startupstatus - System statustask - Task managementsession - Session managementhive - Hive-mind modesparc - SPARC methodologymonitor - Live dashboardgithub - GitHub integrationworkflow - Workflow managementclaude - Claude spawningrepl - Interactive modeversion - Version infocompletion - Shell completion