mirror of
https://github.com/rohitg00/agentmemory.git
synced 2026-09-14 20:16:33 +08:00
37ea1b99ad
* 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
42 lines
953 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|