Commands Reference β
Orchestre provides 20 essential prompts that orchestrate your development workflow. Each prompt is dynamically executed by Claude Code and adapts to your project context, making Claude think and reason rather than just execute prescribed actions.
Command Categories β
π― Project Setup & Planning
Essential commands for initializing and planning projects
- /create - Initialize new projects with templates
- /initialize - Add Orchestre to existing projects
- /orchestrate - Analyze requirements and create plans
π Development & Execution
Commands for building and implementing features
- /execute-task - Context-aware task implementation
- /compose-saas-mvp - Rapid SaaS prototyping
- /generate-implementation-tutorial - Comprehensive implementation tutorials
π’ Enterprise & Production
Commands for production-grade features and security
- /security-audit - Comprehensive vulnerability detection
- /add-enterprise-feature - Add production-grade features
- /migrate-to-teams - Multi-tenancy migration
π Knowledge Management
Commands for documentation and discovery
- /document-feature - Create contextual documentation
- /discover-context - Analyze existing codebases
How Prompts Work β
Dynamic Adaptation β
Unlike static scripts, Orchestre prompts:
- Discover Context - Explore your project structure and patterns
- Analyze Requirements - Understand what you're trying to achieve
- Adapt Approach - Choose strategies based on discoveries
- Execute Intelligently - Implement with awareness of existing code
- Learn and Improve - Extract patterns for future use
Direct Invocation β
Prompts are executed directly by Claude Code - no file installation needed:
# Simply type the command
/create makerkit my-app
# Claude will:
# 1. Read the prompt definition
# 2. Discover project context
# 3. Execute intelligently
# 4. Update distributed memory
# 5. Provide resultsPrompt Structure β
Each prompt contains:
# Purpose and description
## Your Mission
What to achieve
## Discovery Phase
How to explore context
## Planning Phase
How to create approach
## Execution Phase
How to implement
## Quality Phase
How to verify
## Available Tools
MCP tools to useCommand Invocation β
Basic Usage β
# Simple invocation
/create makerkit my-app
# With arguments
/orchestrate "Build a real-time chat system"
# With context
/execute-task "Add authentication" --context "Use JWT with refresh tokens"Command Chaining β
Commands work together:
# Complete workflow
/create cloudflare my-api
/orchestrate requirements.md
/execute-task "Implement user endpoints"
/review
/deployBest Practices β
1. Start with Discovery β
Always let commands explore before acting:
# Good: Let command discover context
/orchestrate "Add payment processing"
# Less optimal: Too prescriptive
/execute-task "Add Stripe to routes/payment.js using webhook pattern"2. Provide Clear Intent β
Express what you want, not how:
# Good: Clear goal
/execute-task "Users should be able to reset forgotten passwords"
# Less optimal: Implementation details
/execute-task "Create POST /api/auth/reset with Redis token storage"3. Use Appropriate Commands β
Match command to task:
| Task | Command |
|---|---|
| New project | /create |
| Planning | /orchestrate |
| Implementation | /execute-task |
| Code quality | /review |
| Documentation | /document-feature |
| Learning | /discover-context |
4. Leverage Prompt Intelligence β
Prompts can:
- Understand natural language
- Infer missing details
- Adapt to your style
- Learn from patterns
- Update distributed memory
- Evolve with your project
Command Composition β
Building Complex Workflows β
Use meta commands to create sophisticated workflows:
# Compose a custom workflow
/compose-prompt "Refactor authentication system with backward compatibility"
# This might generate:
# 1. /discover-context "authentication"
# 2. /extract-patterns "auth patterns"
# 3. /execute-task "Create new auth system"
# 4. /execute-task "Add compatibility layer"
# 5. /validate-implementation
# 6. /document-feature "New authentication"Parallel Execution β
Distribute work across multiple streams:
/setup-parallel
/distribute-tasks "Frontend: UI components, Backend: API endpoints, Data: Schema design"
/coordinate-parallel
/merge-workCommand Customization β
Template-Specific Prompts β
Templates add specialized prompts:
- MakerKit: 22 SaaS-specific prompts
- Cloudflare: 10 edge computing prompts
- React Native: 10 mobile development prompts
Memory Integration β
All prompts integrate with distributed memory:
- Read: From CLAUDE.md files throughout project
- Update: Documentation as they work
- Learn: From successful patterns
- Evolve: Improve over time
Error Handling β
Commands handle errors gracefully:
/execute-task "Invalid task"
β Error: Could not understand the task
π‘ Suggestions:
- Provide more specific details
- Check for typos
- Use /status to see available tasksPerformance Tips β
Command Efficiency β
- Batch Operations: Combine related tasks
- Cache Context: Commands remember discoveries
- Incremental Updates: Work on changes only
- Parallel Processing: Use parallel commands
Resource Usage β
Commands optimize for:
- Minimal file operations
- Efficient tool usage
- Smart caching
- Parallel execution
Troubleshooting β
Command Not Found β
- Check command spelling
- Verify template installation
- Restart Claude Code
- Check
.orchestre/prompts.json
Command Fails β
- Provide clearer requirements
- Check error messages
- Verify project state
- Use
/statusfor context
Unexpected Results β
- Review command output
- Check assumptions
- Provide more context
- Use specific examples
Summary β
Orchestre prompts represent a new paradigm in AI-native development - dynamic instructions that make Claude think, adapt, and learn rather than just execute. By understanding how to use them effectively, you can dramatically accelerate your development workflow while maintaining high quality.
Key differences in v5:
- No file installation - Prompts execute directly
- Dynamic adaptation - Each execution can be different
- Distributed memory - Knowledge lives with code
- Continuous evolution - Prompts improve over time
