Files
kochetkov-ma__claude-brewcode/.codex/plugins/brewcode/hooks/hooks.json
T
kochetkov-ma ea944a32fe v4.1.0: add /brewdoc:docsync doc-staleness tracker, remove auto-sync
- New /brewdoc:docsync skill: user-run generator installs project-local hooks
  (track/watch/gate) + config; tracks stale docs by last_updated date; modes
  init/status/sync/reread/frontmatter/uninstall; confirm-before-sync gate
- Removed auto-sync skill, bd-auto-sync-processor agent, auto-sync:* frontmatter
  tags (~44 files), and skill-creator template injection
- Docs updated at all levels (README, MDX, navigation, guide catalog, CLAUDE.md)
2026-07-19 13:16:50 +01:00

30 lines
643 B
JSON

{
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume|clear|compact",
"hooks": [
{
"type": "command",
"command": "node \"${PLUGIN_ROOT}/hooks/session-start.mjs\"",
"timeout": 3,
"statusMessage": "Loading Brewcode context"
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "node \"${PLUGIN_ROOT}/hooks/forced-eval.mjs\"",
"timeout": 2,
"statusMessage": "Checking Brewcode skills"
}
]
}
]
}
}