Skip to content

Commit 6fc0097

Browse files
jwaldripclaude
andcommitted
feat(website): add HAIKU references, rename Construction to Execution, add Operation/Reflection docs
- Add "Part of the HAIKU Method" badge on homepage with link to haikumethod.ai - Update hero description to reference HAIKU as parent methodology - Add HAIKU reference to footer, about page, start-here, docs index, quick-start - Add HAIKU Method to navigation (Resources > Related Projects) and footer links - Rename "Construction" to "Execution" across all website documentation - Replace /construct with /execute in all docs (quick-start, workflows, guides, examples, checklists) - Add Operational and Reflective workflow sections to workflows.md - Add HAIKU reference note to AI-DLC paper - Add changelog entry covering HAIKU integration, /execute, Operation, Reflection phases Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7378361 commit 6fc0097

20 files changed

+181
-51
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Added
11+
12+
- HAIKU integration — AI-DLC is now the software development profile of HAIKU (Human AI Knowledge Unification)
13+
- `/execute` skill replaces `/construct` (deprecated alias still works)
14+
- Operation phase (`/operate`) available for AI-DLC intents (opt-in)
15+
- Reflection phase (`/reflect`) available for AI-DLC intents (opt-in)
16+
- `operational` and `reflective` workflows
17+
- Configurable quality gates via `.ai-dlc/settings.yml`
18+
19+
### Changed
20+
21+
- "Construction" renamed to "Execution" in user-facing messages and documentation
22+
23+
### Deprecated
24+
25+
- `/construct` (use `/execute` instead)
26+
827
## [1.20.6] - 2026-03-05
928

1029
### Fixed

