v1.5.1: Set QwenClaw as Default Agent for Qwen Code

This commit is contained in:
admin
2026-02-26 16:38:42 +04:00
Unverified
parent c700d84f4f
commit 24999d8fa2
6 changed files with 718 additions and 3 deletions

View File

@@ -1,9 +1,10 @@
{
"name": "qwenclaw",
"version": "1.5.0",
"version": "1.5.1",
"type": "module",
"bin": {
"qwenclaw": "./bin/qwenclaw.js"
"qwenclaw": "./bin/qwenclaw.js",
"install-qwenclaw": "./scripts/install-qwenclaw.js"
},
"scripts": {
"start": "bun run src/index.ts",
@@ -16,7 +17,8 @@
"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 2>/dev/null || true && npx playwright install chromium 2>/dev/null || true"
"postinstall": "chmod +x bin/qwenclaw.js 2>/dev/null || true && npx playwright install chromium 2>/dev/null || true",
"setup": "bun run scripts/install-qwenclaw.js"
},
"devDependencies": {
"@types/bun": "^1.3.9"