What problem does it solve? The claude-flow v3 CLI suffers from monolithic command files (index.ts at 108KB), basic command parsing without interactivity, shallow hooks integration, and no intelligent workflow automation, making it hard to maintain and slow to use. ## Core Features & Use Cases - Modular Command Decomposition: Breaks large CLI files into focused command modules under 500 lines each, organized by category with a registry supporting aliases and fuzzy matching. - Interactive Prompt System: Provides context-aware select, multiselect, input, confirm, and progress-bar prompts using inquirer and cli-progress for guided CLI experiences. - Enhanced Hooks & Learning Integration: Connects CLI lifecycle events (command start, end, error) to learning systems that record trajectories, calculate rewards, and generate intelligent suggestions. - Workflow Automation: Orchestrates multi-step command workflows with dependency resolution, conditional execution, and retry policies. - Use Case: A developer runs claude-flow swarm init --interactive and is guided through topology selection and agent configuration, while hooks record the session for learning-based future suggestions. ## Quick Start Ask the AI to analyze the current claude-flow CLI structure and implement modular commands with interactive prompts and enhanced hooks integration.