@synchronized-studio/cmsassets-agent 0.5.0 → 0.6.0
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/CHANGELOG.md +49 -0
- package/dist/aiReview-HPR3RZ47.js +9 -0
- package/dist/chunk-3JFHRW5M.js +1944 -0
- package/dist/chunk-46ZF2OJF.js +2002 -0
- package/dist/chunk-GMERN6MA.js +492 -0
- package/dist/chunk-W7TNFULQ.js +1224 -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-46ZF2OJF.js";
|
|
13
|
+
import "./chunk-W7TNFULQ.js";
|
|
14
14
|
import "./chunk-E74TGIFQ.js";
|
|
15
15
|
import "./chunk-QGM4M3NI.js";
|
|
16
16
|
|
|
@@ -441,7 +441,7 @@ var initCommand = defineCommand({
|
|
|
441
441
|
consola3.log(pc.bold(" CMS Assets Agent \u2014 AI Verification"));
|
|
442
442
|
consola3.log(pc.dim(" \u2500".repeat(25)));
|
|
443
443
|
consola3.log("");
|
|
444
|
-
const { aiReviewAll } = await import("./aiReview-
|
|
444
|
+
const { aiReviewAll } = await import("./aiReview-HPR3RZ47.js");
|
|
445
445
|
aiReviewReport = await aiReviewAll(root, appliedPaths, plan, {
|
|
446
446
|
model: args["ai-model"] ?? "gpt-4o",
|
|
447
447
|
maxIterations: parseInt(args["ai-max-iterations"] ?? "3", 10)
|
|
@@ -893,7 +893,7 @@ var applyCommand = defineCommand4({
|
|
|
893
893
|
consola6.log(pc4.bold(" CMS Assets Agent \u2014 AI Verification"));
|
|
894
894
|
consola6.log(pc4.dim(" \u2500".repeat(25)));
|
|
895
895
|
consola6.log("");
|
|
896
|
-
const { aiReviewAll } = await import("./aiReview-
|
|
896
|
+
const { aiReviewAll } = await import("./aiReview-HPR3RZ47.js");
|
|
897
897
|
aiReviewReport = await aiReviewAll(root, appliedPaths, plan, {
|
|
898
898
|
model: args["ai-model"] ?? "gpt-4o",
|
|
899
899
|
maxIterations: parseInt(args["ai-max-iterations"] ?? "3", 10)
|
|
@@ -1231,7 +1231,7 @@ var rollbackCommand = defineCommand7({
|
|
|
1231
1231
|
var main = defineCommand8({
|
|
1232
1232
|
meta: {
|
|
1233
1233
|
name: "cmsassets-agent",
|
|
1234
|
-
version: "0.
|
|
1234
|
+
version: "0.6.0",
|
|
1235
1235
|
description: "Auto-integrate @synchronized-studio/response-transformer into any JS/TS project."
|
|
1236
1236
|
},
|
|
1237
1237
|
subCommands: {
|
package/dist/index.js
CHANGED
|
@@ -33,11 +33,11 @@ import {
|
|
|
33
33
|
saveReport,
|
|
34
34
|
scan,
|
|
35
35
|
verify
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-46ZF2OJF.js";
|
|
37
37
|
import {
|
|
38
38
|
aiReviewAll
|
|
39
|
-
} from "./chunk-
|
|
40
|
-
import "./chunk-
|
|
39
|
+
} from "./chunk-GMERN6MA.js";
|
|
40
|
+
import "./chunk-W7TNFULQ.js";
|
|
41
41
|
import "./chunk-E74TGIFQ.js";
|
|
42
42
|
import "./chunk-QGM4M3NI.js";
|
|
43
43
|
|
package/package.json
CHANGED