[Feature] Slash Command Help System #57

Closed
opened 2026-04-13 11:44:47 +02:00 by shoko · 0 comments
Owner

Summary

Build a slash command help system in the conversational interface.

Commands

Command Behavior
/ Show list of all available tools (randebu vs. ave)
/help General help: what is Randebu, how to use
/<skill-name> Load skill README and explain what it is + how to use

Examples

Input: /

📋 Available Tools

🤖 Randebu Built-in:
  • /backtest - Run strategy backtest
  • /simulate - Start/stop simulation
  • /strategy - View/update strategy

☁️ AVE Cloud Skills:
  • /search - Token search
  • /risk - Honeypot detection
  • /token - Token details
  • /price - Batch prices

Input: /search

🔍 /search - Token Search (AVE Cloud Skill)

Description: Find tokens by keyword, symbol, or contract address on BSC.

Commands:
  search <keyword> [--chain bsc] [--limit 20]

Example:
  search PEPE
  search 0x1234... --chain bsc

Implementation Steps

  1. Create Tool Registry in backend
  2. Add command parser for / prefix
  3. Build README loader for skill documentation
  4. Update frontend to detect / and show formatted help

Dependencies

  • Requires AVE Skills to be integrated first (so we can read SKILL.md files)

Priority: MEDIUM

## Summary Build a slash command help system in the conversational interface. ## Commands | Command | Behavior | |---------|----------| | `/` | Show list of all available tools (randebu vs. ave) | | `/help` | General help: what is Randebu, how to use | | `/<skill-name>` | Load skill README and explain what it is + how to use | ## Examples **Input:** `/` ``` 📋 Available Tools 🤖 Randebu Built-in: • /backtest - Run strategy backtest • /simulate - Start/stop simulation • /strategy - View/update strategy ☁️ AVE Cloud Skills: • /search - Token search • /risk - Honeypot detection • /token - Token details • /price - Batch prices ``` **Input:** `/search` ``` 🔍 /search - Token Search (AVE Cloud Skill) Description: Find tokens by keyword, symbol, or contract address on BSC. Commands: search <keyword> [--chain bsc] [--limit 20] Example: search PEPE search 0x1234... --chain bsc ``` ## Implementation Steps 1. Create Tool Registry in backend 2. Add command parser for `/` prefix 3. Build README loader for skill documentation 4. Update frontend to detect `/` and show formatted help ## Dependencies - Requires AVE Skills to be integrated first (so we can read SKILL.md files) ## Priority: MEDIUM
shoko closed this issue 2026-04-14 04:23:37 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: shoko/randebu#57