claude-code-autoconfig 1.0.186 → 1.0.188
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/docs/autoconfig.docs.html +2148 -2148
- package/.claude/settings.json +88 -88
- package/CHANGELOG.md +8 -6
- package/bin/cli.js +1013 -779
- package/package.json +49 -48
package/.claude/settings.json
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"CLAUDE_CODE_DISABLE_AUTO_MEMORY": "0"
|
|
4
|
-
},
|
|
5
|
-
"hooks": {
|
|
6
|
-
"SessionStart": [
|
|
7
|
-
{
|
|
8
|
-
"matcher": "",
|
|
9
|
-
"hooks": [
|
|
10
|
-
{
|
|
11
|
-
"type": "command",
|
|
12
|
-
"command": "node .claude/hooks/migrate-feedback.js"
|
|
13
|
-
}
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"PostToolUse": [
|
|
18
|
-
{
|
|
19
|
-
"matcher": "Edit|Write",
|
|
20
|
-
"hooks": [
|
|
21
|
-
{
|
|
22
|
-
"type": "command",
|
|
23
|
-
"command": "node .claude/hooks/feedback-rule-check.js"
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
"permissions": {
|
|
30
|
-
"allow": [
|
|
31
|
-
"Read(./**)",
|
|
32
|
-
"Edit(./**)",
|
|
33
|
-
"Write(./**)",
|
|
34
|
-
"Glob",
|
|
35
|
-
"Grep",
|
|
36
|
-
"WebSearch",
|
|
37
|
-
"WebFetch",
|
|
38
|
-
"Bash(npm test)",
|
|
39
|
-
"Bash(npm test *)",
|
|
40
|
-
"Bash(npm run dev)",
|
|
41
|
-
"Bash(npm run build)",
|
|
42
|
-
"Bash(npm run lint)",
|
|
43
|
-
"Bash(npm run lint:fix)",
|
|
44
|
-
"Bash(npm run typecheck)",
|
|
45
|
-
"Bash(npm run test)",
|
|
46
|
-
"Bash(npm run test:*)",
|
|
47
|
-
"Bash(npm run validate)",
|
|
48
|
-
"Bash(git status)",
|
|
49
|
-
"Bash(git status *)",
|
|
50
|
-
"Bash(git diff *)",
|
|
51
|
-
"Bash(git add *)",
|
|
52
|
-
"Bash(git commit *)",
|
|
53
|
-
"Bash(git push *)",
|
|
54
|
-
"Bash(git pull)",
|
|
55
|
-
"Bash(git pull *)",
|
|
56
|
-
"Bash(git checkout *)",
|
|
57
|
-
"Bash(git branch *)",
|
|
58
|
-
"Bash(node .claude/*)",
|
|
59
|
-
"Bash(python3 *)",
|
|
60
|
-
"Bash(npx claude-code-autoconfig*)",
|
|
61
|
-
"Bash(npm pack *)",
|
|
62
|
-
"Bash(tar *)",
|
|
63
|
-
"Bash(mktemp *)",
|
|
64
|
-
"Bash(find ./*)",
|
|
65
|
-
"Bash(ls *)",
|
|
66
|
-
"Bash(dir *)",
|
|
67
|
-
"Bash(mkdir *)",
|
|
68
|
-
"Bash(mkdir -p *)",
|
|
69
|
-
"Bash(start *)",
|
|
70
|
-
"Bash(start .claude *)",
|
|
71
|
-
"Bash(open *)",
|
|
72
|
-
"Bash(open .claude *)",
|
|
73
|
-
"Bash(xdg-open *)",
|
|
74
|
-
"Bash(xdg-open .claude *)"
|
|
75
|
-
],
|
|
76
|
-
"deny": [
|
|
77
|
-
"Read(./.env)",
|
|
78
|
-
"Read(./.env.*)",
|
|
79
|
-
"Read(./secrets/**)",
|
|
80
|
-
"Read(./**/credentials.*)",
|
|
81
|
-
"Read(./**/*.pem)",
|
|
82
|
-
"Read(./**/*.key)",
|
|
83
|
-
"Bash(rm -rf *)",
|
|
84
|
-
"Bash(curl *)",
|
|
85
|
-
"Bash(wget *)"
|
|
86
|
-
]
|
|
87
|
-
}
|
|
88
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"CLAUDE_CODE_DISABLE_AUTO_MEMORY": "0"
|
|
4
|
+
},
|
|
5
|
+
"hooks": {
|
|
6
|
+
"SessionStart": [
|
|
7
|
+
{
|
|
8
|
+
"matcher": "",
|
|
9
|
+
"hooks": [
|
|
10
|
+
{
|
|
11
|
+
"type": "command",
|
|
12
|
+
"command": "node .claude/hooks/migrate-feedback.js"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"PostToolUse": [
|
|
18
|
+
{
|
|
19
|
+
"matcher": "Edit|Write",
|
|
20
|
+
"hooks": [
|
|
21
|
+
{
|
|
22
|
+
"type": "command",
|
|
23
|
+
"command": "node .claude/hooks/feedback-rule-check.js"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"permissions": {
|
|
30
|
+
"allow": [
|
|
31
|
+
"Read(./**)",
|
|
32
|
+
"Edit(./**)",
|
|
33
|
+
"Write(./**)",
|
|
34
|
+
"Glob",
|
|
35
|
+
"Grep",
|
|
36
|
+
"WebSearch",
|
|
37
|
+
"WebFetch",
|
|
38
|
+
"Bash(npm test)",
|
|
39
|
+
"Bash(npm test *)",
|
|
40
|
+
"Bash(npm run dev)",
|
|
41
|
+
"Bash(npm run build)",
|
|
42
|
+
"Bash(npm run lint)",
|
|
43
|
+
"Bash(npm run lint:fix)",
|
|
44
|
+
"Bash(npm run typecheck)",
|
|
45
|
+
"Bash(npm run test)",
|
|
46
|
+
"Bash(npm run test:*)",
|
|
47
|
+
"Bash(npm run validate)",
|
|
48
|
+
"Bash(git status)",
|
|
49
|
+
"Bash(git status *)",
|
|
50
|
+
"Bash(git diff *)",
|
|
51
|
+
"Bash(git add *)",
|
|
52
|
+
"Bash(git commit *)",
|
|
53
|
+
"Bash(git push *)",
|
|
54
|
+
"Bash(git pull)",
|
|
55
|
+
"Bash(git pull *)",
|
|
56
|
+
"Bash(git checkout *)",
|
|
57
|
+
"Bash(git branch *)",
|
|
58
|
+
"Bash(node .claude/*)",
|
|
59
|
+
"Bash(python3 *)",
|
|
60
|
+
"Bash(npx claude-code-autoconfig*)",
|
|
61
|
+
"Bash(npm pack *)",
|
|
62
|
+
"Bash(tar *)",
|
|
63
|
+
"Bash(mktemp *)",
|
|
64
|
+
"Bash(find ./*)",
|
|
65
|
+
"Bash(ls *)",
|
|
66
|
+
"Bash(dir *)",
|
|
67
|
+
"Bash(mkdir *)",
|
|
68
|
+
"Bash(mkdir -p *)",
|
|
69
|
+
"Bash(start *)",
|
|
70
|
+
"Bash(start .claude *)",
|
|
71
|
+
"Bash(open *)",
|
|
72
|
+
"Bash(open .claude *)",
|
|
73
|
+
"Bash(xdg-open *)",
|
|
74
|
+
"Bash(xdg-open .claude *)"
|
|
75
|
+
],
|
|
76
|
+
"deny": [
|
|
77
|
+
"Read(./.env)",
|
|
78
|
+
"Read(./.env.*)",
|
|
79
|
+
"Read(./secrets/**)",
|
|
80
|
+
"Read(./**/credentials.*)",
|
|
81
|
+
"Read(./**/*.pem)",
|
|
82
|
+
"Read(./**/*.key)",
|
|
83
|
+
"Bash(rm -rf *)",
|
|
84
|
+
"Bash(curl *)",
|
|
85
|
+
"Bash(wget *)"
|
|
86
|
+
]
|
|
87
|
+
}
|
|
88
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.188
|
|
4
|
+
- feat(plugins): add drop-in plugin system (plugin add/remove/list)
|
|
5
|
+
|
|
6
|
+
## v1.0.187
|
|
7
|
+
- refactor(terminal-title): reframe directive to use-case vocabulary (scope + infinitive goal)
|
|
8
|
+
- docs: add TODO for deterministic settings.json deny list
|
|
9
|
+
- feat(terminal-title): add question-awaiting state + AskUserQuestion refresh
|
|
10
|
+
|
|
3
11
|
## v1.0.186
|
|
4
12
|
- fix: increase bottom padding in docs file tree
|
|
5
13
|
|
|
@@ -135,9 +143,3 @@
|
|
|
135
143
|
## v1.0.139
|
|
136
144
|
- fix: render usage params as structured HTML list in docs info cards
|
|
137
145
|
|
|
138
|
-
## v1.0.138
|
|
139
|
-
- feat: auto-include Usage sections in docs info cards
|
|
140
|
-
|
|
141
|
-
## v1.0.137
|
|
142
|
-
- docs: add usage params to recover-context docs and make dash optional
|
|
143
|
-
|