qlogicagent 2.19.5 → 2.19.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.
@@ -3,7 +3,6 @@ export { isEmptyToolResult } from "./tool-result-classification.js";
3
3
  export declare const OUTPUT_REQUEST_CONTEXT_PATTERN: RegExp;
4
4
  export declare function findLastToolError(messages: unknown[], _toolName: string): string | undefined;
5
5
  export declare function looksLikeBuildRequest(messages?: readonly ChatMessage[]): boolean;
6
- export declare function isBareIntentPreamble(text: string): boolean;
7
6
  export declare function isCapabilityDenial(text: string): boolean;
8
7
  export declare function resolveToolLoopBudget(requested?: number, messages?: readonly ChatMessage[]): number;
9
8
  export declare function countExplicitOutputArtifacts(messages?: readonly ChatMessage[]): number;
@@ -41,7 +41,7 @@ export interface AgentProviderCatalogEntryWire {
41
41
  category: "coding" | "assistant" | "custom";
42
42
  order: number;
43
43
  featured: boolean;
44
- installPolicy: "builtin" | "managed-package";
44
+ installPolicy: "builtin" | "managed-package" | "planned";
45
45
  distribution: {
46
46
  kind: "builtin";
47
47
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlogicagent",
3
- "version": "2.19.5",
3
+ "version": "2.19.6",
4
4
  "description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -118,33 +118,6 @@
118
118
  ]
119
119
  }
120
120
  },
121
- "engines": {
122
- "node": ">=22.0.0"
123
- },
124
- "dependencies": {
125
- "@agentclientprotocol/sdk": "^0.25.0",
126
- "@napi-rs/canvas": "0.1.100",
127
- "@xiaozhiclaw/pet-core": "0.1.3",
128
- "@xiaozhiclaw/provider-core": "^0.1.26",
129
- "better-sqlite3": "^12.10.0",
130
- "dotenv": "^17.3.1",
131
- "ioredis": "^5.11.1",
132
- "jsonrepair": "^3.14.0",
133
- "mcporter": "^0.12.0",
134
- "nanoid": "^5.1.5",
135
- "pino": "^9.6.0",
136
- "pino-pretty": "^13.0.0"
137
- },
138
- "devDependencies": {
139
- "@types/better-sqlite3": "^7.6.13",
140
- "@types/node": "^22.15.0",
141
- "esbuild": "^0.28.0",
142
- "javascript-obfuscator": "^5.4.3",
143
- "oxlint": "1.67.0",
144
- "tsx": "^4.19.0",
145
- "typescript": "^5.9.0",
146
- "vitest": "^3.1.0"
147
- },
148
121
  "scripts": {
149
122
  "dev": "tsx watch src/index.ts",
150
123
  "build": "node scripts/build.mjs",
@@ -177,5 +150,32 @@
177
150
  "redteam:community-desensitization": "tsx src/runtime/community/community-desensitization-red-team-cli.ts",
178
151
  "clean:workspace-hygiene": "node scripts/clean-workspace-hygiene.mjs",
179
152
  "release": "node scripts/release.mjs"
153
+ },
154
+ "engines": {
155
+ "node": ">=22.0.0"
156
+ },
157
+ "dependencies": {
158
+ "@agentclientprotocol/sdk": "^0.25.0",
159
+ "@napi-rs/canvas": "0.1.100",
160
+ "@xiaozhiclaw/pet-core": "0.1.3",
161
+ "@xiaozhiclaw/provider-core": "^0.1.26",
162
+ "better-sqlite3": "^12.10.0",
163
+ "dotenv": "^17.3.1",
164
+ "ioredis": "^5.11.1",
165
+ "jsonrepair": "^3.14.0",
166
+ "mcporter": "^0.12.0",
167
+ "nanoid": "^5.1.5",
168
+ "pino": "^9.6.0",
169
+ "pino-pretty": "^13.0.0"
170
+ },
171
+ "devDependencies": {
172
+ "@types/better-sqlite3": "^7.6.13",
173
+ "@types/node": "^22.15.0",
174
+ "esbuild": "^0.28.0",
175
+ "javascript-obfuscator": "^5.4.3",
176
+ "oxlint": "1.67.0",
177
+ "tsx": "^4.19.0",
178
+ "typescript": "^5.9.0",
179
+ "vitest": "^3.1.0"
180
180
  }
181
- }
181
+ }
@@ -1,8 +0,0 @@
1
- export interface PseudoToolOutputInput {
2
- text: string;
3
- enabledToolNames: readonly string[];
4
- }
5
- export interface PseudoToolOutputDetection {
6
- toolName: string;
7
- }
8
- export declare function detectPseudoToolOutput(input: PseudoToolOutputInput): PseudoToolOutputDetection | null;