claude-code-autoconfig 1.0.186 → 1.0.191
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/commands/autoconfig.md +4 -9
- package/.claude/docs/autoconfig.docs.html +2158 -2148
- package/.claude/hooks/.titles/25869694-a68e-449f-8240-f1ff2b80c1d4.txt +1 -0
- package/.claude/hooks/.titles/_debug.log +43 -0
- package/.claude/hooks/terminal-title.directive.md +71 -0
- package/.claude/hooks/terminal-title.js +235 -0
- package/.claude/scripts/sync-docs.js +662 -662
- package/.claude/settings.json +140 -88
- package/CHANGELOG.md +19 -15
- package/README.md +7 -1
- package/bin/cli.js +1013 -779
- package/package.json +49 -48
package/.claude/settings.json
CHANGED
|
@@ -1,88 +1,140 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"CLAUDE_CODE_DISABLE_AUTO_MEMORY": "0"
|
|
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
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
1
|
+
{
|
|
2
|
+
"env": {
|
|
3
|
+
"CLAUDE_CODE_DISABLE_AUTO_MEMORY": "0",
|
|
4
|
+
"CLAUDE_CODE_DISABLE_TERMINAL_TITLE": "1"
|
|
5
|
+
},
|
|
6
|
+
"hooks": {
|
|
7
|
+
"SessionStart": [
|
|
8
|
+
{
|
|
9
|
+
"matcher": "",
|
|
10
|
+
"hooks": [
|
|
11
|
+
{
|
|
12
|
+
"type": "command",
|
|
13
|
+
"command": "node .claude/hooks/migrate-feedback.js"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"matcher": "*",
|
|
19
|
+
"hooks": [
|
|
20
|
+
{
|
|
21
|
+
"type": "command",
|
|
22
|
+
"command": "node .claude/hooks/terminal-title.js"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"UserPromptSubmit": [
|
|
28
|
+
{
|
|
29
|
+
"matcher": "",
|
|
30
|
+
"hooks": [
|
|
31
|
+
{
|
|
32
|
+
"type": "command",
|
|
33
|
+
"command": "node .claude/hooks/terminal-title.js"
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"Stop": [
|
|
39
|
+
{
|
|
40
|
+
"matcher": "",
|
|
41
|
+
"hooks": [
|
|
42
|
+
{
|
|
43
|
+
"type": "command",
|
|
44
|
+
"command": "node .claude/hooks/terminal-title.js"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"Notification": [
|
|
50
|
+
{
|
|
51
|
+
"matcher": "permission_prompt",
|
|
52
|
+
"hooks": [
|
|
53
|
+
{
|
|
54
|
+
"type": "command",
|
|
55
|
+
"command": "node .claude/hooks/terminal-title.js"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
],
|
|
60
|
+
"PostToolUse": [
|
|
61
|
+
{
|
|
62
|
+
"matcher": "Edit|Write",
|
|
63
|
+
"hooks": [
|
|
64
|
+
{
|
|
65
|
+
"type": "command",
|
|
66
|
+
"command": "node .claude/hooks/feedback-rule-check.js"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"matcher": "Bash|Write|Edit|MultiEdit|NotebookEdit|WebFetch|WebSearch|Task|AskUserQuestion",
|
|
72
|
+
"hooks": [
|
|
73
|
+
{
|
|
74
|
+
"type": "command",
|
|
75
|
+
"command": "node .claude/hooks/terminal-title.js"
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"permissions": {
|
|
82
|
+
"allow": [
|
|
83
|
+
"Read(./**)",
|
|
84
|
+
"Edit(./**)",
|
|
85
|
+
"Write(./**)",
|
|
86
|
+
"Glob",
|
|
87
|
+
"Grep",
|
|
88
|
+
"WebSearch",
|
|
89
|
+
"WebFetch",
|
|
90
|
+
"Bash(npm test)",
|
|
91
|
+
"Bash(npm test *)",
|
|
92
|
+
"Bash(npm run dev)",
|
|
93
|
+
"Bash(npm run build)",
|
|
94
|
+
"Bash(npm run lint)",
|
|
95
|
+
"Bash(npm run lint:fix)",
|
|
96
|
+
"Bash(npm run typecheck)",
|
|
97
|
+
"Bash(npm run test)",
|
|
98
|
+
"Bash(npm run test:*)",
|
|
99
|
+
"Bash(npm run validate)",
|
|
100
|
+
"Bash(git status)",
|
|
101
|
+
"Bash(git status *)",
|
|
102
|
+
"Bash(git diff *)",
|
|
103
|
+
"Bash(git add *)",
|
|
104
|
+
"Bash(git commit *)",
|
|
105
|
+
"Bash(git push *)",
|
|
106
|
+
"Bash(git pull)",
|
|
107
|
+
"Bash(git pull *)",
|
|
108
|
+
"Bash(git checkout *)",
|
|
109
|
+
"Bash(git branch *)",
|
|
110
|
+
"Bash(node .claude/*)",
|
|
111
|
+
"Bash(python3 *)",
|
|
112
|
+
"Bash(npx claude-code-autoconfig*)",
|
|
113
|
+
"Bash(npm pack *)",
|
|
114
|
+
"Bash(tar *)",
|
|
115
|
+
"Bash(mktemp *)",
|
|
116
|
+
"Bash(find ./*)",
|
|
117
|
+
"Bash(ls *)",
|
|
118
|
+
"Bash(dir *)",
|
|
119
|
+
"Bash(mkdir *)",
|
|
120
|
+
"Bash(mkdir -p *)",
|
|
121
|
+
"Bash(start *)",
|
|
122
|
+
"Bash(start .claude *)",
|
|
123
|
+
"Bash(open *)",
|
|
124
|
+
"Bash(open .claude *)",
|
|
125
|
+
"Bash(xdg-open *)",
|
|
126
|
+
"Bash(xdg-open .claude *)"
|
|
127
|
+
],
|
|
128
|
+
"deny": [
|
|
129
|
+
"Read(./.env)",
|
|
130
|
+
"Read(./.env.*)",
|
|
131
|
+
"Read(./secrets/**)",
|
|
132
|
+
"Read(./**/credentials.*)",
|
|
133
|
+
"Read(./**/*.pem)",
|
|
134
|
+
"Read(./**/*.key)",
|
|
135
|
+
"Bash(rm -rf *)",
|
|
136
|
+
"Bash(curl *)",
|
|
137
|
+
"Bash(wget *)"
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.191
|
|
4
|
+
- docs(readme): list terminal-title.directive.md in the hooks tree
|
|
5
|
+
- feat(terminal-title): add opt-in CLAUDE_TITLE_DEBUG forensic logging
|
|
6
|
+
|
|
7
|
+
## v1.0.190
|
|
8
|
+
- docs(readme): document the bundled terminal-title hook
|
|
9
|
+
- feat(terminal-title): bundle the terminal-title hook into core
|
|
10
|
+
|
|
11
|
+
## v1.0.189
|
|
12
|
+
- fix: drop redundant nul cleanup that errored after the install finale
|
|
13
|
+
|
|
14
|
+
## v1.0.188
|
|
15
|
+
- feat(plugins): add drop-in plugin system (plugin add/remove/list)
|
|
16
|
+
|
|
17
|
+
## v1.0.187
|
|
18
|
+
- refactor(terminal-title): reframe directive to use-case vocabulary (scope + infinitive goal)
|
|
19
|
+
- docs: add TODO for deterministic settings.json deny list
|
|
20
|
+
- feat(terminal-title): add question-awaiting state + AskUserQuestion refresh
|
|
21
|
+
|
|
3
22
|
## v1.0.186
|
|
4
23
|
- fix: increase bottom padding in docs file tree
|
|
5
24
|
|
|
@@ -126,18 +145,3 @@
|
|
|
126
145
|
## v1.0.142
|
|
127
146
|
- feat(recover-context): support cross-session recovery
|
|
128
147
|
|
|
129
|
-
## v1.0.141
|
|
130
|
-
- fix: replace Windows NUL cleanup with cross-platform command
|
|
131
|
-
|
|
132
|
-
## v1.0.140
|
|
133
|
-
- docs: trim recover-context usage to essential examples
|
|
134
|
-
|
|
135
|
-
## v1.0.139
|
|
136
|
-
- fix: render usage params as structured HTML list in docs info cards
|
|
137
|
-
|
|
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
|
-
|
package/README.md
CHANGED
|
@@ -59,7 +59,9 @@ your-project/
|
|
|
59
59
|
├── feedback/ # Team corrections for Claude
|
|
60
60
|
│ └── FEEDBACK.md # Add entries when Claude errs
|
|
61
61
|
├── hooks/ # Hook scripts
|
|
62
|
-
│
|
|
62
|
+
│ ├── format.js # Auto-format on Write/Edit
|
|
63
|
+
│ ├── terminal-title.js # Use-case terminal tab titles + live state
|
|
64
|
+
│ └── terminal-title.directive.md # Injected title directive (tunable wording)
|
|
63
65
|
├── docs/ # Interactive documentation
|
|
64
66
|
│ └── autoconfig.docs.html # Open with /show-docs
|
|
65
67
|
├── updates/ # Pending config updates
|
|
@@ -129,6 +131,10 @@ npx claude-code-autoconfig@latest --force
|
|
|
129
131
|
|
|
130
132
|
Autoconfig writes a debug methodology to Claude's persistent memory (`MEMORY.md`), ensuring Claude investigates root causes with evidence before jumping to fixes. This loads into every future session automatically.
|
|
131
133
|
|
|
134
|
+
### Terminal Titles
|
|
135
|
+
|
|
136
|
+
Run several Claude Code sessions at once and the tabs all look alike. Autoconfig retitles each tab as `{scope} — {what you're working on}` with a live state indicator — ⬤ working, ◐ waiting on you, ✻ idle — so you can tell sessions apart at a glance. Claude updates the title itself as the work shifts; nothing to configure.
|
|
137
|
+
|
|
132
138
|
### Team Feedback
|
|
133
139
|
|
|
134
140
|
When Claude makes a mistake, add an entry to `.claude/feedback/FEEDBACK.md`:
|