Slash Commands
Type a slash command in the input bar and press Enter (or Tab to autocomplete).
/health in action
Built-in commands
Investigation & analysis
| Command | Description |
|---|---|
/health |
Infrastructure health sweep with 1-hour lookback. Produces a Good/Bad/Ugly summary. |
/health <window> |
Health sweep with a custom lookback window. Examples: /health 15m, /health 4h, /health 24h |
/cost |
Cloud cost analysis with 24-hour spend projection. |
/cost <window> |
Cost analysis with a custom lookback window. Example: /cost 7d |
/sentinel |
Start sentinel mode — continuous background alert monitoring. |
/sentinel off |
Stop sentinel mode. |
/sentinel status |
Show sentinel status and active findings. |
Environment & connections
| Command | Description |
|---|---|
/agent |
Switch SRE agent persona. Opens an interactive picker. |
/tables |
List all telemetry tables available in the connected database. |
/project |
Switch to a different database. |
/reconnect |
Change the connected Kubernetes namespace or service. |
/config |
Show current connection info. |
/config clear |
Clear saved connection selections. |
/mcp |
Show MCP server status. |
/tools |
Show all available tools. |
/learnings |
Show SQL learnings from past investigations. |
/skills |
List available skills (built-in and installed). |
Output & session
| Command | Description |
|---|---|
/export |
Export the current answer (interactive format picker). |
/copy |
Copy the current answer to clipboard. |
/welcome |
Show the welcome screen with investigation tiles. |
/help |
Show help. |
/reset |
Clear the current conversation history. NeuBird starts fresh on the next question. |
/clear |
Clear the display. History is preserved. |
/quit |
Exit NeuBird Desktop. |
Custom slash commands
You can add your own slash commands as Markdown files in the skills/ directory (or the directory set by HAWKEYE_SKILLS_DIR).
The filename (without .md) becomes the command name. A top-level # heading in the file becomes the command description shown in the autocomplete menu. The file body is injected into the conversation as a user message when the command is invoked.
Example: create skills/weekend-check.md:
# Weekend incident check
Review the last 48 hours of telemetry and summarize any anomalies or incidents that occurred over the weekend.
This makes /weekend-check available as a slash command.
Managing skills
NeuBird Desktop can install skills from the FalconClaw skills registry. Use the neubird skills CLI to browse and manage them.
| Command | Description |
|---|---|
neubird skills list |
List installed skills. |
neubird skills search <query> |
Search the skills registry. |
neubird skills install <name> |
Install a skill from the registry. |
neubird skills remove <name> |
Remove an installed skill. |
Installed skills are stored in ~/.config/neubird/skills/ and are automatically available as slash commands.