v6.5.2
#17
Replies: 1 comment
-
|
I would recommend the following: Update the plugin using the instructions within the plugin's README.md file, close Claude Code/Cursor afterwards, go to your local claude folder, and delete the ".claude\plugins\cache" folder once you updated the plugin to it's latest version. This is safe to do because one you reopen Claude Code, it will recreate this ".claude\plugins\cache" folder removing all old version of the plugin you had. Hope this helps! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
v6.5.2 (2026-04-11) - minor patch update to fix #15, thank you @lovingcarevet and others for your patience and help! Hopefully it is all fixed now.
Stop hook reliability, session isolation, and subagent plan tracking improvements.
Fixes
Stats-only sessions no longer trigger stop-hook blocking — In v6.5.1, the stop hook would emit
decision: "block"even when the only available reminder was the informational session-stats summary (e.g., "6 min, 1 skill invocation"). Users saw "Stop hook error: Session summary: ..." after every turn in light sessions. The hook now checks for actionable reminders before blocking; stats-only sessions return{}silently.Edit log is now session-aware — no cross-session contamination — The shared
~/.claude/hooks-logs/edit-log.txtused a 3-field format (timestamp | tool | path) with no session identifier. Test sessions running viaclaude -psaw edits from the interactive session, triggering false-positive TDD and decision-log reminders inside headless test runs. The log format is now 4-field (timestamp | session_id | tool | path) andstop-reminders.jsfilters entries by the current session id, so each session only sees its own edits.Plan checkboxes now enforced after subagent-driven development — The subagent-driven-development skill previously marked tasks complete without updating the
- [ ]checkboxes inplan.md. The task-complete instruction now explicitly requires changing- [ ]to- [x]inplan.mdand syncingstate.mdif present, matching the intent of the plan-tracking system.State.md staleness detection added to stop hook — The stop hook now detects when
state.mdexists and contains plan status that appears out of date relative to recent edits (modified source files with no corresponding state update). Users see a targeted reminder to updatestate.mdrather than silently leaving it stale across sessions.Context-management resets the decision-log reminder marker — After saving context, the skill now writes a timestamp to
~/.claude/hooks-logs/last-saved-entry.txt. The stop hook uses this marker to suppress the "update your decision log" reminder immediately after a context-management save, preventing redundant reminders in the same turn.This discussion was created from the release v6.5.2.
Beta Was this translation helpful? Give feedback.
All reactions