v1.6.0: Replace Rig with Agents Council + Keep FULL RAG

This commit is contained in:
admin
2026-02-26 17:53:41 +04:00
Unverified
parent 7255ca42aa
commit 1387a8b1c6
9 changed files with 1318 additions and 5 deletions

48
qwen-agent/package.json Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "qwenclaw-agent",
"version": "1.0.0",
"description": "QwenClaw - Persistent AI assistant daemon for Qwen Code CLI",
"main": "index.js",
"type": "module",
"qwen": {
"type": "agent",
"displayName": "QwenClaw 🐾",
"description": "Persistent AI assistant daemon with full automation capabilities",
"autoStart": true,
"alwaysOn": true,
"priority": 1,
"commands": [
{
"name": "qwenclaw",
"description": "Interact with QwenClaw daemon",
"handler": "./commands/qwenclaw.js"
}
],
"skills": [
"qwenclaw-integration",
"gui-automation",
"qwenbot-integration"
],
"config": {
"daemon": {
"autoStart": true,
"webDashboard": true,
"port": 4632
}
}
},
"keywords": [
"qwen",
"qwenclaw",
"agent",
"daemon",
"automation",
"ai-assistant"
],
"author": "QwenClaw Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.rommark.dev/admin/QwenClaw-with-Auth.git"
}
}