-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.skill-path.json
More file actions
60 lines (60 loc) · 1.61 KB
/
Copy pathsettings.skill-path.json
File metadata and controls
60 lines (60 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"//": "Alternative agent-sync settings that call the skill's bundled launcher directly instead of relying on the `agent-sync` console script being on PATH. Useful when the package is not pip-installed but importable via PYTHONPATH. The PreToolUse hook is the one that actually blocks conflicting edits (exit code 2); the others are optional but recommended.",
"hooks": {
"PreToolUse": [
{
"matcher": "Edit|Write|MultiEdit",
"hooks": [
{
"type": "command",
"command": "python .claude/skills/agent-sync/scripts/agent-sync hook pre-tool-use"
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write|MultiEdit",
"hooks": [
{
"type": "command",
"command": "python .claude/skills/agent-sync/scripts/agent-sync hook post-tool-use"
}
]
}
],
"SessionStart": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "python .claude/skills/agent-sync/scripts/agent-sync hook session-start"
}
]
}
],
"UserPromptSubmit": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "python .claude/skills/agent-sync/scripts/agent-sync hook user-prompt-submit"
}
]
}
],
"Stop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "python .claude/skills/agent-sync/scripts/agent-sync hook stop"
}
]
}
]
}
}