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
feat(cli): install-hooks --classifier-command flag (v0.2.5)
0.2.4 shipped TJ_CLASSIFIER_CLI but expected users to set it via
~/.bashrc, which Claude Code never sources for hook subprocesses.
Move the wiring into install-hooks so the same command that writes
the hook entries also writes env.TJ_CLASSIFIER_CLI to settings.json.
Behavior:
- `task-journal install-hooks --classifier-command "aimux run dt"`
→ adds env.TJ_CLASSIFIER_CLI=aimux run dt to settings.json
- flag omitted → no env block touched (default classifier = bare claude)
- --uninstall removes TJ_CLASSIFIER_CLI; preserves unrelated env keys;
drops env block if it becomes empty
3 new integration tests cover the flag, the no-flag default, and
uninstall preservation. Closes claude-memory-tvx.
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.4",
3
+
"version": "0.2.5",
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.4",
3
+
"version": "0.2.5",
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