Files
QwenClaw-with-Auth/.qwen-plugin/marketplace.json

44 lines
1.3 KiB
JSON

{
"name": "qwenclaw",
"displayName": "QwenClaw",
"description": "A lightweight, open-source personal assistant daemon for Qwen Code. Runs as a background daemon with heartbeat, cron jobs, Telegram bot, and web dashboard.",
"version": "1.0.0",
"author": "admin",
"license": "MIT",
"homepage": "https://github.com/admin/qwenclaw",
"repository": {
"type": "git",
"url": "https://github.com/admin/qwenclaw.git"
},
"commands": [
{
"name": "qwenclaw:start",
"description": "Start the QwenClaw daemon",
"usage": "/qwenclaw:start [--prompt \"<prompt>\"] [--trigger] [--telegram] [--web] [--web-port <port>] [--debug]"
},
{
"name": "qwenclaw:stop",
"description": "Stop the QwenClaw daemon",
"usage": "/qwenclaw:stop"
},
{
"name": "qwenclaw:status",
"description": "Check QwenClaw daemon status",
"usage": "/qwenclaw:status"
},
{
"name": "qwenclaw:send",
"description": "Send a prompt to the running daemon",
"usage": "/qwenclaw:send [--telegram] <prompt>"
},
{
"name": "qwenclaw:clear",
"description": "Clear QwenClaw state and session",
"usage": "/qwenclaw:clear"
}
],
"hooks": {
"onStartup": "src/index.ts --check"
}
}