npx claudepluginhub inkeep/team-skills --plugin engDefined in hooks/hooks.json
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/ship-stop-hook.sh"
}
]
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"async": true,
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/ship-session-end.sh",
"timeout": 10
}
]
},
{
"hooks": [
{
"type": "command",
"async": true,
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/code-mode-cleanup.sh",
"timeout": 5
}
]
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/resolve-dirs.sh"
}
]
}
]
}"Loads session memory/context on SessionStart, saves on SessionEnd, and blocks Stop until coordination completes, using Python scripts for state persistence across sessions."