mini-coder 0.0.9 → 0.0.10

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.
Files changed (3) hide show
  1. package/dist/mc.js +3203 -2855
  2. package/hanging-bug.md +1 -0
  3. package/package.json +1 -1
package/hanging-bug.md CHANGED
@@ -69,6 +69,7 @@ So this is now proven in your codepath:
69
69
  * When a command times out, `proc.kill("SIGTERM")` only kills the parent process (e.g., `bash`). Any child processes (e.g., `bun`) become orphaned but stay alive, holding the write end of the `stdout`/`stderr` pipes open.
70
70
  * Because the pipe never closes, `await reader.read()` inside `collectStream()` hangs indefinitely.
71
71
  * Because `collectStream()` never resolves, the tool execution never finishes, `tool-result` is never yielded, and the stream goes completely silent while the spinner stays stuck on "shell".
72
+ - **FIXED**
72
73
 
73
74
  ### Root Cause 2: Hangs spinning on `"thinking"`
74
75
  **Proof in code:** `src/llm-api/turn.ts`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mini-coder",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "A small, fast CLI coding agent",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",