Skip to content

Commit 6b7ba91

Browse files
jwaldripclaude
andcommitted
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>
1 parent 882eb4b commit 6b7ba91

File tree

9 files changed

+42
-32
lines changed

9 files changed

+42
-32
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ AI-DLC (AI-Driven Development Lifecycle) is a methodology for collaborative huma
1717
1818
## Installation
1919

20-
```bash
21-
# Via Han (recommended)
22-
han plugin install thebushidocollective/ai-dlc
20+
```
21+
# Install via Claude Code
22+
/plugin marketplace add thebushidocollective/ai-dlc
23+
/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project
24+
```
2325

24-
# Or directly in Claude Code
25-
/install-github-plugin thebushidocollective/ai-dlc
26+
```bash
27+
# Or via Han (must be npx, project-scoped)
28+
npx han plugin install thebushidocollective/ai-dlc --scope project
2629
```
2730

2831
### Prerequisites

website/app/about/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ export default function AboutPage() {
111111
</p>
112112

113113
<div className="not-prose my-8 rounded-lg bg-gray-100 p-4 font-mono text-sm dark:bg-gray-800">
114-
<code>/install-plugin thebushidocollective/ai-dlc</code>
114+
<div><code>/plugin marketplace add thebushidocollective/ai-dlc</code></div>
115+
<div><code>/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project</code></div>
115116
</div>
116117

117118
<h2>Part of Han</h2>

website/app/docs/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export default function DocsPage() {
2222
<h2>Quick Start</h2>
2323
<p>Install the AI-DLC plugin in your Claude Code project:</p>
2424
<div className="not-prose my-4 rounded-lg bg-gray-100 p-4 font-mono text-sm dark:bg-gray-800">
25-
<code>/install-plugin thebushidocollective/ai-dlc</code>
25+
<div><code>/plugin marketplace add thebushidocollective/ai-dlc</code></div>
26+
<div><code>/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project</code></div>
2627
</div>
2728

2829
<p>Then use the hat commands to structure your workflow:</p>

website/app/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,8 @@ export default function Home() {
552552
projects today.
553553
</p>
554554
<div className="inline-block rounded-lg bg-gray-900 p-4 text-left font-mono text-sm text-white dark:bg-gray-800">
555-
<code>/install-plugin thebushidocollective/ai-dlc</code>
555+
<div><code>/plugin marketplace add thebushidocollective/ai-dlc</code></div>
556+
<div><code>/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project</code></div>
556557
</div>
557558
<div className="mt-6">
558559
<Link

website/content/blog/agent-teams-support.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ Enable Agent Teams in your Claude Code settings:
131131
Install or update the AI-DLC plugin:
132132

133133
```
134-
/install-plugin thebushidocollective/ai-dlc
134+
/plugin marketplace add thebushidocollective/ai-dlc
135+
/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project
135136
```
136137

137138
Then run `/elaborate` to define an intent with a mode, and `/construct` to start the team.

website/content/blog/introducing-ai-dlc.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ Units are focused pieces of work with clear success criteria. Breaking work into
4646
AI-DLC is distributed as a Claude Code plugin. Install it with:
4747

4848
```
49-
/install-plugin thebushidocollective/ai-dlc
49+
/plugin marketplace add thebushidocollective/ai-dlc
50+
/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project
5051
```
5152

5253
Then start using the hat commands to structure your workflow.

website/content/docs/checklist-first-intent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Complete these steps before beginning your first intent:
1212

1313
### Environment Setup
1414
- [ ] Claude Code installed and working
15-
- [ ] AI-DLC plugin installed (`/install-plugin thebushidocollective/ai-dlc`)
15+
- [ ] AI-DLC plugin installed (`/plugin marketplace add thebushidocollective/ai-dlc` then `/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project`)
1616
- [ ] Verified plugin is active (commands like `/elaborate` are recognized)
1717

1818
### Project Selection

website/content/docs/installation.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,21 @@ han --version
3636

3737
## Installation Methods
3838

39-
### Method 1: Via Han (Recommended)
39+
### Method 1: Via Claude Code (Recommended)
4040

41-
If you have Han installed, use the plugin manager:
41+
Install directly from within a Claude Code session:
4242

43-
```bash
44-
han plugin install thebushidocollective/ai-dlc
43+
```
44+
/plugin marketplace add thebushidocollective/ai-dlc
45+
/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project
4546
```
4647

47-
This installs the plugin and configures it in your Claude Code settings.
48-
49-
### Method 2: Direct in Claude Code
48+
### Method 2: Via Han
5049

51-
Install directly from within a Claude Code session:
50+
If you have Han installed, use the plugin manager (must be npx, project-scoped):
5251

53-
```
54-
/install-github-plugin thebushidocollective/ai-dlc
52+
```bash
53+
npx han plugin install thebushidocollective/ai-dlc --scope project
5554
```
5655

5756
### Method 3: Manual Configuration
@@ -95,23 +94,25 @@ AI-DLC works best with backpressure plugins that provide quality gates:
9594
### TypeScript Projects
9695

9796
```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
10099
```
101100

102101
### Python Projects
103102

104103
```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
107106
```
108107

109108
### Go Projects
110109

111110
```bash
112-
han plugin install jutsu-go
111+
npx han plugin install jutsu-go --scope project
113112
```
114113

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.
115+
115116
These plugins provide:
116117
- **Type checking** that blocks on errors
117118
- **Linting** that maintains code quality

website/content/docs/quick-start.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ Get AI-DLC running in your project and complete your first feature.
88

99
## Installation
1010

11-
**Option 1: Via Han (recommended)**
12-
```bash
13-
han plugin install thebushidocollective/ai-dlc
11+
**Option 1: Via Claude Code (recommended)**
1412
```
15-
16-
**Option 2: Direct in Claude Code**
13+
/plugin marketplace add thebushidocollective/ai-dlc
14+
/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project
1715
```
18-
/install-github-plugin thebushidocollective/ai-dlc
16+
17+
**Option 2: Via Han**
18+
```bash
19+
npx han plugin install thebushidocollective/ai-dlc --scope project
1920
```
2021

2122
## The Two Commands You Need

0 commit comments

Comments
 (0)