CLI Integration Guide
CLI Integration Guide
This guide explains how to use sscli to generate, configure, and manage your Seed & Source projects from the command line.
Install
pip install sscliAuthentication commands
sscli auth login # authenticate with your license keysscli auth whoami # show current authenticated usersscli auth logout # clear stored credentialsProject generation
# Create a new projectsscli new <name> --template <template>
# Available templates:# python-saas Full-stack Python + FastAPI# rails-api Rails API-only backend# react-client React + Vite frontend# static-landing Astro static marketing site
# With optional features:sscli new my-app --template python-saas --with-payment --with-authFeature injection
Inject capabilities into an existing generated project:
sscli inject --with-payment # add Stripe integrationsscli inject --with-auth # add auth flowsscli inject --with-themes # add theme systemHealth and upgrade
sscli health # check CLI and template healthsscli upgrade # upgrade sscli to latest versionExploration and debugging
sscli explore # browse available templates and featuressscli obs # observability — check logs and metricsFull reference
See the CLI Quick Reference for a complete command listing.