Slash Commands — Quick Reference
Common slash commands you can use with ValkyrAI’s chat integrations, and the API endpoints they map to.
Core Commands
| Command | Description | API / Controller |
|---|---|---|
| /sixd | Six Disciplines status snapshot | GET /api/v1/sixdisciplines/snapshot / POST /chat/sixd (LLMController) |
| /statistics | System statistics summary | GET /v1/statistics/summary |
| /health | System health | GET /v1/statistics/health |
| /workflow-status | Workflow engine status | GET /v1/workflow/status |
| /workflow-list | Lists workflow instances | GET /v1/workflow/instances |
| /credits | Account credit balance | GET /v1/credits/{accountId}/balance |
| /lookup | Lookup entity by UUID | GET /lookup/{uuid} |
Useful automation commands (if enabled)
/workflow-start <workflowId>→POST /v1/workflow/start/{workflowId}/workflow-stop <workflowId>→POST /v1/workflow/stop/{workflowId}/workflow-simulate <workflowId>→POST /v1/workflow/simulate/{workflowId}/credits-usage <accountId>→POST /v1/credits/{accountId}/usage
Notes
- Avoid exposing administrative endpoints via chat unless access-controlled
- Keep commands idempotent and safe for chat-triggered workflows
See also: Workflow API docs