chore: add Entire agent config (#402)

Entire-Checkpoint: 69bf47d06770
This commit is contained in:
KM Koushik
2026-05-18 10:38:23 +10:00
committed by GitHub
parent 04d0f4b123
commit dad2941971
9 changed files with 439 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
"hooks": {
"beforeSubmitPrompt": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor before-submit-prompt'"
}
],
"preCompact": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor pre-compact'"
}
],
"sessionEnd": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor session-end'"
}
],
"sessionStart": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor session-start'"
}
],
"stop": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor stop'"
}
],
"subagentStart": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor subagent-start'"
}
],
"subagentStop": [
{
"command": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks cursor subagent-stop'"
}
]
},
"version": 1
}