@gethmy/agent 1.0.8 → 1.0.9

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.
@@ -93,7 +93,8 @@ describe("ProgressTracker", () => {
93
93
  // Unknown tool with no special description logic
94
94
  parser.emitToolStart("SomeObscureUnknownTool", {});
95
95
  const buf = getPrivate(tracker).logBuffer;
96
- const entry = buf.find((e) => e.eventType === "tool_start" && e.toolName === "SomeObscureUnknownTool");
96
+ const entry = buf.find((e) => e.eventType === "tool_start" &&
97
+ e.toolName === "SomeObscureUnknownTool");
97
98
  expect(entry).toBeUndefined();
98
99
  });
99
100
  });
@@ -402,7 +402,7 @@ export class ProgressTracker {
402
402
  }
403
403
  });
404
404
  }
405
- extractToolMetadata(name, input) {
405
+ extractToolMetadata(_name, input) {
406
406
  const meta = {};
407
407
  const fp = this.extractString(input, "file_path");
408
408
  if (fp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gethmy/agent",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Push-based agent daemon for Harmony — watches board assignments and spawns Claude CLI workers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",