@synchronized-studio/cmsassets-agent 0.2.0 → 0.2.1
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/aiReview-WD5QPIHJ.js +9 -0
- package/dist/chunk-HYSTWSLW.js +411 -0
- package/dist/chunk-MW74S44G.js +1073 -0
- package/dist/chunk-XHL55FTA.js +1745 -0
- package/dist/cli.js +5 -5
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -9,8 +9,8 @@ import {
|
|
|
9
9
|
saveReport,
|
|
10
10
|
scan,
|
|
11
11
|
verify
|
|
12
|
-
} from "./chunk-
|
|
13
|
-
import "./chunk-
|
|
12
|
+
} from "./chunk-XHL55FTA.js";
|
|
13
|
+
import "./chunk-MW74S44G.js";
|
|
14
14
|
import "./chunk-E74TGIFQ.js";
|
|
15
15
|
import "./chunk-QGM4M3NI.js";
|
|
16
16
|
|
|
@@ -270,7 +270,7 @@ var initCommand = defineCommand({
|
|
|
270
270
|
consola2.log(pc.bold(" CMS Assets Agent \u2014 AI Verification"));
|
|
271
271
|
consola2.log(pc.dim(" \u2500".repeat(25)));
|
|
272
272
|
consola2.log("");
|
|
273
|
-
const { aiReviewAll } = await import("./aiReview-
|
|
273
|
+
const { aiReviewAll } = await import("./aiReview-WD5QPIHJ.js");
|
|
274
274
|
aiReviewReport = await aiReviewAll(root, appliedPaths, plan, {
|
|
275
275
|
model: args["ai-model"] ?? "gpt-4o",
|
|
276
276
|
maxIterations: parseInt(args["ai-max-iterations"] ?? "3", 10)
|
|
@@ -692,7 +692,7 @@ var applyCommand = defineCommand4({
|
|
|
692
692
|
consola5.log(pc4.bold(" CMS Assets Agent \u2014 AI Verification"));
|
|
693
693
|
consola5.log(pc4.dim(" \u2500".repeat(25)));
|
|
694
694
|
consola5.log("");
|
|
695
|
-
const { aiReviewAll } = await import("./aiReview-
|
|
695
|
+
const { aiReviewAll } = await import("./aiReview-WD5QPIHJ.js");
|
|
696
696
|
aiReviewReport = await aiReviewAll(root, appliedPaths, plan, {
|
|
697
697
|
model: args["ai-model"] ?? "gpt-4o",
|
|
698
698
|
maxIterations: parseInt(args["ai-max-iterations"] ?? "3", 10)
|
|
@@ -1020,7 +1020,7 @@ var rollbackCommand = defineCommand7({
|
|
|
1020
1020
|
var main = defineCommand8({
|
|
1021
1021
|
meta: {
|
|
1022
1022
|
name: "cmsassets-agent",
|
|
1023
|
-
version: "0.1
|
|
1023
|
+
version: "0.2.1",
|
|
1024
1024
|
description: "Auto-integrate @synchronized-studio/response-transformer into any JS/TS project."
|
|
1025
1025
|
},
|
|
1026
1026
|
subCommands: {
|
package/dist/index.js
CHANGED
|
@@ -25,11 +25,11 @@ import {
|
|
|
25
25
|
saveReport,
|
|
26
26
|
scan,
|
|
27
27
|
verify
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-XHL55FTA.js";
|
|
29
29
|
import {
|
|
30
30
|
aiReviewAll
|
|
31
|
-
} from "./chunk-
|
|
32
|
-
import "./chunk-
|
|
31
|
+
} from "./chunk-HYSTWSLW.js";
|
|
32
|
+
import "./chunk-MW74S44G.js";
|
|
33
33
|
import "./chunk-E74TGIFQ.js";
|
|
34
34
|
import "./chunk-QGM4M3NI.js";
|
|
35
35
|
|
package/package.json
CHANGED