claude-code-autoconfig 1.0.188 → 1.0.192
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 +10 -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 +53 -1
- package/CHANGELOG.md +14 -12
- package/README.md +7 -1
- package/package.json +4 -2
package/.claude/settings.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"env": {
|
|
3
|
-
"CLAUDE_CODE_DISABLE_AUTO_MEMORY": "0"
|
|
3
|
+
"CLAUDE_CODE_DISABLE_AUTO_MEMORY": "0",
|
|
4
|
+
"CLAUDE_CODE_DISABLE_TERMINAL_TITLE": "1"
|
|
4
5
|
},
|
|
5
6
|
"hooks": {
|
|
6
7
|
"SessionStart": [
|
|
@@ -12,6 +13,48 @@
|
|
|
12
13
|
"command": "node .claude/hooks/migrate-feedback.js"
|
|
13
14
|
}
|
|
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
|
+
]
|
|
15
58
|
}
|
|
16
59
|
],
|
|
17
60
|
"PostToolUse": [
|
|
@@ -23,6 +66,15 @@
|
|
|
23
66
|
"command": "node .claude/hooks/feedback-rule-check.js"
|
|
24
67
|
}
|
|
25
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
|
+
]
|
|
26
78
|
}
|
|
27
79
|
]
|
|
28
80
|
},
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.192
|
|
4
|
+
- fix(pkg): exclude runtime .titles/ from published tarball
|
|
5
|
+
|
|
6
|
+
## v1.0.191
|
|
7
|
+
- docs(readme): list terminal-title.directive.md in the hooks tree
|
|
8
|
+
- feat(terminal-title): add opt-in CLAUDE_TITLE_DEBUG forensic logging
|
|
9
|
+
|
|
10
|
+
## v1.0.190
|
|
11
|
+
- docs(readme): document the bundled terminal-title hook
|
|
12
|
+
- feat(terminal-title): bundle the terminal-title hook into core
|
|
13
|
+
|
|
14
|
+
## v1.0.189
|
|
15
|
+
- fix: drop redundant nul cleanup that errored after the install finale
|
|
16
|
+
|
|
3
17
|
## v1.0.188
|
|
4
18
|
- feat(plugins): add drop-in plugin system (plugin add/remove/list)
|
|
5
19
|
|
|
@@ -131,15 +145,3 @@
|
|
|
131
145
|
## v1.0.143
|
|
132
146
|
- feat: add /validate-cca-install command
|
|
133
147
|
|
|
134
|
-
## v1.0.142
|
|
135
|
-
- feat(recover-context): support cross-session recovery
|
|
136
|
-
|
|
137
|
-
## v1.0.141
|
|
138
|
-
- fix: replace Windows NUL cleanup with cross-platform command
|
|
139
|
-
|
|
140
|
-
## v1.0.140
|
|
141
|
-
- docs: trim recover-context usage to essential examples
|
|
142
|
-
|
|
143
|
-
## v1.0.139
|
|
144
|
-
- fix: render usage params as structured HTML list in docs info cards
|
|
145
|
-
|
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`:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.192",
|
|
4
4
|
"description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
|
|
5
5
|
"author": "ADAC 1001 <info@adac1001.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"cli"
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
|
-
"test": "node test/box-alignment.test.js && node test/cli-install.test.js && node test/update-system.test.js && node test/plugin-system.test.js",
|
|
25
|
+
"test": "node test/box-alignment.test.js && node test/cli-install.test.js && node test/update-system.test.js && node test/plugin-system.test.js && node test/terminal-title.test.js",
|
|
26
26
|
"test:box": "node test/box-alignment.test.js",
|
|
27
27
|
"test:install": "node test/cli-install.test.js",
|
|
28
28
|
"test:update": "node test/update-system.test.js",
|
|
@@ -35,6 +35,8 @@
|
|
|
35
35
|
"bin",
|
|
36
36
|
".claude",
|
|
37
37
|
"!.claude/settings.local.json",
|
|
38
|
+
"!.claude/hooks/.titles",
|
|
39
|
+
"!.claude/hooks/.titles/**",
|
|
38
40
|
"!.claude/cca.config.json",
|
|
39
41
|
"!.claude/.autoconfig-version",
|
|
40
42
|
"!.claude/.autoconfig-plugins.json",
|