qlogicagent 2.13.4 → 2.13.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +303 -304
- package/dist/index.js +302 -303
- package/dist/types/cli/community-skill-installer.d.ts +2 -0
- package/dist/types/cli/handlers/community-handler.d.ts +6 -0
- package/dist/types/cli/runtime-dependency-catalog.d.ts +38 -12
- package/dist/types/cli/skills-query-service.d.ts +4 -0
- package/dist/types/config/cn-mirror.d.ts +23 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/protocol/methods.d.ts +27 -3
- package/dist/types/runtime/community/community-consent-client.d.ts +58 -1
- package/dist/types/runtime/community/community-telemetry-types.d.ts +1 -1
- package/dist/types/runtime/community/package-materialize.d.ts +19 -0
- package/dist/types/runtime/community/ranged-download.d.ts +15 -0
- package/dist/types/runtime/community/registry-signature.d.ts +41 -0
- package/dist/types/runtime/infra/llmrouter-catalog.d.ts +3 -3
- package/dist/types/runtime/infra/model-registry.d.ts +17 -2
- package/dist/types/runtime/pet/pet-community-assets.d.ts +14 -1
- package/package.json +110 -110
package/package.json
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "qlogicagent",
|
|
3
|
-
"version": "2.13.
|
|
4
|
-
"description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"qlogicagent": "dist/cli.js"
|
|
9
|
-
},
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"types": "./dist/types/index.d.ts",
|
|
13
|
-
"default": "./dist/index.js"
|
|
14
|
-
},
|
|
15
|
-
"./agent": {
|
|
16
|
-
"types": "./dist/types/agent/agent.d.ts",
|
|
17
|
-
"default": "./dist/agent.js"
|
|
18
|
-
},
|
|
19
|
-
"./contracts": {
|
|
20
|
-
"types": "./dist/types/contracts/index.d.ts",
|
|
21
|
-
"default": "./dist/contracts.js"
|
|
22
|
-
},
|
|
23
|
-
"./orchestration": {
|
|
24
|
-
"types": "./dist/types/orchestration/index.d.ts",
|
|
25
|
-
"default": "./dist/orchestration.js"
|
|
26
|
-
},
|
|
27
|
-
"./protocol": {
|
|
28
|
-
"types": "./dist/types/protocol/wire/index.d.ts",
|
|
29
|
-
"default": "./dist/protocol.js"
|
|
30
|
-
},
|
|
31
|
-
"./permissions": {
|
|
32
|
-
"types": "./dist/types/permissions.d.ts",
|
|
33
|
-
"default": "./dist/permissions.js"
|
|
34
|
-
},
|
|
35
|
-
"./pet-contracts": {
|
|
36
|
-
"types": "./dist/types/pet-contracts.d.ts",
|
|
37
|
-
"default": "./dist/pet-contracts.js"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"files": [
|
|
41
|
-
"dist/"
|
|
42
|
-
],
|
|
43
|
-
"typesVersions": {
|
|
44
|
-
"*": {
|
|
45
|
-
"protocol": [
|
|
46
|
-
"./dist/types/protocol/wire/index.d.ts"
|
|
47
|
-
],
|
|
48
|
-
"agent": [
|
|
49
|
-
"./dist/types/agent/agent.d.ts"
|
|
50
|
-
],
|
|
51
|
-
"contracts": [
|
|
52
|
-
"./dist/types/contracts/index.d.ts"
|
|
53
|
-
],
|
|
54
|
-
"orchestration": [
|
|
55
|
-
"./dist/types/orchestration/index.d.ts"
|
|
56
|
-
],
|
|
57
|
-
"permissions": [
|
|
58
|
-
"./dist/types/permissions.d.ts"
|
|
59
|
-
],
|
|
60
|
-
"pet-contracts": [
|
|
61
|
-
"./dist/types/pet-contracts.d.ts"
|
|
62
|
-
]
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"scripts": {
|
|
66
|
-
"dev": "tsx watch src/index.ts",
|
|
67
|
-
"build": "node scripts/build.mjs",
|
|
68
|
-
"build:tsc": "tsc --noCheck",
|
|
69
|
-
"start": "node dist/cli.js",
|
|
70
|
-
"test": "vitest run",
|
|
71
|
-
"check": "tsc --noEmit && pnpm test && pnpm run check:architecture-boundaries && pnpm run check:provider-core-boundary && pnpm run check:pet-core-boundary && pnpm run check:workspace-hygiene && pnpm run check:package-artifact",
|
|
72
|
-
"test:watch": "vitest",
|
|
73
|
-
"lint": "oxlint .",
|
|
74
|
-
"check:architecture-boundaries": "node scripts/check-architecture-boundaries.mjs",
|
|
75
|
-
"check:provider-core-boundary": "node scripts/check-provider-core-boundary.mjs",
|
|
76
|
-
"check:pet-core-boundary": "node scripts/check-pet-core-boundary.mjs",
|
|
77
|
-
"check:workspace-hygiene": "node scripts/check-workspace-hygiene.mjs",
|
|
78
|
-
"check:workspace-hygiene:strict": "node scripts/check-workspace-hygiene.mjs --strict",
|
|
79
|
-
"check:package-artifact": "npm run build && node scripts/check-package-artifact.mjs",
|
|
80
|
-
"redteam:community-desensitization": "tsx src/runtime/community/community-desensitization-red-team-cli.ts",
|
|
81
|
-
"redteam:community-sandbox": "tsx src/skills/permissions/community-sandbox-red-team-cli.ts",
|
|
82
|
-
"clean:workspace-hygiene": "node scripts/clean-workspace-hygiene.mjs",
|
|
83
|
-
"release": "node scripts/release.mjs"
|
|
84
|
-
},
|
|
85
|
-
"engines": {
|
|
86
|
-
"node": ">=22.0.0"
|
|
87
|
-
},
|
|
88
|
-
"dependencies": {
|
|
89
|
-
"@agentclientprotocol/sdk": "^0.25.0",
|
|
90
|
-
"@napi-rs/canvas": "0.1.100",
|
|
91
|
-
"@xiaozhiclaw/pet-core": "0.1.1",
|
|
92
|
-
"@xiaozhiclaw/provider-core": "^0.1.
|
|
93
|
-
"better-sqlite3": "^12.10.0",
|
|
94
|
-
"dotenv": "^17.3.1",
|
|
95
|
-
"ioredis": "^5.11.1",
|
|
96
|
-
"mcporter": "^0.12.0",
|
|
97
|
-
"nanoid": "^5.1.5",
|
|
98
|
-
"pino": "^9.6.0",
|
|
99
|
-
"pino-pretty": "^13.0.0"
|
|
100
|
-
},
|
|
101
|
-
"devDependencies": {
|
|
102
|
-
"@types/better-sqlite3": "^7.6.13",
|
|
103
|
-
"@types/node": "^22.15.0",
|
|
104
|
-
"esbuild": "^0.28.0",
|
|
105
|
-
"oxlint": "1.67.0",
|
|
106
|
-
"tsx": "^4.19.0",
|
|
107
|
-
"typescript": "^5.9.0",
|
|
108
|
-
"vitest": "^3.1.0"
|
|
109
|
-
}
|
|
110
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "qlogicagent",
|
|
3
|
+
"version": "2.13.6",
|
|
4
|
+
"description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"qlogicagent": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/types/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./agent": {
|
|
16
|
+
"types": "./dist/types/agent/agent.d.ts",
|
|
17
|
+
"default": "./dist/agent.js"
|
|
18
|
+
},
|
|
19
|
+
"./contracts": {
|
|
20
|
+
"types": "./dist/types/contracts/index.d.ts",
|
|
21
|
+
"default": "./dist/contracts.js"
|
|
22
|
+
},
|
|
23
|
+
"./orchestration": {
|
|
24
|
+
"types": "./dist/types/orchestration/index.d.ts",
|
|
25
|
+
"default": "./dist/orchestration.js"
|
|
26
|
+
},
|
|
27
|
+
"./protocol": {
|
|
28
|
+
"types": "./dist/types/protocol/wire/index.d.ts",
|
|
29
|
+
"default": "./dist/protocol.js"
|
|
30
|
+
},
|
|
31
|
+
"./permissions": {
|
|
32
|
+
"types": "./dist/types/permissions.d.ts",
|
|
33
|
+
"default": "./dist/permissions.js"
|
|
34
|
+
},
|
|
35
|
+
"./pet-contracts": {
|
|
36
|
+
"types": "./dist/types/pet-contracts.d.ts",
|
|
37
|
+
"default": "./dist/pet-contracts.js"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist/"
|
|
42
|
+
],
|
|
43
|
+
"typesVersions": {
|
|
44
|
+
"*": {
|
|
45
|
+
"protocol": [
|
|
46
|
+
"./dist/types/protocol/wire/index.d.ts"
|
|
47
|
+
],
|
|
48
|
+
"agent": [
|
|
49
|
+
"./dist/types/agent/agent.d.ts"
|
|
50
|
+
],
|
|
51
|
+
"contracts": [
|
|
52
|
+
"./dist/types/contracts/index.d.ts"
|
|
53
|
+
],
|
|
54
|
+
"orchestration": [
|
|
55
|
+
"./dist/types/orchestration/index.d.ts"
|
|
56
|
+
],
|
|
57
|
+
"permissions": [
|
|
58
|
+
"./dist/types/permissions.d.ts"
|
|
59
|
+
],
|
|
60
|
+
"pet-contracts": [
|
|
61
|
+
"./dist/types/pet-contracts.d.ts"
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"dev": "tsx watch src/index.ts",
|
|
67
|
+
"build": "node scripts/build.mjs",
|
|
68
|
+
"build:tsc": "tsc --noCheck",
|
|
69
|
+
"start": "node dist/cli.js",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"check": "tsc --noEmit && pnpm test && pnpm run check:architecture-boundaries && pnpm run check:provider-core-boundary && pnpm run check:pet-core-boundary && pnpm run check:workspace-hygiene && pnpm run check:package-artifact",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"lint": "oxlint .",
|
|
74
|
+
"check:architecture-boundaries": "node scripts/check-architecture-boundaries.mjs",
|
|
75
|
+
"check:provider-core-boundary": "node scripts/check-provider-core-boundary.mjs",
|
|
76
|
+
"check:pet-core-boundary": "node scripts/check-pet-core-boundary.mjs",
|
|
77
|
+
"check:workspace-hygiene": "node scripts/check-workspace-hygiene.mjs",
|
|
78
|
+
"check:workspace-hygiene:strict": "node scripts/check-workspace-hygiene.mjs --strict",
|
|
79
|
+
"check:package-artifact": "npm run build && node scripts/check-package-artifact.mjs",
|
|
80
|
+
"redteam:community-desensitization": "tsx src/runtime/community/community-desensitization-red-team-cli.ts",
|
|
81
|
+
"redteam:community-sandbox": "tsx src/skills/permissions/community-sandbox-red-team-cli.ts",
|
|
82
|
+
"clean:workspace-hygiene": "node scripts/clean-workspace-hygiene.mjs",
|
|
83
|
+
"release": "node scripts/release.mjs"
|
|
84
|
+
},
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": ">=22.0.0"
|
|
87
|
+
},
|
|
88
|
+
"dependencies": {
|
|
89
|
+
"@agentclientprotocol/sdk": "^0.25.0",
|
|
90
|
+
"@napi-rs/canvas": "0.1.100",
|
|
91
|
+
"@xiaozhiclaw/pet-core": "0.1.1",
|
|
92
|
+
"@xiaozhiclaw/provider-core": "^0.1.12",
|
|
93
|
+
"better-sqlite3": "^12.10.0",
|
|
94
|
+
"dotenv": "^17.3.1",
|
|
95
|
+
"ioredis": "^5.11.1",
|
|
96
|
+
"mcporter": "^0.12.0",
|
|
97
|
+
"nanoid": "^5.1.5",
|
|
98
|
+
"pino": "^9.6.0",
|
|
99
|
+
"pino-pretty": "^13.0.0"
|
|
100
|
+
},
|
|
101
|
+
"devDependencies": {
|
|
102
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
103
|
+
"@types/node": "^22.15.0",
|
|
104
|
+
"esbuild": "^0.28.0",
|
|
105
|
+
"oxlint": "1.67.0",
|
|
106
|
+
"tsx": "^4.19.0",
|
|
107
|
+
"typescript": "^5.9.0",
|
|
108
|
+
"vitest": "^3.1.0"
|
|
109
|
+
}
|
|
110
|
+
}
|