Quick Start
Scaffold a new project
sscli new --template rails-api --name my-apiThis downloads and configures the rails-api template into a my-api/ directory.
Explore available templates
# Interactive TUI browsersscli explore
# Plain list (pipe-safe)sscli explore --list
# JSON output (for scripts)sscli explore --jsonStart local development
cd my-apidocker compose upEvery template ships with a pre-configured docker-compose.yml. No bare-process startup required.
Add features later
sscli inject --path ./my-api --features commerceFeatures can be injected into an existing project at any time.
Check deploy readiness
sscli readyRun this before any deployment to validate the project structure and dependencies.