npx claudepluginhub danielrosehill/claude-code-plugins --plugin claude-rudderDefined in hooks/hooks.json
Write|Editpython3 -c "import json,sys
d=json.load(sys.stdin)
fp=d.get('tool_input',{}).get('file_path','')
if any(p in fp for p in ('CONTEXT.md','context.md','CLAUDE.md','context-data/')):
print('Context file modified. Remember to keep CONTEXT.md (human context) and CLAUDE.md (agent briefing) synchronized. Use /context-to-claude or /claude-to-context if needed.')
" 2>/dev/null || truestartupif [ -f 'CONTEXT.md' ] || [ -f 'context.md' ]; then echo 'CONTEXT.md detected in this repository. This file contains detailed human-authored context about the project. Consider reading it for deeper understanding of the project vision and requirements.'; fi; if [ -d 'context-data' ]; then echo 'context-data/ directory detected. This repository uses chunked context files. Review context-data/README.md for the organization structure.'; fiRuns check-cli.sh on session start and version-skill-hint.sh after Edit/Write tools. Executes bash commands with file write access.
Share bugs, ideas, or general feedback.