claude-code-autoconfig 1.0.170 → 1.0.172
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/rules/deploy-approval.md +8 -0
- package/CHANGELOG.md +6 -6
- package/bin/cli.js +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
paths:
|
|
3
|
+
- "bin/cli.js"
|
|
4
|
+
- ".claude/commands/*.md"
|
|
5
|
+
- "package.json"
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
Do not publish new commands or features to npm without explicit user approval. Adding a file to the project repo is not the same as approving it for deploy. Wait for explicit "deploy", "publish", or "push it out" before running npm version + publish.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.0.172
|
|
4
|
+
- feat: /extract-rules v3 — auto-apply, --keep-sources, changelog with paths
|
|
5
|
+
|
|
6
|
+
## v1.0.171
|
|
7
|
+
- feat: /extract-rules v3 — automatic flow, --keep-sources, changelog summary
|
|
8
|
+
|
|
3
9
|
## v1.0.170
|
|
4
10
|
- revert: remove /extract-rules from deployed build
|
|
5
11
|
|
|
@@ -141,9 +147,3 @@
|
|
|
141
147
|
## v1.0.123
|
|
142
148
|
- fix: use npm exec instead of npx in Step 0
|
|
143
149
|
|
|
144
|
-
## v1.0.122
|
|
145
|
-
- feat: /autoconfig pulls latest package before configuring
|
|
146
|
-
|
|
147
|
-
## v1.0.121
|
|
148
|
-
- feat: add feedback-to-discoveries migration update (004)
|
|
149
|
-
|
package/bin/cli.js
CHANGED
|
@@ -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', 'extract-rules.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.172",
|
|
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",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"!.claude/cca.config.json",
|
|
39
39
|
"!.claude/.autoconfig-version",
|
|
40
40
|
"!.claude/commands/publish.md",
|
|
41
|
+
"!.claude/commands/extract-rules.md",
|
|
41
42
|
"!.claude/plans",
|
|
42
43
|
"CLAUDE.md",
|
|
43
44
|
"CHANGELOG.md"
|