-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhooks.json
More file actions
46 lines (46 loc) · 1.46 KB
/
Copy pathhooks.json
File metadata and controls
46 lines (46 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"hooks": {
"PreToolUse": [
{
"type": "command",
"command": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\scripts\\windows\\validate-tool.ps1\"",
"cwd": "${PLUGIN_ROOT}",
"timeout": 5
}
],
"SessionStart": [
{
"type": "command",
"command": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\scripts\\windows\\emit-commit-context.ps1\"",
"timeout": 10
}
],
"UserPromptSubmit": [
{
"type": "command",
"command": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\scripts\\windows\\inject-context-image-interpret.ps1\"",
"injectAsContext": true,
"timeout": 5
}
,
{
"type": "command",
"command": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\scripts\\windows\\inject-context-userinstructions.ps1\"",
"injectAsContext": true,
"timeout": 5
}
],
"PostToolUse": [
{
"type": "command",
"command": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\scripts\\windows\\report-tool-error.ps1\"",
"timeout": 5
},
{
"type": "command",
"command": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File \"${PLUGIN_ROOT}\\scripts\\windows\\emit-changes-digraph-node.ps1\"",
"timeout": 10
}
]
}
}