npx claudepluginhub lyzr-cognis/claude-cognis --plugin claude-cognisDefined in hooks/hooks.json
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/summary-hook.cjs\"",
"timeout": 30
}
]
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/context-hook.cjs\"",
"timeout": 30
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/prompt-hook.cjs\"",
"timeout": 10
}
]
}
]
}"Runs Carta shell scripts on lifecycle events: checks dependencies on SessionStart, processes prompts on UserPromptSubmit, executes stop hook on Stop. No file writes."