codeharness 0.25.4 → 0.25.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.
@@ -3207,7 +3207,7 @@ function generateDockerfileTemplate(projectDir, stackOrDetections) {
3207
3207
  }
3208
3208
 
3209
3209
  // src/modules/infra/init-project.ts
3210
- var HARNESS_VERSION = true ? "0.25.4" : "0.0.0-dev";
3210
+ var HARNESS_VERSION = true ? "0.25.6" : "0.0.0-dev";
3211
3211
  function failResult(opts, error) {
3212
3212
  return {
3213
3213
  status: "fail",
@@ -16,7 +16,7 @@ import {
16
16
  stopCollectorOnly,
17
17
  stopSharedStack,
18
18
  stopStack
19
- } from "./chunk-NVY7K5NE.js";
19
+ } from "./chunk-6RL5EK57.js";
20
20
  export {
21
21
  checkRemoteEndpoint,
22
22
  cleanupOrphanedContainers,
package/dist/index.js CHANGED
@@ -51,7 +51,7 @@ import {
51
51
  validateDockerfile,
52
52
  warn,
53
53
  writeState
54
- } from "./chunk-NVY7K5NE.js";
54
+ } from "./chunk-6RL5EK57.js";
55
55
 
56
56
  // src/index.ts
57
57
  import { Command } from "commander";
@@ -589,9 +589,11 @@ function getSprintState() {
589
589
  ...defaults.observability,
590
590
  ...observability
591
591
  },
592
+ stories: parsed.stories ?? {},
592
593
  retries: parsed.retries ?? {},
593
594
  flagged: parsed.flagged ?? [],
594
- epics: parsed.epics ?? {}
595
+ epics: parsed.epics ?? {},
596
+ actionItems: parsed.actionItems ?? []
595
597
  };
596
598
  return ok2(state);
597
599
  }
@@ -1421,7 +1423,8 @@ function reconcileState2() {
1421
1423
  function readSprintStatusFromState() {
1422
1424
  const stateResult = getSprintState();
1423
1425
  if (!stateResult.success) return {};
1424
- return getStoryStatusesFromState(stateResult.data);
1426
+ const statuses = getStoryStatusesFromState(stateResult.data);
1427
+ return statuses;
1425
1428
  }
1426
1429
  function shouldDeferPhase2(phase, remainingMinutes) {
1427
1430
  return shouldDeferPhase(phase, remainingMinutes);
@@ -7529,7 +7532,7 @@ function registerTeardownCommand(program) {
7529
7532
  } else if (otlpMode === "remote-routed") {
7530
7533
  if (!options.keepDocker) {
7531
7534
  try {
7532
- const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-276E6ITK.js");
7535
+ const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-F4U5KY6M.js");
7533
7536
  stopCollectorOnly2();
7534
7537
  result.docker.stopped = true;
7535
7538
  if (!isJson) {
@@ -7561,7 +7564,7 @@ function registerTeardownCommand(program) {
7561
7564
  info("Shared stack: kept running (other projects may use it)");
7562
7565
  }
7563
7566
  } else if (isLegacyStack) {
7564
- const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-276E6ITK.js");
7567
+ const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-F4U5KY6M.js");
7565
7568
  let stackRunning = false;
7566
7569
  try {
7567
7570
  stackRunning = isStackRunning2(composeFile);
@@ -9460,7 +9463,7 @@ function registerAuditCommand(program) {
9460
9463
  }
9461
9464
 
9462
9465
  // src/index.ts
9463
- var VERSION = true ? "0.25.4" : "0.0.0-dev";
9466
+ var VERSION = true ? "0.25.6" : "0.0.0-dev";
9464
9467
  function createProgram() {
9465
9468
  const program = new Command();
9466
9469
  program.name("codeharness").description("Makes autonomous coding agents produce software that actually works").version(VERSION).option("--json", "Output in machine-readable JSON format");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeharness",
3
- "version": "0.25.4",
3
+ "version": "0.25.6",
4
4
  "type": "module",
5
5
  "description": "CLI for codeharness — makes autonomous coding agents produce software that actually works",
6
6
  "bin": {