maestro-dev
Installation
SKILL.md
maestroCLI Development Workflow
Architecture
maestroCLI follows hexagonal architecture. Every feature touches the same layers in the same order:
commands/ --> usecases/ --> ports/ <-- adapters/
(CLI I/O) (rules) (interfaces) (implementations)
server/ --> usecases/ --> ports/ <-- adapters/
(MCP I/O) (rules) (interfaces) (implementations)
Commands and MCP server tools are thin I/O shells. Business logic lives in use-cases. Ports define what the system needs. Adapters provide it.