You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update plugin install commands to use Claude Code native /plugin CLI
Replace incorrect /install-plugin and unscoped han commands with the
correct Claude Code native approach:
/plugin marketplace add thebushidocollective/ai-dlc
/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project
Han alternative now uses npx and --scope project.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
npx han plugin install thebushidocollective/ai-dlc --scope project
55
54
```
56
55
57
56
### Method 3: Manual Configuration
@@ -95,23 +94,25 @@ AI-DLC works best with backpressure plugins that provide quality gates:
95
94
### TypeScript Projects
96
95
97
96
```bash
98
-
han plugin install jutsu-typescript
99
-
han plugin install jutsu-biome
97
+
npx han plugin install jutsu-typescript --scope project
98
+
npx han plugin install jutsu-biome --scope project
100
99
```
101
100
102
101
### Python Projects
103
102
104
103
```bash
105
-
han plugin install jutsu-python
106
-
han plugin install jutsu-ruff
104
+
npx han plugin install jutsu-python --scope project
105
+
npx han plugin install jutsu-ruff --scope project
107
106
```
108
107
109
108
### Go Projects
110
109
111
110
```bash
112
-
han plugin install jutsu-go
111
+
npx han plugin install jutsu-go --scope project
113
112
```
114
113
114
+
> **Note:** Jutsu plugins follow the same installation pattern via Han. To install via Claude Code directly, use `/plugin marketplace add` and `/plugin install` with the appropriate marketplace identifier for each plugin.
0 commit comments