-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
80 lines (80 loc) · 2.7 KB
/
settings.json
File metadata and controls
80 lines (80 loc) · 2.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"env": {
"ENABLE_TOOL_SEARCH": "true",
"ENABLE_EXPERIMENTAL_MCP_CLI": "false"
},
"enabledPlugins": {
"agent-sdk-dev@claude-code-plugins": true,
"context7-plugin@context7-marketplace": true,
"document-skills@anthropic-agent-skills": true,
"example-skills@anthropic-agent-skills": true,
"explanatory-output-style@claude-code-plugins": true,
"feature-dev@claude-code-plugins": true,
"frontend-design@claude-code-plugins": true,
"learning-output-style@claude-code-plugins": true,
"playwright-cli@playwright-cli": true,
"prompts.chat@prompts.chat": true,
"ralph-wiggum@claude-code-plugins": true,
"security-guidance@claude-code-plugins": true,
"code-review@claude-code-plugins": true,
"claude-opus-4-5-migration@claude-code-plugins": true,
"superpowers@superpowers-marketplace": true,
"double-shot-latte@superpowers-marketplace": true,
"elements-of-style@superpowers-marketplace": true,
"episodic-memory@superpowers-marketplace": true,
"figma@claude-plugins-official": true,
"github@claude-plugins-official": true,
"typescript-lsp@claude-plugins-official": true,
"linear@claude-plugins-official": true,
"vercel@claude-plugins-official": true,
"swift-lsp@claude-plugins-official": true,
"posthog@claude-plugins-official": true,
"stripe@claude-plugins-official": true
},
"hooks": {
"UserPromptSubmit": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "sh -c \"open -g 'agentwatch://hook?type=prompt-submit&pid=$PPID&pwd=$(pwd | sed 's/ /%20/g')'\""
}
]
}
],
"PreToolUse": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "sh -c \"TOOL_NAME=$(python3 -c 'import sys, json; data = json.load(sys.stdin); print(data.get(\\\"tool_name\\\", \\\"Unknown\\\"))'); open -g \\\"agentwatch://hook?type=tool-start&pid=$PPID&tool=$(echo \\\"$TOOL_NAME\\\" | sed 's/ /%20/g')\\\"\""
}
]
}
],
"PostToolUse": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "sh -c \"TOOL_NAME=$(python3 -c 'import sys, json; data = json.load(sys.stdin); print(data.get(\\\"tool_name\\\", \\\"Unknown\\\"))'); open -g \\\"agentwatch://hook?type=tool-complete&pid=$PPID&tool=$(echo \\\"$TOOL_NAME\\\" | sed 's/ /%20/g')\\\"\""
}
]
}
],
"Stop": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "sh -c \"open -g 'agentwatch://hook?type=session-stop&pid=$PPID'\""
}
]
}
]
}
}