Slash Commands#

Slash Command Handling

Flowkit itself does not handle raw slash commands like /reset or /summary.

These commands are parsed and interpreted by the AALI Agent or client application. The agent then converts them into valid GRPC function calls and sends them to Flowkit.

Function Dispatching

Flowkit receives normal GRPC requests where:

  • function contains the name of a registered function (e.g. reset_session)

  • input includes any parameters from the slash command

  • No special syntax like / is interpreted at the Flowkit level

Usage Context

Slash commands are often used in:

  • Developer tooling or chat interfaces

  • AALI Agent workflows for fast operator actions

  • Automating tasks like session resets or translations

Flowkit executes the registered function once invoked.