slash-command.wit

 1interface slash-command {
 2    /// A slash command for use in the Assistant.
 3    record slash-command {
 4        /// The name of the slash command.
 5        name: string,
 6        /// The description of the slash command.
 7        description: string,
 8        /// The tooltip text to display for the run button.
 9        tooltip-text: string,
10        /// Whether this slash command requires an argument.
11        requires-argument: bool,
12    }
13}