chore: enable entire

This commit is contained in:
Jan De Dobbeleer
2026-07-10 16:43:37 +02:00
committed by Jan De Dobbeleer
parent 1bea10b577
commit db0f98c034
3 changed files with 70 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
tmp/
settings.local.json
metadata/
logs/
redactors/local/
+4
View File
@@ -0,0 +1,4 @@
{
"enabled": true,
"telemetry": true
}
+61
View File
@@ -0,0 +1,61 @@
{
"hooks": {
"agentStop": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli agent-stop'",
"comment": "Entire CLI"
}
],
"errorOccurred": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli error-occurred'",
"comment": "Entire CLI"
}
],
"postToolUse": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli post-tool-use'",
"comment": "Entire CLI"
}
],
"preToolUse": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli pre-tool-use'",
"comment": "Entire CLI"
}
],
"sessionEnd": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli session-end'",
"comment": "Entire CLI"
}
],
"sessionStart": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli session-start'",
"comment": "Entire CLI"
}
],
"subagentStop": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli subagent-stop'",
"comment": "Entire CLI"
}
],
"userPromptSubmitted": [
{
"type": "command",
"bash": "sh -c 'if ! command -v entire >/dev/null 2>&1; then exit 0; fi; exec entire hooks copilot-cli user-prompt-submitted'",
"comment": "Entire CLI"
}
]
},
"version": 1
}