coding-agent-harness 1.0.6 → 1.0.7
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.
|
@@ -127,9 +127,9 @@ function runMatrix(root, failures, commandMatrix) {
|
|
|
127
127
|
const distHarness = path.join(root, "dist/harness.mjs");
|
|
128
128
|
const matrix = [
|
|
129
129
|
{ id: "help", args: ["--help"] },
|
|
130
|
-
{ id: "status", args: ["status", "--json", "
|
|
131
|
-
{ id: "task-list", args: ["task-list", "--json", "
|
|
132
|
-
{ id: "preset-list", args: ["preset", "list", "--json", "
|
|
130
|
+
{ id: "status", args: ["status", "--json", "examples/minimal-project"] },
|
|
131
|
+
{ id: "task-list", args: ["task-list", "--json", "examples/minimal-project"] },
|
|
132
|
+
{ id: "preset-list", args: ["preset", "list", "--json", "examples/minimal-project"] },
|
|
133
133
|
{ id: "source-check", args: ["check", "--profile", "source-package", "."] },
|
|
134
134
|
{ id: "target-check", args: ["check", "--profile", "target-project", "examples/minimal-project"] },
|
|
135
135
|
{ id: "migrate-plan", args: ["migrate-plan", "--json", "--limit", "20", "examples/minimal-project"] },
|
|
@@ -272,9 +272,9 @@ function runInstalledPackageSmoke(root, failures, observations) {
|
|
|
272
272
|
function runInstalledMatrix(root, runtimeEnv, failures, steps) {
|
|
273
273
|
const matrix = [
|
|
274
274
|
{ id: "installed-help", cwd: root, args: ["--help"] },
|
|
275
|
-
{ id: "installed-status", cwd: root, args: ["status", "--json", "
|
|
276
|
-
{ id: "installed-task-list", cwd: root, args: ["task-list", "--json", "
|
|
277
|
-
{ id: "installed-preset-list", cwd: root, args: ["preset", "list", "--json", "
|
|
275
|
+
{ id: "installed-status", cwd: root, args: ["status", "--json", "examples/minimal-project"] },
|
|
276
|
+
{ id: "installed-task-list", cwd: root, args: ["task-list", "--json", "examples/minimal-project"] },
|
|
277
|
+
{ id: "installed-preset-list", cwd: root, args: ["preset", "list", "--json", "examples/minimal-project"] },
|
|
278
278
|
{ id: "installed-source-check", cwd: root, args: ["check", "--profile", "source-package", "."] },
|
|
279
279
|
{ id: "installed-target-check", cwd: root, args: ["check", "--profile", "target-project", "examples/minimal-project"] },
|
|
280
280
|
{ id: "installed-migrate-plan", cwd: root, args: ["migrate-plan", "--json", "--limit", "20", "examples/minimal-project"] },
|
|
@@ -571,8 +571,8 @@ function writeNpmScripts(target, { dryRun = true } = {}) {
|
|
|
571
571
|
const pkg = readJsonSafe(packagePath, {});
|
|
572
572
|
const scripts = { ...(pkg.scripts || {}) };
|
|
573
573
|
const additions = {
|
|
574
|
-
"harness:dev": "coding-agent-harness dev .",
|
|
575
|
-
"harness:dashboard": "coding-agent-harness dashboard --out-dir tmp/harness-dashboard .",
|
|
574
|
+
"harness:dev": "npx --yes coding-agent-harness dev .",
|
|
575
|
+
"harness:dashboard": "npx --yes coding-agent-harness dashboard --out-dir tmp/harness-dashboard .",
|
|
576
576
|
};
|
|
577
577
|
let changed = false;
|
|
578
578
|
const scriptChanges = [];
|