qlogicagent 2.15.4 → 2.15.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qlogicagent",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.6",
|
|
4
4
|
"description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"dev": "tsx watch src/index.ts",
|
|
67
67
|
"build": "node scripts/build.mjs",
|
|
68
68
|
"build:tsc": "tsc --noCheck",
|
|
69
|
+
"build:search-svc": "node scripts/build-search-svc.mjs",
|
|
69
70
|
"start": "node dist/cli.js",
|
|
70
71
|
"test": "vitest run",
|
|
71
72
|
"check": "tsc --noEmit && pnpm test && pnpm run check:architecture-boundaries && pnpm run check:provider-core-boundary && pnpm run check:provider-core-release-sync && pnpm run check:pet-core-boundary && pnpm run check:workspace-hygiene && pnpm run check:package-artifact",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function persistPermissionUpdateToSettings(_update: unknown, _settingsPath?: string): void;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { SkillFsDeps, SkillPathDeps, SkillScanFinding, SkillScanOptions, SkillScanSummary } from "./skill-types.js";
|
|
2
|
-
/**
|
|
3
|
-
* Scan a source string for security findings.
|
|
4
|
-
* This is a pure function — no file I/O.
|
|
5
|
-
*/
|
|
6
|
-
export declare function scanSource(source: string, filePath: string): SkillScanFinding[];
|
|
7
|
-
export interface SkillGuardDeps {
|
|
8
|
-
fs: SkillFsDeps;
|
|
9
|
-
path: SkillPathDeps;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Scan an entire skill directory for security issues.
|
|
13
|
-
* Returns a summary with per-file findings.
|
|
14
|
-
*/
|
|
15
|
-
export declare function scanSkillDirectory(deps: SkillGuardDeps, skillDir: string, opts?: SkillScanOptions): Promise<SkillScanSummary>;
|
|
16
|
-
/**
|
|
17
|
-
* Quick check: does this source have any critical findings?
|
|
18
|
-
*/
|
|
19
|
-
export declare function hasCriticalFindings(source: string, filePath: string): boolean;
|
|
20
|
-
/**
|
|
21
|
-
* Check if a file extension is scannable by the guard.
|
|
22
|
-
*/
|
|
23
|
-
export declare function isScannable(filePath: string, pathDeps: SkillPathDeps): boolean;
|