Overview
The Brainbox client package does not currently expose a dedicated/commands module. Command-like operations are handled through the mutations and services layers.
Alternative Approaches
Instead of commands, use these patterns:Direct Service Access
For complex operations, access services directly:Mutation Batching
For atomic multi-step operations, batch mutations:Job Queue
For background tasks, use the job service:Custom Service Methods
For workspace-specific operations:Common Patterns
Workspace Setup
Complete workspace initialization:Bulk Import
Import multiple items:Cleanup Operations
Batch deletion:Event-Driven Operations
Use the event bus for reactive operations:Future Commands
If a dedicated commands API is added in the future, it would likely follow this pattern:Related Documentation
Mutations
Use mutations for state changes
Queries
Query local data
Services
Learn about client services