feat: Add slash command help system (#57) #62

Merged
shoko merged 18 commits from fix/issue-57 into main 2026-04-14 04:03:29 +02:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 61b9da295b - Show all commits

View File

@@ -66,6 +66,17 @@ TOOL_REGISTRY = {
"example": "search PEPE\nsearch 0x1234... --chain bsc", "example": "search PEPE\nsearch 0x1234... --chain bsc",
}, },
}, },
{
"name": "trending",
"description": "Popular tokens",
"category": "AVE Cloud Skills",
"command": "/trending",
"details": {
"description": "Get list of trending/popular tokens on BSC.",
"usage": "trending [--chain bsc] [--limit 20]",
"example": "trending --chain bsc\ntrending --limit 10",
},
},
{ {
"name": "risk", "name": "risk",
"description": "Honeypot detection", "description": "Honeypot detection",

View File

@@ -24,6 +24,7 @@
label: '☁️ AVE Cloud Skills', label: '☁️ AVE Cloud Skills',
tools: [ tools: [
{ name: 'search', description: 'Token search', command: '/search' }, { name: 'search', description: 'Token search', command: '/search' },
{ name: 'trending', description: 'Popular tokens', command: '/trending' },
{ name: 'risk', description: 'Honeypot detection', command: '/risk' }, { name: 'risk', description: 'Honeypot detection', command: '/risk' },
{ name: 'token', description: 'Token details', command: '/token' }, { name: 'token', description: 'Token details', command: '/token' },
{ name: 'price', description: 'Batch prices', command: '/price' }, { name: 'price', description: 'Batch prices', command: '/price' },