/sc:implement
AdvancedFeature and code implementation with intelligent persona activation and MCP integration
Syntax
/sc:implement [options] "[feature-description]"
Options
| Flag | Values | Description |
|---|---|---|
| --type | component, api, service, feature | Specifies the artifact type: 'component', 'api', 'service', or 'feature'. |
| --framework | react, vue, express, etc. | Specifies the target framework (e.g., react, vue) to tailor code generation patterns. |
| --safe | - | Activates conservative mode: avoids destructive changes and focuses on non-breaking updates. |
| --with-tests | - | Automatically generates unit and integration tests for the implemented code. |
Examples
React component implementation
/sc:implement --type component --framework react "user profile component"
API service implementation (safe mode + tests)
/sc:implement --type api --safe --with-tests "user authentication API"
Full-stack feature
/sc:implement --type feature --with-tests "payment processing system"
Vue framework component
/sc:implement --type component --framework vue "dashboard widget"
Express backend service
/sc:implement --type service --framework express --safe "file upload service"
React secure component (with tests)
/sc:implement --type component --framework react --safe --with-tests "admin panel"
Next.js page implementation
/sc:implement --type feature --framework nextjs "user settings page"
Pure API implementation (no tests)
/sc:implement --type api "notification endpoint"