mirror of
https://github.com/kochetkov-ma/claude-brewcode.git
synced 2026-09-14 20:16:41 +08:00
ea944a32fe
- 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)
30 lines
643 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|