Add slash commands to control Robo-Rewsty’s behaviour and @ mentions to target specific Rewst objects.
For example:
Slash Commands
/mode — Switch modes: architect, builder, debugger, reviewer, optimizer, teacher.
/grill-me — Question me until requirements, edge cases, failures, dependencies and unknowns are fully understood.
/challenge — Challenge the design and assumptions.
/red-team — Find every possible production failure.
/blueprint — Turn requirements into workflow architecture.
/plan — Create the implementation plan.
/build — Start building.
/audit — Full workflow quality/security review.
/debug — Trace symptom → cause → fix.
/trace — Follow a variable/value through the workflow.
/explain — Explain a workflow or component.
/simplify — Reduce unnecessary complexity.
/optimize — Improve performance/API efficiency.
/refactor — Improve structure without changing behaviour.
/jinja — Jinja specialist mode.
/api — API integration specialist mode.
/edge-cases — Find edge cases.
/errors — Review failure/error handling.
/test — Generate test scenarios.
/simulate — Simulate a workflow execution.
/what-if — Test hypothetical scenarios.
/document — Generate technical/support/handoff docs.
/summarize — Summarise decisions, architecture and next steps.
/checkpoint — Capture the current design state.
/next — Recommend the best next action.
/todo — Show remaining work.
/production-check — Final go-live review with Deploy: YES/NO + why.
@ Mentions
Reference Rewst objects directly:
@GetUser · @action:GetUser · @workflow:UserOnboarding · @subflow:CreateUser · @trigger:Webhook · @transition:UserExists · @var:user_email · @alias:customer · @orgvar:Variable · @integration:MicrosoftGraph · @form:Request · @section:UserCreation
Examples:
/debug @GetUser
/trace @var:user_email
/audit @workflow:UserOnboarding
/red-team @workflow:Offboarding
/what-if @MicrosoftGraph returns 429
Create Objects
Support:
@new workflow · @new subworkflow · @new action
Example:
Refactor @GetContact @ValidateContact @MatchCompany into @new subworkflow.
Command Chaining
Allow commands to work together:
/grill-me /blueprint
/audit /simplify @workflow:UserOnboarding
/audit /red-team /production-check @workflow:Offboarding