claude-code-autoconfig 1.0.121 → 1.0.123
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.
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
<!-- @description The command you just ran. Analyzes your project and populates CLAUDE.md with real context. Re-run anytime your stack changes. -->
|
|
2
|
-
<!-- @version
|
|
2
|
+
<!-- @version 4 -->
|
|
3
3
|
|
|
4
4
|
# Autoconfig
|
|
5
5
|
|
|
6
6
|
Analyze this project and configure Claude Code with real context.
|
|
7
7
|
|
|
8
|
-
**Setup Note**: During autoconfig, prefer Glob/Read/Write tools over Bash commands. This ensures smooth setup without permission prompts. Only use Bash for opening the guide at the end.
|
|
8
|
+
**Setup Note**: During autoconfig, prefer Glob/Read/Write tools over Bash commands. This ensures smooth setup without permission prompts. Only use Bash for Step 0 and opening the guide at the end.
|
|
9
|
+
|
|
10
|
+
## Step 0: Pull Latest Package
|
|
11
|
+
|
|
12
|
+
Run this command to ensure all commands, hooks, and settings are up to date before configuring:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm exec -- claude-code-autoconfig@latest --pull-updates 2>&1 || true
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
This downloads the latest command files, hooks, and update definitions from the npm package. It exits cleanly with no interactive prompts.
|
|
19
|
+
|
|
20
|
+
**Important:** Use `npm exec`, not `npx` — `npx` may be blocked in some environments. If the command fails (e.g., no network), continue anyway — the existing files are still functional.
|
|
9
21
|
|
|
10
22
|
## Step 1: Detect Environment
|
|
11
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.123",
|
|
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",
|