Template Commands Reference
Comprehensive reference for all 50 template-specific commands accessible through the /template (or /t) prompt.
Overview
Each Orchestre template includes specialized commands tailored to its use case. These commands are accessed through the unified /template prompt interface.
How to Use Template Commands
Template commands are executed using the /template prompt (shorthand: /t):
/template <command> [arguments]
/t <command> [arguments]For example:
/template add-feature billing/t setup-stripe monthly-subscription/template add-api-route /api/users
MakerKit Commands (30 commands)
The MakerKit Next.js template includes comprehensive SaaS-focused commands:
Feature Development
add-feature- Add new application featuresadd-api-endpoint- Create API routesadd-database-table- Extend data modeladd-webhook- Implement webhooks
Team & Authentication
add-team-feature- Team collaboration featuressetup-oauth- OAuth provider integrationsetup-mfa- Multi-factor authenticationmigrate-to-teams- Multi-tenancy migration
Payments & Billing
setup-stripe- Stripe billing setupadd-subscription-plan- New pricing tiers
Admin & Monitoring
add-admin-feature- Admin panel featuressetup-monitoring- Application monitoring
Development & Testing
setup-testing- Test infrastructureoptimize-performance- Performance optimizationimplement-search- Search functionality
Communication
implement-email-template- Email templates
Deployment
deploy-production- Production deployment
Specialized Commands
add-enterprise-feature- Enterprise featuressecurity-audit- Security analysisperformance-check- Performance analysisvalidate-implementation- Validationsuggest-improvements- AI suggestions
Recipe Patterns (8 prompts)
recipe-otp-verification- OTP for destructive actionsrecipe-credit-billing- Credit/token-based billingrecipe-per-seat-billing- Team member-based pricingrecipe-metered-billing- Usage-based billingrecipe-super-admin- Admin panel implementationrecipe-projects-model- Multi-project supportrecipe-team-only-mode- Disable personal accountsrecipe-analytics- Analytics integration
Cloudflare Commands (10 commands)
The Cloudflare Hono template includes edge-first commands:
API Development
add-api-route- Create API endpointsadd-middleware- Add middlewareadd-websocket-endpoint- WebSocket support
Storage & Data
add-kv-namespace- KV storage setupadd-d1-database- D1 database setupadd-r2-storage- R2 object storageadd-durable-object- Durable Objects
Performance & Security
add-caching-layer- Edge cachingadd-rate-limiting- Rate limitingadd-auth-system- Authentication
React Native Commands (10 commands)
The React Native Expo template includes mobile-specific commands:
Screens & Navigation
add-screen- Create new screenssetup-navigation- Navigation setupsetup-deep-links- Deep linking
Native Features
add-native-features- Device capabilitiesimplement-push-notifications- Push notificationsadd-authentication- Auth methods
Data & Backend
add-offline-sync- Offline data syncsetup-api-client- API integrationsync-data-models- Model synchronizationsetup-shared-backend- Backend setup
Using Template Commands
Accessing Template Commands
Template commands are accessed through the /template prompt (shorthand: /t):
/template add-feature billing
/t setup-stripe monthly-subscription
/template add-api-route /api/usersCommand Discovery
When you're unsure of available commands:
/template
# or
/t helpThis will show all available template commands for your project, organized by category.
Command Format
Template commands use the format:
/template <command> [arguments]
# or
/t <command> [arguments]Examples:
/template add-feature "User profile page with avatar upload"
/t setup-stripe "Basic, Pro, and Enterprise plans"
/template add-screen "Settings screen with theme toggle"Command Composition
Template commands work seamlessly with core prompts:
# Plan feature with core prompt
/orchestrate "Add real-time notifications"
# Implement with template command
/template add-feature "Real-time notification system"
# Review with core prompt
/review
# Document with core prompt
/document-feature "Implemented WebSocket notifications"Best Practices
1. Use Template Commands First
Template commands understand the specific conventions and patterns of your template.
2. Leverage Template Knowledge
Each command knows about the template's:
- File structure
- Naming conventions
- Best practices
- Common patterns
3. Combine with Core Commands
Use core commands for planning and review, template commands for implementation.
