claude-code-autoconfig 1.0.71 → 1.0.73
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/agents/{guide-refresh.md → docs-refresh.md} +5 -5
- package/.claude/commands/autoconfig.md +23 -11
- package/.claude/commands/{show-guide.md → show-docs.md} +17 -17
- package/.claude/{guide/autoconfig.guide.html → docs/autoconfig.docs.html} +1834 -1834
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ irm https://raw.githubusercontent.com/design-and-deliver/claude-code-autoconfig/
|
|
|
17
17
|
## After Install
|
|
18
18
|
|
|
19
19
|
1. **`/autoconfig`** — Claude analyzes your project and configures itself
|
|
20
|
-
2. **`/show-
|
|
20
|
+
2. **`/show-docs`** — Opens an interactive guide showing what got set up
|
|
21
21
|
|
|
22
22
|
That's it. Your Claude Code environment is configured and ready.
|
|
23
23
|
|
|
@@ -31,13 +31,13 @@ your-project/
|
|
|
31
31
|
│ ├── autoconfig.md # /autoconfig - self-configures
|
|
32
32
|
│ ├── commit-and-push.md # /commit-and-push - git workflow
|
|
33
33
|
│ ├── enable-retro.md # /enable-retro - opt-in tech debt tracking
|
|
34
|
-
│ ├── show-
|
|
34
|
+
│ ├── show-docs.md # /show-docs - interactive walkthrough
|
|
35
35
|
│ ├── sync-claude-md.md # /sync-claude-md - update CLAUDE.md
|
|
36
36
|
│ └── test.md # /test - run tests
|
|
37
37
|
├── feedback/ # Team corrections for Claude
|
|
38
38
|
│ └── FEEDBACK.md # Add entries when Claude errs
|
|
39
|
-
├──
|
|
40
|
-
│ └── autoconfig.
|
|
39
|
+
├── docs/ # Interactive documentation
|
|
40
|
+
│ └── autoconfig.docs.html # Open with /show-docs
|
|
41
41
|
├── rules/ # Path-scoped context (empty)
|
|
42
42
|
├── .mcp.json # MCP server configs (empty placeholder)
|
|
43
43
|
└── settings.json # Permissions & security
|
|
@@ -64,7 +64,7 @@ You get a custom-fit configuration without the manual work.
|
|
|
64
64
|
|---------|-------------|
|
|
65
65
|
| `/autoconfig` | Analyzes project and populates configuration |
|
|
66
66
|
| `/sync-claude-md` | Re-analyzes project and updates CLAUDE.md |
|
|
67
|
-
| `/show-
|
|
67
|
+
| `/show-docs` | Opens interactive docs in browser |
|
|
68
68
|
| `/test` | Runs your test suite (auto-detects framework) |
|
|
69
69
|
| `/commit-and-push` | Stages, commits with good message, and pushes |
|
|
70
70
|
| `/enable-retro` | (Experimental) Enable tech debt tracking |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-autoconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.73",
|
|
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",
|