v1.7.0: Integrate ClawWork Economic AI Agent Platform

This commit is contained in:
admin
2026-02-26 18:24:48 +04:00
Unverified
parent 1387a8b1c6
commit ff4da9d16c
5 changed files with 1097 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "qwenclaw",
"version": "1.6.0",
"version": "1.7.0",
"type": "module",
"bin": {
"qwenclaw": "./bin/qwenclaw.js",
@@ -17,13 +17,16 @@
"rig:check": "cd rig-service && cargo check",
"council:start": "npx agents-council@latest mcp",
"council:install": "npm install -g agents-council",
"clawwork:install": "pip install clawwork",
"clawwork:dashboard": "cd ClawWork/frontend && npm start",
"start:all": "bun run src/index.ts start --web --with-rig",
"test": "bun test",
"test:rig": "bun test tests/rig-integration.test.ts",
"postinstall": "chmod +x bin/qwenclaw.js bin/qwenclaw.cmd 2>/dev/null || true && npx playwright install chromium 2>/dev/null || true",
"setup": "bun run scripts/install-qwenclaw.js",
"set-default": "bun run scripts/set-default-agent.js",
"council": "bun run src/tools/agents-council.ts"
"council": "bun run src/tools/agents-council.ts",
"clawwork": "bun run src/tools/clawwork.ts"
},
"devDependencies": {
"@types/bun": "^1.3.9"
@@ -33,6 +36,7 @@
"playwright": "^1.42.0"
},
"peerDependencies": {
"agents-council": "^0.4.0"
"agents-council": "^0.4.0",
"clawwork": "^0.1.0"
}
}