You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
✅ Clarity: Commands grouped by domain
✅ Maintainability: Easier to find and modify
✅ Testability: Each domain can be tested independently
✅ Extensibility: Easy to add new domains
Problem
`src/cli/mcp-commands.ts` is 720 lines with all CLI commands in one file.
Impact
Proposed Solution
Split by Domain
```
cli/
commands/
server.ts (MCP server commands - start, stop, restart)
workflow.ts (workflow commands - spec, plan, implement)
memory.ts (memory commands - learn, context, correct)
release.ts (release commands - release, version)
team.ts (team commands - share, view, learn-pr)
index.ts (command registration)
```
Benefits
✅ Clarity: Commands grouped by domain
✅ Maintainability: Easier to find and modify
✅ Testability: Each domain can be tested independently
✅ Extensibility: Easy to add new domains
Acceptance Criteria
Priority
🟡 High
Effort Estimate
1 day