claude-code-autoconfig 1.0.165 → 1.0.166

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 CHANGED
@@ -147,6 +147,3 @@
147
147
  ## v1.0.117
148
148
  - refactor: let Claude evaluate rule migration candidates
149
149
 
150
- ## v1.0.116
151
- - feat: improve FEEDBACK.md reliability and add rule migration hook
152
-
package/bin/cli.js CHANGED
@@ -658,10 +658,8 @@ if (isUpgrade) {
658
658
  console.log('\x1b[33m╚════════════════════════════════════════════╝\x1b[0m');
659
659
  }
660
660
  // Show changelog on upgrade
661
- console.log('\x1b[90m%s\x1b[0m', ` [debug] isUpgrade=${isUpgrade} previousVersion=${previousVersion} currentVersion=${currentVersion}`);
662
661
  if (isUpgrade && previousVersion) {
663
662
  const changelogPath = path.join(packageDir, 'CHANGELOG.md');
664
- console.log('\x1b[90m%s\x1b[0m', ` [debug] changelogPath=${changelogPath} exists=${fs.existsSync(changelogPath)}`);
665
663
  if (fs.existsSync(changelogPath)) {
666
664
  const changelog = fs.readFileSync(changelogPath, 'utf8');
667
665
  const prevPatch = parseInt(previousVersion.split('.').pop(), 10);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.165",
3
+ "version": "1.0.166",
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",