Stats
Actions
Tags
From manolii-framework
Runs session-end self-checks, builds a skill graph, classifies user prompts, and orchestrates pre/post compact processing to maintain project health and context awareness. Uses bash and Python scripts.
7 events · 9 hooks
Safety signals detected in this hook configuration
Where this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
cd "${CLAUDE_PROJECT_DIR}" && bash "${CLAUDE_PLUGIN_ROOT}/scripts/session-stop-checklist.sh"5mscd "${CLAUDE_PROJECT_DIR}" && python3 "${CLAUDE_PLUGIN_ROOT}/scripts/system-self-check.py" > /dev/null 2>&1 && python3 "${CLAUDE_PLUGIN_ROOT}/scripts/build-skill-graph.py" > /dev/null 2>&1; _rc=$?; mkdir -p .ai/memory; echo "{\"timestamp\":\"$(date -u +%Y-%m-%dT%H:%M:%SZ)\",\"exit_code\":$_rc,\"event\":\"stop-hook-self-check\"}" >> .ai/memory/eval-failures.jsonl30mscd "${CLAUDE_PROJECT_DIR}" && bash "${CLAUDE_PLUGIN_ROOT}/hooks/pre-compact.sh"30mscd "${CLAUDE_PROJECT_DIR}" && python3 "${CLAUDE_PLUGIN_ROOT}/scripts/pre-tool-use.py"5mscd "${CLAUDE_PROJECT_DIR}" && bash "${CLAUDE_PLUGIN_ROOT}/hooks/post-compact.sh"15mscd "${CLAUDE_PROJECT_DIR}" && python3 "${CLAUDE_PLUGIN_ROOT}/hooks/post-tool.py"30mscd "${CLAUDE_PROJECT_DIR}" && bash "${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh"30mscd "${CLAUDE_PROJECT_DIR}" && python3 "${CLAUDE_PLUGIN_ROOT}/scripts/classify-message.py"15mscd "${CLAUDE_PROJECT_DIR}" && python3 "${CLAUDE_PLUGIN_ROOT}/hooks/user-prompt.py"15msnpx claudepluginhub manolii-org/ai-starter-pack --plugin manolii-framework