acidtest 0.2.1 → 0.2.2
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/index.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/dist/scanner.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { reportToTerminal, reportAsJSON } from "./reporter.js";
|
|
|
8
8
|
import { join, dirname } from "path";
|
|
9
9
|
import { fileURLToPath } from "url";
|
|
10
10
|
import { spawn } from "child_process";
|
|
11
|
-
const VERSION = "0.2.
|
|
11
|
+
const VERSION = "0.2.2";
|
|
12
12
|
/**
|
|
13
13
|
* Main CLI function
|
|
14
14
|
*/
|
package/dist/mcp-server.js
CHANGED
|
@@ -7,7 +7,7 @@ import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
|
7
7
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
8
8
|
import { CallToolRequestSchema, ListToolsRequestSchema, } from "@modelcontextprotocol/sdk/types.js";
|
|
9
9
|
import { scanSkill, scanAllSkills } from "./scanner.js";
|
|
10
|
-
const VERSION = "0.2.
|
|
10
|
+
const VERSION = "0.2.2";
|
|
11
11
|
/**
|
|
12
12
|
* Create and configure the MCP server
|
|
13
13
|
*/
|
package/dist/scanner.js
CHANGED
|
@@ -12,7 +12,7 @@ import { scanCode } from "./layers/code.js";
|
|
|
12
12
|
import { scanCrossReference } from "./layers/crossref.js";
|
|
13
13
|
import { calculateScore, determineStatus, generateRecommendation, } from "./scoring.js";
|
|
14
14
|
import { detectMCPManifest, parseMCPManifest } from "./loaders/mcp-loader.js";
|
|
15
|
-
const VERSION = "0.2.
|
|
15
|
+
const VERSION = "0.2.2";
|
|
16
16
|
/**
|
|
17
17
|
* Main scan function
|
|
18
18
|
* Scans a skill directory or SKILL.md file
|