You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(classifier): strip wrapper prelude before JSON envelope (v0.2.10)
aimux and similar orchestrators prepend status lines to stdout before
forwarding claude's --output-format=json envelope. v0.2.9 still fed
the entire stdout to serde_json, which choked on:
Auto-sync: 0 created, 0 repaired, 1 conflicts
{"type":"result", ...}
and routed every classified event into pending/ even though the
classifier itself succeeded.
Fix anchors the parse at the first `{` in stdout. Unit test
classifier_strips_wrapper_prelude_before_envelope drives a fake
shim that emits a prelude line followed by a real envelope.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
"description": "Append-only journal of AI-coding task reasoning chains. Captures hypotheses, decisions, rejections, evidence — renders compact resume packs so an agent can pick up a 2-week-old task with full context.",
Copy file name to clipboardExpand all lines: plugin/.claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "task-journal",
3
-
"version": "0.2.9",
3
+
"version": "0.2.10",
4
4
"description": "Append-only journal of AI-coding task reasoning chains: hypotheses, decisions, rejections, evidence. Renders compact resume packs so an agent can pick up a 2-week-old task with full context.",
Copy file name to clipboardExpand all lines: plugin/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "task-journal",
3
-
"version": "0.2.9",
3
+
"version": "0.2.10",
4
4
"description": "Append-only journal of AI-coding task reasoning chains. Captures hypotheses, decisions, rejections, evidence — renders compact resume packs so an agent can pick up a 2-week-old task with full context.",
0 commit comments