@cjvana/claude-auto 0.1.0 → 0.1.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/README.md CHANGED
@@ -10,7 +10,20 @@ Claude researches your codebase, picks the highest-value work (open issues, bugs
10
10
  npm install -g @cjvana/claude-auto
11
11
  ```
12
12
 
13
- This registers `claude-auto` as a Claude Code plugin. The `/claude-auto:setup` slash command becomes available in Claude Code sessions.
13
+ The postinstall script automatically registers `claude-auto` as a Claude Code plugin via a local marketplace. After install, restart Claude Code and `/claude-auto:setup` will be available.
14
+
15
+ **If auto-registration fails**, register manually:
16
+
17
+ ```bash
18
+ claude plugin marketplace add ~/.claude-auto-marketplace
19
+ claude plugin install claude-auto@claude-auto-local
20
+ ```
21
+
22
+ Or load per-session without installing:
23
+
24
+ ```bash
25
+ claude --plugin-dir $(npm root -g)/@cjvana/claude-auto
26
+ ```
14
27
 
15
28
  ### Requirements
16
29