Files
rohitg00__agentmemory/plugin/cursor/hooks.json
Rohit Ghumare 37ea1b99ad feat: cursor marketplace plugin with hooks, mcp, and skills (#1213)
* feat: cursor marketplace plugin with native hooks and mcp config

* fix: cursor payload compat and transcript prompt backfill in hooks

* fix: plugin-root hook paths, backfill ordering, session-id fallbacks

* docs: cursor plugin rows in readme, translations, and changelog

* fix: cursor native-plugin card, broken agent logos

* chore: sync openclaw and hermes plugin manifest versions

* docs: openclaw hook permission and hermes tool count

* chore: clawhub compat metadata for openclaw plugin

* docs: tested openclaw and hermes install rows in readme
2026-08-16 13:30:40 +01:00

42 lines
953 B
JSON

{
"version": 1,
"hooks": {
"sessionStart": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/session-start.mjs"
}
],
"beforeSubmitPrompt": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/prompt-submit.mjs"
}
],
"preToolUse": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/pre-tool-use.mjs",
"matcher": "Shell|Read|Write|Grep"
}
],
"postToolUse": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/post-tool-use.mjs"
}
],
"postToolUseFailure": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/post-tool-failure.mjs"
}
],
"stop": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/stop.mjs"
}
],
"sessionEnd": [
{
"command": "node ${CURSOR_PLUGIN_ROOT}/plugin/scripts/session-end.mjs"
}
]
}
}