@drunkcoding/auto-claude 0.0.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Steven Hoang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,72 @@
1
+ # @drunkcoding/auto-claude
2
+
3
+ Curated installer and lifecycle manager for Claude Code tools and plugins.
4
+
5
+ ## Quick start
6
+
7
+ ```bash
8
+ npx @drunkcoding/auto-claude
9
+ ```
10
+
11
+ Pick the tools and plugins you want from the checklist; @drunkcoding/auto-claude installs them in the right order, runs any required post-install steps, and prints any final instructions you need to give to Claude itself.
12
+
13
+ ## Commands
14
+
15
+ | Command | What it does |
16
+ |---|---|
17
+ | `npx @drunkcoding/auto-claude` | Interactive install wizard (default) |
18
+ | `npx @drunkcoding/auto-claude status` | Show installed/missing state |
19
+ | `npx @drunkcoding/auto-claude remove [--yes]` | Uninstall installed items |
20
+ | `npx @drunkcoding/auto-claude update [--only <id>]` | Update installed items |
21
+ | `npx @drunkcoding/auto-claude default` | Silently install all `default: true` items globally (for fleet automation) |
22
+ | `npx @drunkcoding/auto-claude default --list` (or `-l`) | List default items and their installed state |
23
+ | `npx @drunkcoding/auto-claude --refresh-catalog` | Bypass the 24h catalog cache |
24
+
25
+ ### Fleet automation
26
+
27
+ `npx @drunkcoding/auto-claude default` is non-interactive — no prompts, no TTY required, idempotent. Use it from a bash script to provision every machine in your company:
28
+
29
+ ```bash
30
+ npx -y @drunkcoding/auto-claude default
31
+ ```
32
+
33
+ Items shipped to every device are flagged `"default": true` in `catalog.json`. The command runs detection first and skips anything already installed, continues past per-item failures, and exits `0` on success, `1` on partial failure, or `2` on catalog load failure.
34
+
35
+ ## What it installs
36
+
37
+ The catalog is fetched at runtime; the root `catalog.json` ships with the npm package as the offline fallback:
38
+
39
+ **Tools**
40
+ - **rtk** — token-optimized CLI proxy (also runs `rtk init -g` in the repo)
41
+ - **graphify** — knowledge-graph builder for your codebase, surfaced via `/graphify`
42
+ - **gitnexus** — code-intelligence MCP server; indexes your repo into a graph
43
+
44
+ **Plugins**
45
+ - **claude-mem** — persistent cross-session memory
46
+ - **superpowers** — skills framework
47
+ - **claude-code-setup** — automation recommender
48
+ - **microsoft-docs** — Microsoft / Azure / .NET docs and samples
49
+ - **context7** — version-specific library docs pulled into LLM context
50
+ - **plugin-dev** — toolkit for developing Claude Code plugins
51
+ - **drunk-app** — assistant for configuring drunk-app Helm chart deployments
52
+ - **dknet-minimal** — vertical-slice features on DKNet.Minimal.Template (.NET 10)
53
+
54
+ ## Requirements
55
+
56
+ - Node.js 20+
57
+ - `claude` CLI (for plugin install)
58
+ - `git` (for project-scoped operations)
59
+ - `pip` (for graphify) and Homebrew (for rtk on macOS)
60
+
61
+ ## Releases
62
+
63
+ Releases are published automatically by `.github/workflows/npm-publish.yaml`:
64
+
65
+ - Pushes to `main` (or manual `workflow_dispatch`) compute the next version from
66
+ the commit log via [`paulhatch/semantic-version`](https://github.com/PaulHatch/semantic-version).
67
+ Use `(MAJOR)` / `(MINOR)` in commit subjects to bump major/minor; otherwise patch.
68
+ - The workflow runs `pnpm typecheck && pnpm test && pnpm build`, updates
69
+ `package.json`, creates a tagged GitHub Release, and publishes to npm.
70
+
71
+ **Required secret:** `NPM_TOKEN` — npm automation token with **Publish** permission.
72
+ Add it under *Settings → Secrets and variables → Actions* on the GitHub repo.