codeharness 0.26.2 → 0.26.3

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.26.2" : "0.0.0-dev";
3210
+ var HARNESS_VERSION = true ? "0.26.3" : "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-2JALXFWQ.js";
19
+ } from "./chunk-NYZZCLQG.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-2JALXFWQ.js";
54
+ } from "./chunk-NYZZCLQG.js";
55
55
 
56
56
  // src/index.ts
57
57
  import { Command } from "commander";
@@ -2466,7 +2466,7 @@ var RalphDriver = class {
2466
2466
  case "result":
2467
2467
  return { type: "result", cost: streamEvent.cost, sessionId: streamEvent.sessionId };
2468
2468
  case "tool-input":
2469
- return null;
2469
+ return { type: "tool-input", partial: streamEvent.partial };
2470
2470
  }
2471
2471
  }
2472
2472
  return null;
@@ -2551,6 +2551,7 @@ function resolvePluginDir() {
2551
2551
  function handleAgentEvent(event, rendererHandle, state) {
2552
2552
  switch (event.type) {
2553
2553
  case "tool-start":
2554
+ case "tool-input":
2554
2555
  case "tool-complete":
2555
2556
  case "text":
2556
2557
  case "result":
@@ -7587,7 +7588,7 @@ function registerTeardownCommand(program) {
7587
7588
  } else if (otlpMode === "remote-routed") {
7588
7589
  if (!options.keepDocker) {
7589
7590
  try {
7590
- const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-VL7OJRRC.js");
7591
+ const { stopCollectorOnly: stopCollectorOnly2 } = await import("./docker-GG765ZJT.js");
7591
7592
  stopCollectorOnly2();
7592
7593
  result.docker.stopped = true;
7593
7594
  if (!isJson) {
@@ -7619,7 +7620,7 @@ function registerTeardownCommand(program) {
7619
7620
  info("Shared stack: kept running (other projects may use it)");
7620
7621
  }
7621
7622
  } else if (isLegacyStack) {
7622
- const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-VL7OJRRC.js");
7623
+ const { isStackRunning: isStackRunning2, stopStack } = await import("./docker-GG765ZJT.js");
7623
7624
  let stackRunning = false;
7624
7625
  try {
7625
7626
  stackRunning = isStackRunning2(composeFile);
@@ -9726,7 +9727,7 @@ function registerStatsCommand(program) {
9726
9727
  }
9727
9728
 
9728
9729
  // src/index.ts
9729
- var VERSION = true ? "0.26.2" : "0.0.0-dev";
9730
+ var VERSION = true ? "0.26.3" : "0.0.0-dev";
9730
9731
  function createProgram() {
9731
9732
  const program = new Command();
9732
9733
  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.26.2",
3
+ "version": "0.26.3",
4
4
  "type": "module",
5
5
  "description": "CLI for codeharness — makes autonomous coding agents produce software that actually works",
6
6
  "bin": {