Orchestre v5 Cheat Sheet β
π Most Common Commands β
bash
# Start new project
/orchestre-create makerkit-nextjs app-name . claude
# Add to existing project
/orchestre-initialize . claude
# Plan from requirements
/orchestre-orchestrate requirements.md
# Execute any task
/orchestre-execute-task "Add user authentication"
# Quick SaaS MVP
/orchestre-compose-saas-mvp "Your SaaS idea here"π All 11 Commands at a Glance β
| Command | Purpose | Quick Example |
|---|---|---|
/orchestre-create | New project | makerkit-nextjs app . claude |
/orchestre-initialize | Add to existing | . claude |
/orchestre-orchestrate | Plan from requirements | requirements.md |
/orchestre-execute-task | Do specific task | "Add OAuth login" |
/orchestre-compose-saas-mvp | Quick SaaS | "Project tracker" |
/orchestre-generate-implementation-tutorial | Full Implementation | "Project description" |
/orchestre-security-audit | Security check | full |
/orchestre-add-enterprise-feature | Enterprise features | sso |
/orchestre-migrate-to-teams | Multi-tenancy | shared-db |
/orchestre-document-feature | Documentation | "auth" technical |
/orchestre-discover-context | Analyze project | architecture |
π― Quick Workflows β
New SaaS Project (5 minutes) β
bash
/orchestre-create makerkit-nextjs myapp . claude
/orchestre-compose-saas-mvp "Team task tracker with billing"Add to Existing Project β
bash
/orchestre-initialize . claude
/orchestre-discover-context all
/orchestre-orchestrate "Add subscription billing"Make Production-Ready β
bash
/orchestre-security-audit full
/orchestre-add-enterprise-feature sso
/orchestre-add-enterprise-feature audit-logsAdd Multi-tenancy β
bash
/orchestre-migrate-to-teams shared-db
/orchestre-add-enterprise-feature rbacπ Templates β
| Template | Best For | Key Features |
|---|---|---|
makerkit-nextjs | SaaS apps | Auth, Teams, Billing |
cloudflare-hono | APIs | Edge, D1, KV |
react-native-expo | Mobile | iOS/Android, Push |
π§ Common Arguments β
Editor Options β
claude- Claude Codewindsurf- Windsurfcursor- Cursor
Enterprise Features β
sso- Single Sign-Onaudit-logs- Activity trackingrbac- Role access controldata-export- GDPR exportcompliance- SOC2/HIPAA
Security Scopes β
full- Everythingdependencies- Packagescode- Source codeinfrastructure- Deploy
Multi-tenant Strategies β
shared-db- Row isolationdb-per-tenant- Separate DBshybrid- Mixed approach
π‘ Pro Tips β
- Chain commands for complex workflows
- Use requirements files instead of inline text
- Check
.orchestre/for generated insights - Document as you go with document-feature
- Review security before production
πͺ Custom Repos β
bash
# Use any Git repo as template
/orchestre-create https://github.com/you/template myapp . claude
# Popular MakerKit variants
/orchestre-create https://github.com/makerkit/next-supabase-saas-kit-turbo app . claudeπ Memory Locations β
CLAUDE.md- Main project memory.orchestre/memory/- All memory files.orchestre/sessions/- Work history.orchestre/patterns/- Discovered patterns.orchestre/plans/- Generated plans
β‘ Speed Run Examples β
30-Second API β
bash
/orchestre-create cloudflare-hono api . claude2-Minute SaaS β
bash
/orchestre-create makerkit-nextjs saas . claude
/orchestre-compose-saas-mvp "CRM with contacts and deals"5-Minute Mobile App β
bash
/orchestre-create react-native-expo mobile . claude
/orchestre-execute-task "Add login screen"π¨ Common Fixes β
Commands not working? β Restart Claude Code
Need to understand existing code? β /orchestre-discover-context all
Security issues? β /orchestre-security-audit full
Need docs? β /orchestre-document-feature "feature-name" technical
