qlogicagent 2.11.10 → 2.11.12
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 +366 -303
- package/dist/index.js +364 -301
- package/dist/protocol.js +1 -1
- package/dist/types/cli/acp-extended-handlers.d.ts +7 -1
- package/dist/types/cli/base-tool-bootstrap.d.ts +7 -0
- package/dist/types/cli/handlers/product-handler.d.ts +1 -2
- package/dist/types/cli/product-coordinator.d.ts +9 -0
- package/dist/types/cli/tool-bootstrap.d.ts +8 -0
- package/dist/types/orchestration/workflow/workflow-controller.d.ts +6 -0
- package/dist/types/orchestration/workflow/workflow-runtime.d.ts +3 -0
- package/dist/types/orchestration/workflow-chat-builder.d.ts +39 -0
- package/dist/types/protocol/methods.d.ts +3 -0
- package/dist/types/protocol/wire/acp-agent-management.d.ts +20 -0
- package/dist/types/protocol/wire/acp-protocol.d.ts +1 -0
- package/dist/types/protocol/wire/agent-events.d.ts +2 -2
- package/dist/types/runtime/ports/source-provider.d.ts +39 -0
- package/dist/types/skills/tools/web-answer-tool.d.ts +27 -0
- package/dist/types/skills/tools/web-research-tool.d.ts +19 -0
- package/dist/types/skills/web-search/brave-source.d.ts +2 -0
- package/dist/types/skills/web-search/crawl4ai-extractor.d.ts +15 -0
- package/dist/types/skills/web-search/exa-source.d.ts +2 -0
- package/dist/types/skills/web-search/multi-source-backend.d.ts +20 -0
- package/dist/types/skills/web-search/searxng-source.d.ts +2 -0
- package/dist/types/skills/web-search/serper-source.d.ts +2 -0
- package/dist/types/skills/web-search/source-factory.d.ts +7 -0
- package/dist/types/skills/web-search/stability.d.ts +26 -0
- package/dist/types/transport/acp-server.d.ts +3 -0
- package/package.json +24 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qlogicagent",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.12",
|
|
4
4
|
"description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -62,14 +62,34 @@
|
|
|
62
62
|
]
|
|
63
63
|
}
|
|
64
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
|
+
},
|
|
65
85
|
"engines": {
|
|
66
86
|
"node": ">=22.0.0"
|
|
67
87
|
},
|
|
68
88
|
"dependencies": {
|
|
69
89
|
"@agentclientprotocol/sdk": "^0.25.0",
|
|
70
90
|
"@napi-rs/canvas": "0.1.100",
|
|
71
|
-
"@xiaozhiclaw/pet-core": "0.1.
|
|
72
|
-
"@xiaozhiclaw/provider-core": "0.1.
|
|
91
|
+
"@xiaozhiclaw/pet-core": "0.1.1",
|
|
92
|
+
"@xiaozhiclaw/provider-core": "0.1.7",
|
|
73
93
|
"better-sqlite3": "^12.10.0",
|
|
74
94
|
"dotenv": "^17.3.1",
|
|
75
95
|
"nanoid": "^5.1.5",
|
|
@@ -84,25 +104,5 @@
|
|
|
84
104
|
"tsx": "^4.19.0",
|
|
85
105
|
"typescript": "^5.9.0",
|
|
86
106
|
"vitest": "^3.1.0"
|
|
87
|
-
},
|
|
88
|
-
"scripts": {
|
|
89
|
-
"dev": "tsx watch src/index.ts",
|
|
90
|
-
"build": "node scripts/build.mjs",
|
|
91
|
-
"build:tsc": "tsc --noCheck",
|
|
92
|
-
"start": "node dist/cli.js",
|
|
93
|
-
"test": "vitest run",
|
|
94
|
-
"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",
|
|
95
|
-
"test:watch": "vitest",
|
|
96
|
-
"lint": "oxlint .",
|
|
97
|
-
"check:architecture-boundaries": "node scripts/check-architecture-boundaries.mjs",
|
|
98
|
-
"check:provider-core-boundary": "node scripts/check-provider-core-boundary.mjs",
|
|
99
|
-
"check:pet-core-boundary": "node scripts/check-pet-core-boundary.mjs",
|
|
100
|
-
"check:workspace-hygiene": "node scripts/check-workspace-hygiene.mjs",
|
|
101
|
-
"check:workspace-hygiene:strict": "node scripts/check-workspace-hygiene.mjs --strict",
|
|
102
|
-
"check:package-artifact": "npm run build && node scripts/check-package-artifact.mjs",
|
|
103
|
-
"redteam:community-desensitization": "tsx src/runtime/community/community-desensitization-red-team-cli.ts",
|
|
104
|
-
"redteam:community-sandbox": "tsx src/skills/permissions/community-sandbox-red-team-cli.ts",
|
|
105
|
-
"clean:workspace-hygiene": "node scripts/clean-workspace-hygiene.mjs",
|
|
106
|
-
"release": "node scripts/release.mjs"
|
|
107
107
|
}
|
|
108
|
-
}
|
|
108
|
+
}
|