claude-code-autoconfig 1.0.199 → 1.0.200
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/CHANGELOG.md +5 -6
- package/CLAUDE.md +19 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.200
|
|
4
|
+
- feat(changelog): Release notes now written in plain language
|
|
5
|
+
|
|
3
6
|
## v1.0.199
|
|
4
|
-
- feat(cli):
|
|
5
|
-
- feat(terminal-title):
|
|
6
|
-
- fix(terminal-title): require the '?' to be the last character of a pending-question turn
|
|
7
|
+
- feat(cli): Clearer 'what's new' summary when updating
|
|
8
|
+
- feat(terminal-title): More reliable 'awaiting your reply' tab indicator
|
|
7
9
|
|
|
8
10
|
## v1.0.198
|
|
9
11
|
- feat(arcade-beeps): ship opt-in Pole Position status beeps via CCA
|
|
@@ -147,6 +149,3 @@
|
|
|
147
149
|
## v1.0.151
|
|
148
150
|
- fix: scope find permission to project directory for security
|
|
149
151
|
|
|
150
|
-
## v1.0.150
|
|
151
|
-
- style: use pointing emoji in inside-Claude message
|
|
152
|
-
|
package/CLAUDE.md
CHANGED
|
@@ -32,6 +32,25 @@ npm run test:install # Run CLI install tests only
|
|
|
32
32
|
npm version patch && npm publish
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
After publish, push the branch AND the release tag explicitly (the postversion changelog
|
|
36
|
+
hook re-tags lightweight): `git push origin main && git push origin v<x.y.z>`.
|
|
37
|
+
|
|
38
|
+
### Changelog is user-facing — write commits accordingly
|
|
39
|
+
|
|
40
|
+
CHANGELOG.md regenerates from commit **subjects** on every `npm version`, and the installer
|
|
41
|
+
shows those bullets verbatim to users on upgrade (`bin/update-summary.js`). So:
|
|
42
|
+
|
|
43
|
+
- **Subjects may stay technical**, but then the commit body MUST carry a plain-language
|
|
44
|
+
trailer the changelog uses instead: `Changelog: More reliable 'awaiting your reply' tab
|
|
45
|
+
indicator`. Write it for a CCA user, not a maintainer — name the visible outcome, never
|
|
46
|
+
internals (no hook/regex/TDZ/function names).
|
|
47
|
+
- `Changelog: none` (or `skip`) hides an internal-only commit from the changelog.
|
|
48
|
+
- Keep the `feat:`/`fix:` conventional prefix on the subject — it drives the summary's
|
|
49
|
+
"New features" vs "Fixes & improvements" grouping.
|
|
50
|
+
- Already-pushed commits can't be reworded in git; add a row to `OVERRIDES` in
|
|
51
|
+
`scripts/generate-changelog.js` instead (value `null` drops the bullet). New work never
|
|
52
|
+
uses OVERRIDES — author the trailer.
|
|
53
|
+
|
|
35
54
|
## Team Feedback
|
|
36
55
|
|
|
37
56
|
See `.claude/feedback/` for corrections and guidance from the team.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.200",
|
|
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 && node test/terminal-title.test.js && node test/update-summary.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 && node test/update-summary.test.js && node test/changelog-gen.test.js",
|
|
26
26
|
"pub": "npm whoami && npm publish",
|
|
27
27
|
"test:box": "node test/box-alignment.test.js",
|
|
28
28
|
"test:install": "node test/cli-install.test.js",
|