docs: fix hook names and prompt tags in documentation

- Fix outdated hook names: prompt:before → experimental.chat.system.transform
- Fix outdated hook names: tool.execute.before → (removed, file tracking is in tool.execute.after)
- Fix outdated hook names: compaction:before → experimental.session.compacting
- Add missing event hook documentation
- Fix README example to show correct <hot_session_state> tag instead of <workspace_memory_candidates>
This commit is contained in:
Ralph Chang
2026-04-26 13:36:49 +08:00
parent 802ef62636
commit 606dcfac12
3 changed files with 24 additions and 22 deletions
+8 -6
View File
@@ -207,25 +207,27 @@ Delegate task tracking to OpenCode's native features.
The plugin hooks into OpenCode lifecycle events:
### `prompt:before`
### `experimental.chat.system.transform`
Injects workspace memory and hot session state into system prompt.
### `tool.execute.before`
Tracks active files (read, grep, edit, write actions).
### `tool.execute.after`
- Tracks active files (read, grep, edit, write actions)
- Tracks open errors from failed commands
- Clears errors when commands succeed
- Ignores `exitCode === undefined` (successful commands without explicit exit codes)
### `compaction:before`
### `experimental.session.compacting`
Extracts workspace memory candidates from conversation.
Applies quality gate, deduplication, and source priority.
### `event` (session.compacted, session.deleted)
- `session.compacted`: Promote session decisions to workspace memory
- `session.deleted`: Clean up session state files
## Quality Guarantees
### No False Positive Errors