@aiready/cli 0.15.5 → 0.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/dist/cli.js +1 -1
- package/dist/cli.mjs +1 -1
- package/package.json +7 -7
package/dist/cli.js
CHANGED
|
@@ -1812,7 +1812,7 @@ Or specify a custom report:
|
|
|
1812
1812
|
const envVisualizerConfig = JSON.stringify(graphConfig);
|
|
1813
1813
|
process.env.AIREADY_VISUALIZER_CONFIG = envVisualizerConfig;
|
|
1814
1814
|
console.log("Building graph from report...");
|
|
1815
|
-
const { GraphBuilder } = await import("@aiready/visualizer
|
|
1815
|
+
const { GraphBuilder } = await import("@aiready/visualizer");
|
|
1816
1816
|
const graph = GraphBuilder.buildFromReport(report, dirPath);
|
|
1817
1817
|
let useDevMode = options.dev ?? false;
|
|
1818
1818
|
let devServerStarted = false;
|
package/dist/cli.mjs
CHANGED
|
@@ -1521,7 +1521,7 @@ Or specify a custom report:
|
|
|
1521
1521
|
const envVisualizerConfig = JSON.stringify(graphConfig);
|
|
1522
1522
|
process.env.AIREADY_VISUALIZER_CONFIG = envVisualizerConfig;
|
|
1523
1523
|
console.log("Building graph from report...");
|
|
1524
|
-
const { GraphBuilder } = await import("@aiready/visualizer
|
|
1524
|
+
const { GraphBuilder } = await import("@aiready/visualizer");
|
|
1525
1525
|
const graph = GraphBuilder.buildFromReport(report, dirPath);
|
|
1526
1526
|
let useDevMode = options.dev ?? false;
|
|
1527
1527
|
let devServerStarted = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/cli",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.6",
|
|
4
4
|
"description": "The unified CLI for Agentic Readiness. Optimize codebases for AI agents like Cursor, Windsurf, and Claude. Detect semantic duplicates, analyze context fragmentation, and improve agentic leverage.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"chalk": "^5.3.0",
|
|
26
26
|
"commander": "^14.0.0",
|
|
27
27
|
"@aiready/agent-grounding": "0.14.5",
|
|
28
|
-
"@aiready/core": "0.24.5",
|
|
29
|
-
"@aiready/context-analyzer": "0.22.5",
|
|
30
28
|
"@aiready/consistency": "0.21.5",
|
|
29
|
+
"@aiready/context-analyzer": "0.22.5",
|
|
31
30
|
"@aiready/deps": "0.14.5",
|
|
31
|
+
"@aiready/core": "0.24.5",
|
|
32
32
|
"@aiready/doc-drift": "0.14.5",
|
|
33
|
-
"@aiready/contract-enforcement": "0.2.5",
|
|
34
33
|
"@aiready/change-amplification": "0.14.5",
|
|
35
|
-
"@aiready/ai-signal-clarity": "0.14.5",
|
|
36
|
-
"@aiready/testability": "0.7.5",
|
|
37
34
|
"@aiready/pattern-detect": "0.17.5",
|
|
38
|
-
"@aiready/
|
|
35
|
+
"@aiready/ai-signal-clarity": "0.14.7",
|
|
36
|
+
"@aiready/testability": "0.7.5",
|
|
37
|
+
"@aiready/visualizer": "0.7.5",
|
|
38
|
+
"@aiready/contract-enforcement": "0.2.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/node": "^24.0.0",
|