-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
355 lines (337 loc) · 18.6 KB
/
Copy pathindex.html
File metadata and controls
355 lines (337 loc) · 18.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intent-Driven Development · The Delivery Standard</title>
<style>
:root {
--ink: #1a2332;
--ink-soft: #46556b;
--accent: #0f5c8c;
--accent-soft: #e8f1f7;
--rule: #d8dee8;
--bg: #f7f8fa;
--card: #ffffff;
--mono-bg: #0f1722;
--mono-ink: #d6e2f0;
--high: #b3372f;
--med: #b07a1e;
--low: #2e7d4f;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Segoe UI", system-ui, -apple-system, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; }
a { color: var(--accent); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
/* ---- hero ---- */
header.hero { background: linear-gradient(135deg, #11314e, #0f5c8c); color: #fff; }
header.hero .wrap { padding: 64px 24px 56px; }
header.hero .eyebrow { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #9fc3dd; margin: 0 0 14px; }
header.hero h1 { margin: 0 0 8px; font-size: 40px; line-height: 1.1; letter-spacing: -0.5px; }
header.hero h1 span { display: block; font-size: 22px; font-weight: 500; color: #cfe2f1; margin-top: 8px; letter-spacing: 0; }
header.hero p.lede { font-size: 18px; color: #e3eef6; max-width: 60ch; margin: 18px 0 0; }
header.hero .onerule { margin: 22px 0 28px; padding: 12px 18px; border-left: 3px solid #9fc3dd; background: rgba(255,255,255,0.08); border-radius: 0 8px 8px 0; max-width: 60ch; font-size: 15px; color: #eaf3fa; }
header.hero .onerule strong { color: #fff; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-block; text-decoration: none; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 8px; }
.btn.primary { background: #fff; color: var(--accent); }
.btn.primary:hover { background: #eaf3fa; }
.btn.ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn.ghost:hover { background: rgba(255,255,255,0.2); }
/* ---- generic section ---- */
section { padding: 52px 0; border-bottom: 1px solid var(--rule); }
section.tight { padding: 44px 0; }
h2.kicker { font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; }
.lead-30 { font-size: 19px; color: var(--ink); max-width: 68ch; margin: 0 0 6px; }
.lead-30 strong { color: var(--accent); }
.sub { color: var(--ink-soft); max-width: 70ch; }
/* ---- the loop ---- */
.loop { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.loop .step { flex: 1 1 220px; background: var(--card); border: 1px solid var(--rule); border-top: 4px solid var(--accent); border-radius: 12px; padding: 20px 22px; }
.loop .step .n { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--ink-soft); text-transform: uppercase; }
.loop .step h3 { margin: 4px 0 6px; font-size: 22px; color: var(--accent); }
.loop .step .who { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 10px; }
.loop .step p { margin: 0; font-size: 14px; color: var(--ink); }
.loop .arrow { flex: 0 0 36px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--accent); font-weight: 700; }
.loop .step.delegate { border-top-color: var(--med); }
.loop .step.delegate h3 { color: var(--med); }
.loop .step.discern { border-top-color: var(--low); }
.loop .step.discern h3 { color: var(--low); }
.loop-note { margin: 16px 0 0; font-style: italic; color: var(--ink-soft); }
/* ---- engagement arc ---- */
.arc { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 16px; }
.arc .panel { background: var(--card); border: 1px solid var(--rule); border-radius: 12px; padding: 20px 22px; }
.arc .panel.build { background: var(--accent-soft); border-color: #bcd7e8; }
.arc .panel .tag { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.arc .panel h3 { margin: 6px 0 10px; font-size: 17px; }
.arc .panel p { margin: 0 0 12px; font-size: 13.5px; color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 12px; padding: 3px 9px; border-radius: 20px; background: #eef2f7; color: var(--ink-soft); text-decoration: none; border: 1px solid var(--rule); }
.chip:hover { background: var(--accent-soft); color: var(--accent); }
.arc .panel.build .chip { background: #fff; }
/* ---- start here cards ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.rcard { background: var(--card); border: 1px solid var(--rule); border-radius: 12px; padding: 20px 22px; }
.rcard h3 { margin: 0 0 4px; font-size: 16px; color: var(--accent); }
.rcard .role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-soft); margin-bottom: 10px; }
.rcard ol { margin: 0; padding-left: 18px; font-size: 13.5px; }
.rcard ol li { margin-bottom: 4px; }
/* ---- index grid ---- */
.idx { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px 30px; }
.idx .col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--ink-soft); border-bottom: 1px solid var(--rule); padding-bottom: 6px; margin: 0 0 10px; }
.idx .col .row { padding: 3px 0; font-size: 14px; }
.idx .col .row a { text-decoration: none; }
.idx .col .row a:hover { color: var(--accent); }
.idx .col .row a.ex { color: var(--ink-soft); font-size: 12px; margin-left: 6px; }
.idx .col .row a.ex::before { content: "· "; }
.idx .col .row a.ex:hover { color: var(--accent); }
footer.foot { padding: 28px 0 40px; color: var(--ink-soft); font-size: 13px; }
@media (max-width: 760px) {
header.hero h1 { font-size: 30px; }
.arc { grid-template-columns: 1fr; }
.loop .arrow { flex-basis: 100%; height: 28px; transform: rotate(90deg); }
}
/* shared top bar */
.topbar { display: flex; align-items: center; gap: 2px; background: #0d2438; padding: 0 14px; font-size: 13.5px; flex-wrap: wrap; }
.topbar a { color: #cfe2f1; text-decoration: none; padding: 12px 14px; display: inline-block; }
.topbar a:hover { background: rgba(255,255,255,.09); color: #fff; }
.topbar a.home { font-weight: 700; color: #fff; }
.topbar a.active { color: #fff; box-shadow: inset 0 -3px 0 #5ea9d6; }
.topbar .ref { position: relative; }
.topbar .ref summary { list-style: none; cursor: pointer; padding: 12px 14px; color: #cfe2f1; }
.topbar .ref summary::-webkit-details-marker { display: none; }
.topbar .ref[open] summary { background: rgba(255,255,255,.09); color: #fff; }
.topbar .ref .menu { position: absolute; left: 0; top: 100%; z-index: 60; background: #0d2438; border: 1px solid #07151f; border-radius: 0 0 8px 8px; min-width: 200px; padding: 6px 0; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.topbar .ref .menu a { display: block; padding: 9px 16px; }
</style>
</head>
<body>
<div class="topbar" role="navigation" aria-label="Site">
<a class="home active" href="index.html">Home</a>
<a href="GOLD-STANDARD.html">The Standard</a>
<details class="ref">
<summary>Phases ▾</summary>
<div class="menu">
<a href="docs/companion/phase-0.html">0 · Discovery</a>
<a href="docs/companion/phase-1.html">1 · Requirements</a>
<a href="docs/companion/phase-2.html">2 · Design</a>
<a href="docs/companion/phase-3.html">3 · Foundation</a>
<a href="docs/companion/build-loop.html">The Build Loop</a>
<a href="docs/companion/the-rails.html">The Rails</a>
<a href="docs/companion/phase-7.html">7 · Documentation</a>
<a href="docs/companion/phase-8.html">8 · Deployment</a>
<a href="docs/companion/phase-9.html">9 · Monitoring</a>
<a href="docs/companion/phase-c.html">C · Close & Transfer</a>
</div>
</details>
<details class="ref">
<summary>Reference ▾</summary>
<div class="menu">
<a href="docs/companion/artifact-flow.html">The artifact flow</a>
<a href="docs/whats-installed.html">What the harness installs</a>
<a href="docs/cheatsheet.html">Loop cheat-sheet</a>
<a href="docs/glossary.html">Glossary</a>
<a href="docs/faq.html">FAQ</a>
<a href="docs/anti-patterns.html">Anti-pattern field guide</a>
</div>
</details>
</div>
<header class="hero">
<div class="wrap">
<p class="eyebrow">MCKRUZ · Delivery Standard · v1.0</p>
<h1>Intent-Driven Development
<span>How our consulting pods build software with AI agents — safely enough to put in front of a client.</span>
</h1>
<p class="lede">Agents write code faster than anyone can read it. That doesn't make delivery
faster on its own. This standard moves the work to the two things that now decide the
outcome: saying clearly what you want, and proving that what came back is right.</p>
<div class="onerule"><strong>The one rule:</strong> Claude drafts and interrogates; humans
decide and own. Every gate in the standard exists to enforce it.</div>
<div class="btns">
<a class="btn primary" href="GOLD-STANDARD.html">Read the standard →</a>
<a class="btn ghost" href="docs/companion/day-in-the-loop.html">Watch a day in the loop →</a>
<a class="btn ghost" href="docs/cheatsheet.html">The 20-second version →</a>
</div>
</div>
</header>
<section class="tight">
<div class="wrap">
<h2 class="kicker">In 30 seconds</h2>
<p class="lead-30">When code gets cheap, the hard part moves to two places: <strong>describing
the work</strong> clearly enough to test, and <strong>checking the result</strong> before
anyone trusts it.</p>
<p class="sub">So the work runs as one short loop, repeated for every piece of work from a
one-line fix to a whole feature. Gated phases open and close the engagement; the loop fills
the middle. <em>No checking is just vibe coding — the loop closes it.</em></p>
</div>
</section>
<section>
<div class="wrap">
<h2 class="kicker">The loop · Intent → Delegate → Discern</h2>
<div class="loop">
<div class="step intent">
<div class="n">Step 1</div>
<h3>Intent</h3>
<div class="who">Human owns it</div>
<p>Decide what you want, then write it as a short spec you can test — "returns 401 for a
bad token," not "make auth good."</p>
</div>
<div class="arrow">→</div>
<div class="step delegate">
<div class="n">Step 2</div>
<h3>Delegate</h3>
<div class="who">Agent builds · you set the box</div>
<p>The agent plans first — you approve before any code — then builds and self-checks inside
the scope, context, and permissions you set.</p>
</div>
<div class="arrow">→</div>
<div class="step discern">
<div class="n">Step 3</div>
<h3>Discern</h3>
<div class="who">Gates check · a human approves</div>
<p>Mechanical gates, a separate grader that didn't write the code, and a non-author human
decide it's good — with a named sign-off on anything high-risk.</p>
</div>
</div>
<p class="loop-note">Discern just means working out whether the work is actually good before
anyone trusts it. It's the half of the method most teams skip — and the reason this exists.
<a href="docs/companion/build-loop.html">The build loop, in full →</a>
· <a href="docs/companion/day-in-the-loop.html">Or watch it happen on film →</a></p>
</div>
</section>
<section>
<div class="wrap">
<h2 class="kicker">The shape of an engagement</h2>
<div class="arc">
<div class="panel">
<div class="tag">Open</div>
<h3>Gated phases</h3>
<p>Frame the problem and build the factory — repo, pipeline, and the rules agents work
inside. Each phase ends at a gate a human signs.</p>
<div class="chips">
<a class="chip" href="docs/companion/phase-0.html">0 · Discovery</a>
<a class="chip" href="docs/companion/phase-1.html">1 · Requirements</a>
<a class="chip" href="docs/companion/phase-2.html">2 · Design</a>
<a class="chip" href="docs/companion/phase-3.html">3 · Foundation</a>
</div>
</div>
<div class="panel build">
<div class="tag">Build</div>
<h3>The loop runs</h3>
<p>The middle isn't phased. Every story runs Intent → Delegate → Discern and ships before
the next starts — checking happens per change, never piled up for later.</p>
<div class="chips">
<a class="chip" href="docs/companion/build-loop.html">The build loop</a>
<a class="chip" href="docs/companion/day-in-the-loop.html">A day in the loop · film</a>
<a class="chip" href="docs/companion/the-rails.html">The rails (CI/CD)</a>
<a class="chip" href="docs/team.html">The team</a>
</div>
</div>
<div class="panel">
<div class="tag">Close</div>
<h3>Gated phases</h3>
<p>Document the system, ship to production, and hand everything over — until the client can
run the loop without us.</p>
<div class="chips">
<a class="chip" href="docs/companion/phase-7.html">7 · Docs</a>
<a class="chip" href="docs/companion/phase-8.html">8 · Deploy</a>
<a class="chip" href="docs/companion/phase-9.html">9 · Monitor</a>
<a class="chip" href="docs/companion/phase-c.html">C · Close</a>
</div>
</div>
</div>
<p class="sub" style="margin-top:20px;">Want to go deeper? Each phase has a plain-language <a href="docs/companion/phase-0.html"><strong>interactive walkthrough</strong></a> — the idea, the precise mechanics, and a complete worked example, all on one page.</p>
</div>
</section>
<section>
<div class="wrap">
<h2 class="kicker">Start here · by who you are</h2>
<div class="cards">
<div class="rcard">
<h3>New to the method</h3>
<div class="role">First time here</div>
<ol>
<li><a href="docs/cheatsheet.html">Loop cheat-sheet</a> — 20 seconds</li>
<li><a href="docs/companion/phase-0.html">The phases, explained</a> — plain-language walkthroughs</li>
<li><a href="docs/glossary.html">Glossary</a> — any word that trips you</li>
<li><a href="GOLD-STANDARD.html">The standard</a> — the whole method</li>
</ol>
</div>
<div class="rcard">
<h3>Joining a pod</h3>
<div class="role">On an engagement</div>
<ol>
<li><a href="GOLD-STANDARD.html">The standard</a>, front to back</li>
<li><a href="docs/team.html">The team</a> — find your role</li>
<li><a href="docs/companion/build-loop.html">The build loop</a> + <a href="docs/anti-patterns.html">anti-patterns</a></li>
</ol>
</div>
<div class="rcard">
<h3>Client or sponsor</h3>
<div class="role">Buying / overseeing</div>
<ol>
<li>The 30-second pitch above</li>
<li><a href="docs/faq.html">FAQ</a> — data, decisions, what you'll see</li>
<li><a href="docs/companion/phase-c.html">Close & transfer</a> — what we leave behind</li>
</ol>
</div>
<div class="rcard">
<h3>Leading or selling it</h3>
<div class="role">Engagement owner</div>
<ol>
<li><a href="GOLD-STANDARD.html#s1">The shape</a> + <a href="GOLD-STANDARD.html#s12">commercial chapter</a></li>
<li><a href="docs/faq.html">FAQ</a> — for the objections</li>
<li><a href="docs/anti-patterns.html">Anti-patterns</a> — what to watch for</li>
</ol>
</div>
</div>
</div>
</section>
<section>
<div class="wrap">
<h2 class="kicker">Everything, indexed</h2>
<div class="idx">
<div class="col">
<h3>The standard</h3>
<div class="row"><a href="GOLD-STANDARD.html">The Delivery Standard</a></div>
<div class="row"><a href="docs/team.html">The Team</a></div>
</div>
<div class="col">
<h3>Opening phases</h3>
<div class="row"><a href="docs/companion/phase-0.html">0 · Discovery</a><a class="ex" href="docs/companion/phase-0.html#example">example</a></div>
<div class="row"><a href="docs/companion/phase-1.html">1 · Requirements</a><a class="ex" href="docs/companion/phase-1.html#example">example</a></div>
<div class="row"><a href="docs/companion/phase-2.html">2 · Design</a><a class="ex" href="docs/companion/phase-2.html#example">example</a></div>
<div class="row"><a href="docs/companion/phase-3.html">3 · Foundation</a><a class="ex" href="docs/companion/phase-3.html#example">example</a></div>
</div>
<div class="col">
<h3>The middle</h3>
<div class="row"><a href="docs/companion/build-loop.html">The Build Loop</a><a class="ex" href="docs/companion/build-loop.html#example">example</a></div>
<div class="row"><a href="docs/companion/day-in-the-loop.html">A Day in the Loop</a><a class="ex" href="docs/companion/day-in-the-loop.html">film</a></div>
<div class="row"><a href="docs/companion/the-rails.html">The Rails · CI/CD</a><a class="ex" href="docs/companion/the-rails.html#example">example</a></div>
</div>
<div class="col">
<h3>Closing phases</h3>
<div class="row"><a href="docs/companion/phase-7.html">7 · Documentation</a><a class="ex" href="docs/companion/phase-7.html#example">example</a></div>
<div class="row"><a href="docs/companion/phase-8.html">8 · Deployment</a><a class="ex" href="docs/companion/phase-8.html#example">example</a></div>
<div class="row"><a href="docs/companion/phase-9.html">9 · Monitoring</a><a class="ex" href="docs/companion/phase-9.html#example">example</a></div>
<div class="row"><a href="docs/companion/phase-c.html">C · Close & Transfer</a><a class="ex" href="docs/companion/phase-c.html#example">example</a></div>
</div>
<div class="col">
<h3>Reference & on-ramp</h3>
<div class="row"><a href="docs/companion/artifact-flow.html">The artifact flow</a></div>
<div class="row"><a href="docs/cheatsheet.html">Loop cheat-sheet</a></div>
<div class="row"><a href="docs/glossary.html">Glossary</a></div>
<div class="row"><a href="docs/faq.html">FAQ</a></div>
<div class="row"><a href="docs/anti-patterns.html">Anti-pattern field guide</a></div>
</div>
</div>
</div>
</section>
<footer class="foot">
<div class="wrap">
Intent-Driven Development · The Delivery Standard · MCKRUZ/intent-driven-development v1.0 ·
Owner: Matt Kruczek. Every page exists as a markdown source and a paired HTML render.
</div>
</footer>
</body>
</html>