-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsettings.json
More file actions
52 lines (52 loc) · 1.31 KB
/
settings.json
File metadata and controls
52 lines (52 loc) · 1.31 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
{
"permissions": {
"allow": [
"Edit(\\.md)",
"Read({{CLAUDE_HOME_PATH}}/.claude/**)",
"mcp__abcoder",
"mcp__sequential-thinking"
]
},
"hooks": {
"PreToolUse": [
{
"matcher": "mcp__abcoder__list_repos|mcp__abcoder__get_repo_structure|mcp__abcoder__get_file_structure|mcp__abcoder__get_package_structure|mcp__abcoder__get_ast_node",
"hooks": [
{
"type": "command",
"command": "{{CLAUDE_HOME_PATH}}/.claude/hooks/abcoder/parse.sh"
}
]
}
],
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "{{CLAUDE_HOME_PATH}}/.claude/hooks/abcoder/need_update.sh"
}
]
},
{
"matcher": "mcp__abcoder__list_repos",
"hooks": [
{
"type": "command",
"command": "{{CLAUDE_HOME_PATH}}/.claude/hooks/abcoder/prompt.sh"
}
]
},
{
"matcher": "mcp__abcoder__get_repo_structure|mcp__abcoder__get_package_structure|mcp__abcoder__get_file_structure",
"hooks": [
{
"type": "command",
"command": "{{CLAUDE_HOME_PATH}}/.claude/hooks/abcoder/reminder.sh"
}
]
}
]
}
}