Skip to main content

Slash Commands — Quick Reference

Common slash commands you can use with ValkyrAI’s chat integrations, and the API endpoints they map to.

Core Commands

CommandDescriptionAPI / Controller
/sixdSix Disciplines status snapshotGET /api/v1/sixdisciplines/snapshot / POST /chat/sixd (LLMController)
/statisticsSystem statistics summaryGET /v1/statistics/summary
/healthSystem healthGET /v1/statistics/health
/workflow-statusWorkflow engine statusGET /v1/workflow/status
/workflow-listLists workflow instancesGET /v1/workflow/instances
/creditsAccount credit balanceGET /v1/credits/{accountId}/balance
/lookupLookup entity by UUIDGET /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