v1.5.2: Fix PowerShell CLI + Enforce QwenClaw as Always-ON Agent

This commit is contained in:
admin
2026-02-26 16:53:13 +04:00
Unverified
parent 24999d8fa2
commit 7255ca42aa
6 changed files with 487 additions and 5 deletions

View File

@@ -1,10 +1,11 @@
{
"name": "qwenclaw",
"version": "1.5.1",
"version": "1.5.2",
"type": "module",
"bin": {
"qwenclaw": "./bin/qwenclaw.js",
"install-qwenclaw": "./scripts/install-qwenclaw.js"
"install-qwenclaw": "./scripts/install-qwenclaw.js",
"set-default-agent": "./scripts/set-default-agent.js"
},
"scripts": {
"start": "bun run src/index.ts",
@@ -17,8 +18,9 @@
"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",
"setup": "bun run scripts/install-qwenclaw.js"
"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"
},
"devDependencies": {
"@types/bun": "^1.3.9"