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.
@@ -1,88 +1,140 @@
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
+ "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
- └── format.js # Auto-format on Write/Edit
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`: