Skip to content

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 ​

CommandPurposeQuick Example
/orchestre-createNew projectmakerkit-nextjs app . claude
/orchestre-initializeAdd to existing. claude
/orchestre-orchestratePlan from requirementsrequirements.md
/orchestre-execute-taskDo specific task"Add OAuth login"
/orchestre-compose-saas-mvpQuick SaaS"Project tracker"
/orchestre-generate-implementation-tutorialFull Implementation"Project description"
/orchestre-security-auditSecurity checkfull
/orchestre-add-enterprise-featureEnterprise featuressso
/orchestre-migrate-to-teamsMulti-tenancyshared-db
/orchestre-document-featureDocumentation"auth" technical
/orchestre-discover-contextAnalyze projectarchitecture

🎯 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-logs

Add Multi-tenancy ​

bash
/orchestre-migrate-to-teams shared-db
/orchestre-add-enterprise-feature rbac

πŸ“ Templates ​

TemplateBest ForKey Features
makerkit-nextjsSaaS appsAuth, Teams, Billing
cloudflare-honoAPIsEdge, D1, KV
react-native-expoMobileiOS/Android, Push

πŸ”§ Common Arguments ​

Editor Options ​

  • claude - Claude Code
  • windsurf - Windsurf
  • cursor - Cursor

Enterprise Features ​

  • sso - Single Sign-On
  • audit-logs - Activity tracking
  • rbac - Role access control
  • data-export - GDPR export
  • compliance - SOC2/HIPAA

Security Scopes ​

  • full - Everything
  • dependencies - Packages
  • code - Source code
  • infrastructure - Deploy

Multi-tenant Strategies ​

  • shared-db - Row isolation
  • db-per-tenant - Separate DBs
  • hybrid - Mixed approach

πŸ’‘ Pro Tips ​

  1. Chain commands for complex workflows
  2. Use requirements files instead of inline text
  3. Check .orchestre/ for generated insights
  4. Document as you go with document-feature
  5. 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 . claude

2-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

Built with ❀️ for the AI Coding community, by Praney Behl