claude-code-autoconfig 1.0.174 → 1.0.176
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 +2 -2
- package/CHANGELOG.md +6 -6
- package/bin/cli.js +2 -2
- package/package.json +1 -1
|
@@ -1268,7 +1268,7 @@
|
|
|
1268
1268
|
title: '.claude/ Directory',
|
|
1269
1269
|
desc: 'Commands, rules, settings, and these docs. Keeps configuration organized as your project grows.'
|
|
1270
1270
|
},
|
|
1271
|
-
|
|
1271
|
+
'rules': {
|
|
1272
1272
|
title: 'rules/',
|
|
1273
1273
|
desc: 'Path-scoped context that loads when Claude works on matching files.'
|
|
1274
1274
|
},
|
|
@@ -1579,7 +1579,7 @@ CRITICAL: A plausible-looking cause from code reading is NOT confirmed evidence.
|
|
|
1579
1579
|
|
|
1580
1580
|
> Run \`/autoconfig\` to populate this based on your project.`
|
|
1581
1581
|
},
|
|
1582
|
-
|
|
1582
|
+
'autoconfig-update': {
|
|
1583
1583
|
filename: 'autoconfig-update.md',
|
|
1584
1584
|
content: `<!-- @applied
|
|
1585
1585
|
-->
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.176
|
|
4
|
+
- fix: add feedback to AUTOCONFIG_FILES to prevent false upgrade detection
|
|
5
|
+
|
|
6
|
+
## v1.0.175
|
|
7
|
+
- fix: include extract-rules command in user installs
|
|
8
|
+
|
|
3
9
|
## v1.0.174
|
|
4
10
|
- feat: add pre-publish rules for README and docs sync
|
|
5
11
|
|
|
@@ -141,9 +147,3 @@
|
|
|
141
147
|
## v1.0.127
|
|
142
148
|
- feat: SessionStart hook for feedback migration, merge hooks on upgrade
|
|
143
149
|
|
|
144
|
-
## v1.0.126
|
|
145
|
-
- feat: add FEEDBACK.md migration to /autoconfig Step 0
|
|
146
|
-
|
|
147
|
-
## v1.0.125
|
|
148
|
-
- feat: auto-migrate FEEDBACK.md to Discoveries during CLI upgrade
|
|
149
|
-
|
package/bin/cli.js
CHANGED
|
@@ -27,7 +27,7 @@ const WINDOWS_RESERVED = ['CON', 'PRN', 'AUX', 'NUL', 'COM1', 'COM2', 'COM3', 'C
|
|
|
27
27
|
'LPT6', 'LPT7', 'LPT8', 'LPT9'];
|
|
28
28
|
|
|
29
29
|
// Files/folders installed by autoconfig - don't backup these
|
|
30
|
-
const AUTOCONFIG_FILES = ['commands', 'docs', 'agents', 'migration', 'hooks', 'updates', 'scripts', 'rules'];
|
|
30
|
+
const AUTOCONFIG_FILES = ['commands', 'docs', 'agents', 'migration', 'hooks', 'updates', 'scripts', 'rules', 'feedback'];
|
|
31
31
|
|
|
32
32
|
function isReservedName(name) {
|
|
33
33
|
const baseName = name.replace(/\.[^.]*$/, '').toUpperCase();
|
|
@@ -327,7 +327,7 @@ const hooksSrc = path.join(packageDir, '.claude', 'hooks');
|
|
|
327
327
|
const scriptsSrc = path.join(packageDir, '.claude', 'scripts');
|
|
328
328
|
|
|
329
329
|
// Files that exist in the dev repo but should never be installed to user projects
|
|
330
|
-
const DEV_ONLY_FILES = ['publish.md'
|
|
330
|
+
const DEV_ONLY_FILES = ['publish.md'];
|
|
331
331
|
|
|
332
332
|
function copyDir(src, dest) {
|
|
333
333
|
fs.mkdirSync(dest, { recursive: true });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.176",
|
|
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",
|