codeharness 0.24.3 → 0.25.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/index.js +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2437,7 +2437,7 @@ function generateDockerfileTemplate(projectDir, stackOrDetections) {
|
|
|
2437
2437
|
}
|
|
2438
2438
|
|
|
2439
2439
|
// src/modules/infra/init-project.ts
|
|
2440
|
-
var HARNESS_VERSION = true ? "0.
|
|
2440
|
+
var HARNESS_VERSION = true ? "0.25.1" : "0.0.0-dev";
|
|
2441
2441
|
function failResult(opts, error) {
|
|
2442
2442
|
return {
|
|
2443
2443
|
status: "fail",
|
|
@@ -3885,8 +3885,13 @@ function getSprintState() {
|
|
|
3885
3885
|
const parsed = JSON.parse(raw);
|
|
3886
3886
|
const defaults = defaultState();
|
|
3887
3887
|
const run = parsed.run;
|
|
3888
|
+
const sprint = parsed.sprint;
|
|
3888
3889
|
const state = {
|
|
3889
3890
|
...parsed,
|
|
3891
|
+
sprint: {
|
|
3892
|
+
...defaults.sprint,
|
|
3893
|
+
...sprint
|
|
3894
|
+
},
|
|
3890
3895
|
run: {
|
|
3891
3896
|
...defaults.run,
|
|
3892
3897
|
...run
|
|
@@ -11635,7 +11640,7 @@ function registerAuditCommand(program) {
|
|
|
11635
11640
|
}
|
|
11636
11641
|
|
|
11637
11642
|
// src/index.ts
|
|
11638
|
-
var VERSION = true ? "0.
|
|
11643
|
+
var VERSION = true ? "0.25.1" : "0.0.0-dev";
|
|
11639
11644
|
function createProgram() {
|
|
11640
11645
|
const program = new Command();
|
|
11641
11646
|
program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
|