website/app/about/page.tsx

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,16 @@ export default function AboutPage() {
1616

1717
<div className="prose prose-gray dark:prose-invert max-w-none">
1818
<p className="lead text-xl text-gray-600 dark:text-gray-400">
19-
AI-DLC is a methodology for structured, iterative software
20-
development with AI assistants. It provides a framework for
19+
AI-DLC is how software teams use the{" "}
20+
<a
21+
href="https://haikumethod.ai"
22+
target="_blank"
23+
rel="noopener noreferrer"
24+
className="text-blue-600 hover:underline dark:text-blue-400"
25+
>
26+
HAIKU Method
27+
</a>{" "}
28+
(Human AI Knowledge Unification). It provides a framework for
2129
organizing work into focused units with clear phases and
2230
responsibilities.
2331
</p>
@@ -41,7 +49,7 @@ export default function AboutPage() {
4149
<h2>The Hat System</h2>
4250

4351
<p>
44-
AI-DLC organizes work through hats — distinct mindsets that keep each phase of development focused. The default construction workflow uses three core hats, while specialized workflows add hats for security testing, design, TDD, and scientific debugging.
52+
AI-DLC organizes work through hats — distinct mindsets that keep each phase of development focused. The default execution workflow uses three core hats, while specialized workflows add hats for security testing, design, TDD, and scientific debugging.
4553
</p>
4654

4755
<h3>Planner</h3>
@@ -114,6 +122,23 @@ export default function AboutPage() {
114122
<div><code>/plugin install ai-dlc@thebushidocollective-ai-dlc --scope project</code></div>
115123
</div>
116124

125+
<h2>Part of the HAIKU Method</h2>
126+
<p>
127+
AI-DLC is the software development profile of{" "}
128+
<a
129+
href="https://haikumethod.ai"
130+
target="_blank"
131+
rel="noopener noreferrer"
132+
className="text-blue-600 hover:underline dark:text-blue-400"
133+
>
134+
HAIKU
135+
</a>{" "}
136+
(Human AI Knowledge Unification) — a methodology for structured
137+
collaboration between humans and AI across any domain. HAIKU provides
138+
the universal framework; AI-DLC applies it specifically to software
139+
development.
140+
</p>
141+
117142
<h2>Part of Han</h2>
118143
<p>
119144
AI-DLC is part of the{" "}

website/app/components/Footer.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,16 @@ export function Footer() {
2020
AI-DLC
2121
</Link>
2222
<p className="mt-3 text-sm text-gray-600 dark:text-gray-400">
23-
A methodology for iterative AI-driven development with hat-based
24-
workflows.
23+
The software development profile of the{" "}
24+
<a
25+
href="https://haikumethod.ai"
26+
target="_blank"
27+
rel="noopener noreferrer"
28+
className="underline hover:text-gray-900 dark:hover:text-white"
29+
>
30+
HAIKU Method
31+
</a>
32+
.
2533
</p>
2634
{/* Social links */}
2735
<div className="mt-4 flex gap-3">

website/app/page.tsx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,15 @@ export default function Home() {
237237
<span className="absolute inline-flex h-full w-full animate-ping rounded-full bg-blue-400 opacity-75" />
238238
<span className="relative inline-flex h-2 w-2 rounded-full bg-blue-500" />
239239
</span>
240-
Now available for Claude Code
240+
Part of the{" "}
241+
<a
242+
href="https://haikumethod.ai"
243+
target="_blank"
244+
rel="noopener noreferrer"
245+
className="underline hover:text-blue-900 dark:hover:text-blue-100"
246+
>
247+
HAIKU Method
248+
</a>
241249
</div>
242250
<h1 className="mb-6 text-4xl font-bold tracking-tight sm:text-5xl lg:text-6xl">
243251
<span className="bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent dark:from-blue-400 dark:to-purple-400">
@@ -248,8 +256,16 @@ export default function Home() {
248256
AI-Driven Development Lifecycle
249257
</p>
250258
<p className="mb-8 text-lg text-gray-600 dark:text-gray-400">
251-
A methodology for iterative, high-quality software development
252-
with AI. Structure your work with clear phases, switch contexts
259+
AI-DLC is how software teams use the{" "}
260+
<a
261+
href="https://haikumethod.ai"
262+
target="_blank"
263+
rel="noopener noreferrer"
264+
className="text-blue-600 hover:underline dark:text-blue-400"
265+
>
266+
HAIKU Method
267+
</a>
268+
. Structure your work with clear phases, switch contexts
253269
intentionally, and ship with confidence.
254270
</p>
255271
<div className="flex flex-col gap-4 sm:flex-row">

website/app/start-here/page.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,17 @@ export default function StartHerePage() {
157157
<div className="mb-8 text-center">
158158
<h1 className="mb-4 text-4xl font-bold">Start Here</h1>
159159
<p className="text-lg text-gray-600 dark:text-gray-400">
160-
Your guided path to understanding and implementing AI-DLC.
160+
Your guided path to understanding and implementing AI-DLC, the
161+
software development profile of the{" "}
162+
<a
163+
href="https://haikumethod.ai"
164+
target="_blank"
165+
rel="noopener noreferrer"
166+
className="text-blue-600 hover:underline dark:text-blue-400"
167+
>
168+
HAIKU Method
169+
</a>
170+
.
161171
</p>
162172
</div>
163173

website/content/docs/adoption-roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Before starting Phase 1, ensure you have:
3131
**First session:**
3232
1. Install the AI-DLC plugin
3333
2. Create your first intent with 2-3 units
34-
3. Work through the first unit using `/elaborate` and `/construct`
34+
3. Work through the first unit using `/elaborate` and `/execute`
3535
4. Complete the full hat cycle
3636

3737
**Subsequent sessions:**

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@ Use `/elaborate` to define your intent collaboratively with Claude.
7070
### Elaboration Complete
7171
- [ ] Intent is clear and well-defined
7272
- [ ] Units are appropriately scoped
73-
- [ ] Ready to begin construction
73+
- [ ] Ready to begin execution
7474

7575
---
7676

7777
## Phase 2: First Unit
7878

79-
Work through your first unit using `/construct`.
79+
Work through your first unit using `/execute`.
8080

81-
### Start Construction
82-
- [ ] Run `/construct`
81+
### Start Execution
82+
- [ ] Run `/execute`
8383
- [ ] Verify Claude loaded the correct unit
8484

8585
### Planner Hat
@@ -137,7 +137,7 @@ Continue with remaining units.
137137

138138
### For Each Remaining Unit
139139

140-
- [ ] Run `/construct` to load next unit
140+
- [ ] Run `/execute` to load next unit
141141
- [ ] Review any dependencies are satisfied
142142
- [ ] Complete Planner → Builder → Reviewer cycle
143143
- [ ] Commit with unit reference
@@ -146,7 +146,7 @@ Continue with remaining units.
146146
### Between Units
147147

148148
- [ ] Check if context is getting heavy
149-
- [ ] `/clear` if needed, then `/construct` to continue
149+
- [ ] `/clear` if needed, then `/execute` to continue
150150
- [ ] Verify committed artifacts reflect current state
151151

152152
### Handling Blockers
@@ -214,7 +214,7 @@ Answer these questions honestly:
214214

215215
**Tooling:**
216216
- [ ] Any friction with the commands?
217-
- [ ] Did `/clear` + `/construct` work smoothly?
217+
- [ ] Did `/clear` + `/execute` work smoothly?
218218
- [ ] Were artifacts helpful?
219219

220220
### Metrics to Note
@@ -240,7 +240,7 @@ Based on this experience:
240240
| Command | When to Use |
241241
|---------|-------------|
242242
| `/elaborate` | Start new intent |
243-
| `/construct` | Continue/start unit work |
243+
| `/execute` | Continue/start unit work |
244244
| `/researcher` | Need more understanding |
245245
| `/planner` | Need to redesign approach |
246246
| `/builder` | Ready to implement |

website/content/docs/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ If you `/clear` without the stop hook:
306306

307307
1. Committed artifacts (`.ai-dlc/`) are safe
308308
2. Ephemeral state persists in `han keep`
309-
3. Run `/construct` to continue
309+
3. Run `/execute` to continue
310310

311311
## Next Steps
312312

website/content/docs/cowork.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ In cowork mode, after elaboration writes `.ai-dlc/` artifacts and creates ticket
2626
- The intent branch is pushed to the remote automatically
2727
- Builders can pull the branch or clone independently
2828

29-
## Construction in Cowork
29+
## Execution in Cowork
3030

31-
The `/construct` skill handles cowork transparently:
31+
The `/execute` skill handles cowork transparently:
3232

3333
- Ensures remote tracking is configured for the intent branch
3434
- Pulls latest changes before starting each unit

website/content/docs/example-bugfix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ indicate database connection timeout. Issue started approximately
6060

6161
Since this is a single investigation, I'll create one unit for the full debug cycle."
6262

63-
## Phase 2: Construction
63+
## Phase 2: Execution
6464

6565
### Observer Hat (OHOTL)
6666

0 commit comments

Comments
 (0)