Stats
Actions
Tags
From rockets-sdk-config
Implement business logic patterns on existing Rockets projects — state machines, workflows, notifications, file uploads, API integrations. Use after CRUD modules are generated.
How this command is triggered — by the user, by Claude, or both
Slash command
/rockets-sdk-config:rockets-business-logic <pattern or description>The summary Claude sees in its command listing — used to decide when to auto-load this command
# Rockets Business Logic Command Implements non-CRUD business logic using structured patterns from `BUSINESS_LOGIC_PATTERNS_GUIDE.md`. ## Usage ## What This Command Does ### Without Arguments (Analysis Mode) 1. Read the project's source spec (PRD/SBVR) if available. 2. Read existing modules in `src/modules/`. 3. Use `SBVR_EXTRACTION_GUIDE.md` to classify unimplemented rules. 4. Report gaps: which behavioral rules lack implementation, which patterns to apply. ### With Pattern + Entity Arguments 1. Read `BUSINESS_LOGIC_PATTERNS_GUIDE.md` for the specified pattern. 2. Read the target ...
Implements non-CRUD business logic using structured patterns from BUSINESS_LOGIC_PATTERNS_GUIDE.md.
/rockets-business-logic — analyze project for missing business logic
/rockets-business-logic state-machine SongRecord — implement state machine for entity
/rockets-business-logic workflow PurchaseAuth — implement cross-entity workflow
/rockets-business-logic file-upload AudioFile — implement file upload pipeline
/rockets-business-logic notification PurchaseAuth — implement notification on event
/rockets-business-logic api-provider AudioDB — implement external API provider
/rockets-business-logic events SongRecord — implement event-driven automation
src/modules/.SBVR_EXTRACTION_GUIDE.md to classify unimplemented rules.BUSINESS_LOGIC_PATTERNS_GUIDE.md for the specified pattern.yarn build to verify.| Argument | Pattern # | Guide Section |
|---|---|---|
state-machine | 1 | State Machine + History |
custom-action | 2 | Custom CRUD Actions |
workflow | 3 | Cross-Service Orchestration |
events | 4 | Event-Driven Automation |
notification | 5 | Email Notification + Audit |
file-upload | 6 | File Upload Pipeline |
api-provider | 7 | External API Provider |
dedup-sync | 8 | Deduplication / Reference Sync |
transaction | 9 | Transactional Multi-Entity |
view | 10 | Denormalized View |
rockets-architect (invoked for complex pattern decisions)development-guides/BUSINESS_LOGIC_PATTERNS_GUIDE.mddevelopment-guides/SBVR_EXTRACTION_GUIDE.mdskills/rockets-business-logic/SKILL.mdrockets-business-logic skill (includes model service injection rules)rockets-runtime-diagnosticsnpx claudepluginhub btwld/skills --plugin rockets-sdk-config/startBootstraps a new project from a free-form description — verifies cwd, guards against existing projects, and hands off to sub-agents for architecture, development, QA, and security.