slash-commands

Parse slash commands and route them to handlers via slash_read.

1|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/AskTinNguyen/vesper-team-skills --skill slash-commands-asktinnguyen
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: slash-commands
Source: https://github.com/AskTinNguyen/vesper-team-skills/tree/main/openclaw-plugin/skills/slash-commands
Command: npx skills add https://github.com/AskTinNguyen/vesper-team-skills --skill slash-commands-asktinnguyen

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Slash commands streamline user interactions by turning terse input into explicit AI actions, reducing ambiguity and latency.

Core Features & Use Cases

  • Extract command name from messages starting with slash
  • Dispatch to the correct handler via slash_read(command)
  • Support namespaces like workflows:plan to organize related commands

Quick Start

Type /plan to trigger the plan workflow.

Frequently Asked Questions about slash-commands

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I parse and route slash commands to specific handlers in an AI assistant?

To route slash commands, this Skill extracts the command name from user messages and dispatches it to the correct handler via deterministic command lookup. It turns terse chat input into explicit AI actions with reduced latency.

Can I use namespaces to organize related slash commands like workflows:plan?

Yes, slash commands support namespace-based discovery. You can organize related commands using namespace syntax like workflows:plan, allowing the AI assistant to group and route command logic efficiently within interactive chat contexts.

What is the best way to trigger a rule-based workflow like /plan or /review in a chat interface?

The best way to trigger rule-based workflows is by typing a slash command like /plan. The Skill parses the message starting with a slash and applies the YAML frontmatter name/description for immediate, rule-based AI responses.

How does an AI assistant process slash commands for immediate user interactions?

An AI assistant processes slash commands by parsing the input string and routing it through slash_read(command). This mechanism streamlines interactions by reducing ambiguity and mapping terse text directly to explicit AI actions.

Do I need additional dependencies to execute slash commands with deterministic lookup?

No dependencies are required to execute slash commands. The Skill operates independently using its internal slash_read handler to apply deterministic command lookup, honoring YAML frontmatter for command discovery and routing.

Why does my slash command routing fail to reduce latency in interactive chat contexts?

Slash command routing fails if the command is not properly parsed or lacks YAML frontmatter for discovery. The Skill relies on namespace-based discovery and deterministic lookup to reduce ambiguity and latency in AI responses.