dxcomplete 0.1.0

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.
Files changed (121) hide show
  1. package/.env.example +11 -0
  2. package/README.md +215 -0
  3. package/dist/cli.d.ts +2 -0
  4. package/dist/cli.js +212 -0
  5. package/dist/http/server.d.ts +7 -0
  6. package/dist/http/server.js +236 -0
  7. package/dist/http/service.d.ts +7 -0
  8. package/dist/http/service.js +725 -0
  9. package/dist/init.d.ts +13 -0
  10. package/dist/init.js +128 -0
  11. package/dist/install-manifest.d.ts +25 -0
  12. package/dist/install-manifest.js +96 -0
  13. package/dist/mcp/docs.d.ts +98 -0
  14. package/dist/mcp/docs.js +438 -0
  15. package/dist/mcp/server.d.ts +20 -0
  16. package/dist/mcp/server.js +2345 -0
  17. package/dist/package-root.d.ts +2 -0
  18. package/dist/package-root.js +28 -0
  19. package/dist/runtime/actor.d.ts +14 -0
  20. package/dist/runtime/actor.js +42 -0
  21. package/dist/runtime/auth.d.ts +162 -0
  22. package/dist/runtime/auth.js +394 -0
  23. package/dist/runtime/check.d.ts +7 -0
  24. package/dist/runtime/check.js +16 -0
  25. package/dist/runtime/config.d.ts +17 -0
  26. package/dist/runtime/config.js +93 -0
  27. package/dist/runtime/mongo.d.ts +9 -0
  28. package/dist/runtime/mongo.js +56 -0
  29. package/dist/runtime/records.d.ts +336 -0
  30. package/dist/runtime/records.js +1463 -0
  31. package/dist/runtime/workspace.d.ts +19 -0
  32. package/dist/runtime/workspace.js +102 -0
  33. package/dist/upgrade.d.ts +20 -0
  34. package/dist/upgrade.js +246 -0
  35. package/dist/validate.d.ts +10 -0
  36. package/dist/validate.js +119 -0
  37. package/dist/version.d.ts +3 -0
  38. package/dist/version.js +12 -0
  39. package/docs/codex-integration.md +29 -0
  40. package/docs/cost-model.md +61 -0
  41. package/docs/decision-basis.md +57 -0
  42. package/docs/diagrams.md +31 -0
  43. package/docs/glossary.md +147 -0
  44. package/docs/index.md +60 -0
  45. package/docs/model.md +110 -0
  46. package/docs/open-questions.md +61 -0
  47. package/docs/roles.md +42 -0
  48. package/docs/taxonomy.md +96 -0
  49. package/docs/workflows.md +60 -0
  50. package/package.json +62 -0
  51. package/scripts/check-env-surface.mjs +136 -0
  52. package/scripts/check-public-copy.mjs +263 -0
  53. package/scripts/check-service-boundary.mjs +63 -0
  54. package/scripts/dogfood-work-order.mjs +506 -0
  55. package/scripts/smoke-mcp-http.mjs +3572 -0
  56. package/src/cli.ts +268 -0
  57. package/src/http/server.ts +314 -0
  58. package/src/http/service.ts +934 -0
  59. package/src/init.ts +227 -0
  60. package/src/install-manifest.ts +144 -0
  61. package/src/mcp/docs.ts +557 -0
  62. package/src/mcp/server.ts +3525 -0
  63. package/src/package-root.ts +31 -0
  64. package/src/runtime/actor.ts +61 -0
  65. package/src/runtime/auth.ts +673 -0
  66. package/src/runtime/check.ts +18 -0
  67. package/src/runtime/config.ts +128 -0
  68. package/src/runtime/mongo.ts +89 -0
  69. package/src/runtime/records.ts +2303 -0
  70. package/src/runtime/workspace.ts +155 -0
  71. package/src/upgrade.ts +356 -0
  72. package/src/validate.ts +139 -0
  73. package/src/version.ts +16 -0
  74. package/templates/github/workflows/dxcomplete.yml +16 -0
  75. package/templates/next/pages/api/auth/callback/google.js +12 -0
  76. package/templates/next/pages/api/dxcomplete/[...path].js +12 -0
  77. package/templates/next/pages/api/dxcomplete.js +12 -0
  78. package/templates/next/pages/api/mcp.js +12 -0
  79. package/templates/next/vercel.json +18 -0
  80. package/templates/process/README.md +38 -0
  81. package/templates/process/controls.yml +113 -0
  82. package/templates/process/cost-model.yml +71 -0
  83. package/templates/process/decision-basis.yml +53 -0
  84. package/templates/process/decisions/.gitkeep +1 -0
  85. package/templates/process/diagrams/00-decision-basis.mmd +24 -0
  86. package/templates/process/diagrams/00-overview.mmd +20 -0
  87. package/templates/process/diagrams/01-intake-triage.mmd +20 -0
  88. package/templates/process/diagrams/02-product-definition.mmd +14 -0
  89. package/templates/process/diagrams/03-engineering-execution.mmd +15 -0
  90. package/templates/process/diagrams/04-qa-verification.mmd +12 -0
  91. package/templates/process/diagrams/05-product-validation.mmd +12 -0
  92. package/templates/process/diagrams/06-change-release-control.mmd +16 -0
  93. package/templates/process/diagrams/07-deployment-operations.mmd +16 -0
  94. package/templates/process/diagrams/08-support-incident-management.mmd +16 -0
  95. package/templates/process/diagrams/09-problem-improvement.mmd +14 -0
  96. package/templates/process/diagrams/10-risk-control-management.mmd +14 -0
  97. package/templates/process/diagrams/11-audit-evidence-capture.mmd +13 -0
  98. package/templates/process/evidence/.gitkeep +1 -0
  99. package/templates/process/risks/.gitkeep +1 -0
  100. package/templates/process/roles.yml +96 -0
  101. package/templates/process/taxonomy.yml +514 -0
  102. package/templates/process/workflows.yml +210 -0
  103. package/website/.well-known/oauth-authorization-server +22 -0
  104. package/website/.well-known/oauth-protected-resource/api/dxcomplete/mcp +10 -0
  105. package/website/.well-known/oauth-protected-resource/api/mcp +10 -0
  106. package/website/README.md +12 -0
  107. package/website/app.js +36 -0
  108. package/website/flow.html +85 -0
  109. package/website/glossary.html +280 -0
  110. package/website/index.html +90 -0
  111. package/website/objects.html +287 -0
  112. package/website/outcomes.html +117 -0
  113. package/website/phase-build.html +101 -0
  114. package/website/phase-elicit.html +102 -0
  115. package/website/phase-go-live.html +103 -0
  116. package/website/phase-measure.html +93 -0
  117. package/website/phase-operate.html +102 -0
  118. package/website/phase-orient.html +92 -0
  119. package/website/phase-weigh.html +98 -0
  120. package/website/roles.html +52 -0
  121. package/website/styles.css +1169 -0
@@ -0,0 +1,280 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>Glossary | DX Complete</title>
7
+ <link rel="stylesheet" href="./styles.css?v=5" />
8
+ </head>
9
+ <body>
10
+ <a class="skip-link" href="#content">Skip to content</a>
11
+ <header class="topbar">
12
+ <div class="topbar__brand">
13
+ <span class="brand-mark" aria-hidden="true">DX</span>
14
+ <span><strong>DX Complete</strong><small>Plan, deliver, run, measure</small></span>
15
+ </div>
16
+ </header>
17
+ <div class="layout">
18
+ <aside class="sidebar" aria-label="Documentation pages">
19
+ <div class="sidebar__eyebrow">Pages</div>
20
+ <nav>
21
+ <a class="nav-link" href="./index.html">Start here</a>
22
+ <a class="nav-link" href="./outcomes.html">Outcomes</a>
23
+ <a class="nav-link" href="./flow.html">Flow</a>
24
+ <a class="nav-link" href="./objects.html">Records</a>
25
+ <a class="nav-link" href="./roles.html">Roles</a>
26
+ <a class="nav-link" href="./glossary.html">Glossary</a>
27
+ </nav>
28
+ </aside>
29
+ <main id="content" class="content" tabindex="-1">
30
+ <section class="doc-section doc-section--last">
31
+ <p class="section-kicker">Reference</p>
32
+ <h1>Glossary</h1>
33
+ <p class="lede">
34
+ Common DX Complete terms, written in plain language.
35
+ </p>
36
+
37
+ <nav class="az-index" aria-label="Glossary A-Z index">
38
+ <a href="#a">A</a>
39
+ <a href="#b">B</a>
40
+ <a href="#c">C</a>
41
+ <a href="#d">D</a>
42
+ <a href="#e">E</a>
43
+ <a href="#f">F</a>
44
+ <a href="#g">G</a>
45
+ <a href="#h">H</a>
46
+ <a href="#i">I</a>
47
+ <a href="#j">J</a>
48
+ <span aria-disabled="true">K</span>
49
+ <a href="#l">L</a>
50
+ <a href="#m">M</a>
51
+ <span aria-disabled="true">N</span>
52
+ <a href="#o">O</a>
53
+ <a href="#p">P</a>
54
+ <a href="#q">Q</a>
55
+ <a href="#r">R</a>
56
+ <a href="#s">S</a>
57
+ <a href="#t">T</a>
58
+ <a href="#u">U</a>
59
+ <a href="#v">V</a>
60
+ <a href="#w">W</a>
61
+ <span aria-disabled="true">X</span>
62
+ <span aria-disabled="true">Y</span>
63
+ <span aria-disabled="true">Z</span>
64
+ </nav>
65
+
66
+ <div class="glossary-alpha" aria-label="Alphabetical glossary">
67
+ <section id="a" class="glossary-letter">
68
+ <h2>A</h2>
69
+ <dl class="glossary-list">
70
+ <div><dt>Approval <span>Risk and decisions</span></dt><dd>A separate authority confirming an expectation or decision, tracked when it reduces risk.</dd></div>
71
+ </dl>
72
+ </section>
73
+
74
+ <section id="b" class="glossary-letter">
75
+ <h2>B</h2>
76
+ <dl class="glossary-list">
77
+ <div><dt>Benefit Item <span>Cost and benefit</span></dt><dd>One item inside Benefits. It may have an amount or range, or it may be qualitative with no amount.</dd></div>
78
+ <div><dt>Benefits <span>Cost and benefit</span></dt><dd>The expected value used during Weigh. Benefits may be quantified or qualitative.</dd></div>
79
+ <div><dt>Build <span>Delivery</span></dt><dd>Turning committed requirements into tasks, working changes, and verification.</dd></div>
80
+ </dl>
81
+ </section>
82
+
83
+ <section id="c" class="glossary-letter">
84
+ <h2>C</h2>
85
+ <dl class="glossary-list">
86
+ <div><dt>Change <span>Delivery</span></dt><dd>A record for a specific alteration to the running service. It keeps the plan, execution, rollback, notice, veto, emergency, decision, result, and recovery history without controlling the operation.</dd></div>
87
+ <div><dt>Change Plan <span>Delivery</span></dt><dd>The part of a Change record that explains what is changing, why, scope, timing, and notice.</dd></div>
88
+ <div><dt>Checkpoint <span>Risk and decisions</span></dt><dd>A confirmation point that reduces risk. It can be approved, formally accepted as risk by the Owner, or proceeded past with open risk visible.</dd></div>
89
+ <div><dt>Codex <span>Delivery</span></dt><dd>A coding-capable model that may assist the Engineer. Codex is not a role.</dd></div>
90
+ <div><dt>Commitment <span>Business context</span></dt><dd>An Owner record that says preparation is sufficient to commit requirements or expectations into Build, with any reservations kept visible.</dd></div>
91
+ <div><dt>Complete Engineering <span>Delivery</span></dt><dd>The delivery part of DX Complete: build, check, validate, and put the change into use.</dd></div>
92
+ <div><dt>Component <span>Run and support</span></dt><dd>One operational item in one Environment, such as an app, database, queue, storage location, or external service.</dd></div>
93
+ <div><dt>Condition <span>Business context</span></dt><dd>Something that must be addressed before a Deferral can resolve into a Commitment.</dd></div>
94
+ <div><dt>Constraints <span>Business context</span></dt><dd>Limits that affect the work, such as time, access, policy, budget, or risk.</dd></div>
95
+ <div><dt>Control <span>Risk and decisions</span></dt><dd>A rule, check, or approval used to reduce risk.</dd></div>
96
+ </dl>
97
+ </section>
98
+
99
+ <section id="d" class="glossary-letter">
100
+ <h2>D</h2>
101
+ <dl class="glossary-list">
102
+ <div><dt>Decision <span>Risk and decisions</span></dt><dd>A recorded choice with entries kept in order. The latest decision entry is the current decision, while earlier entries remain visible.</dd></div>
103
+ <div><dt>Decision Entry <span>Risk and decisions</span></dt><dd>One entry in a decision, such as an argument, note, or choice.</dd></div>
104
+ <div><dt>Decision Input <span>Risk and decisions</span></dt><dd>A record that informed a decision. A decision can show what informed it, and a record can show which decisions used it.</dd></div>
105
+ <div><dt>Deferral <span>Business context</span></dt><dd>An Owner record for not committing yet, with explicit conditions that make the path to a future Commitment clear.</dd></div>
106
+ <div><dt>Dependencies <span>Business context</span></dt><dd>People, systems, data, or decisions the work depends on.</dd></div>
107
+ <div><dt>Deployment <span>Delivery</span></dt><dd>Putting a release or change into use.</dd></div>
108
+ <div><dt>DX Complete Ticket <span>Business context</span></dt><dd>A private item used to raise a question, report, request, correction, or follow-up with DX Complete.</dd></div>
109
+ </dl>
110
+ </section>
111
+
112
+ <section id="e" class="glossary-letter">
113
+ <h2>E</h2>
114
+ <dl class="glossary-list">
115
+ <div><dt>Elicit <span>Business context</span></dt><dd>Turning expectations into requirements, dependencies, unknowns, and risk before estimating the work.</dd></div>
116
+ <div><dt>Emergency Change <span>Delivery</span></dt><dd>A change where normal notice is shortened or skipped because both importance and immediacy are recorded.</dd></div>
117
+ <div><dt>End User <span>Role</span></dt><dd>The person the service is for; uses the service and provides requests, feedback, corrections, and issue reports.</dd></div>
118
+ <div><dt>Engineer <span>Role</span></dt><dd>The role that turns committed requirements into tasks and working changes, directly or by driving coding-capable tools.</dd></div>
119
+ <div><dt>Environment <span>Run and support</span></dt><dd>A named operating context such as local, staging, or production. Components belong to one Environment so each context can be understood separately.</dd></div>
120
+ <div><dt>Estimate <span>Cost and benefit</span></dt><dd>An itemized cost estimate used during Weigh, linked to the requirements or expectations it covers.</dd></div>
121
+ <div><dt>Estimate Line Item <span>Cost and benefit</span></dt><dd>One cost item inside an Estimate, with a label, amount or range, one-time or recurring timing, and currency.</dd></div>
122
+ <div><dt>Estimate Refinement <span>Cost and benefit</span></dt><dd>Using real results to improve future cost and benefit estimates.</dd></div>
123
+ <div><dt>Evidence <span>Risk and decisions</span></dt><dd>Information that supports a decision, check, release, or measurement.</dd></div>
124
+ <div><dt>Execution Plan <span>Delivery</span></dt><dd>The ordered practical steps inside a Change record for carrying out the change.</dd></div>
125
+ <div><dt>Expectation <span>Business context</span></dt><dd>The result a person or group expects, including how success will be recognized, with approval tracked where needed.</dd></div>
126
+ </dl>
127
+ </section>
128
+
129
+ <section id="f" class="glossary-letter">
130
+ <h2>F</h2>
131
+ <dl class="glossary-list">
132
+ <div><dt>Feedback <span>Run and support</span></dt><dd>A signal from a user, support interaction, service issue, or observed result.</dd></div>
133
+ </dl>
134
+ </section>
135
+
136
+ <section id="g" class="glossary-letter">
137
+ <h2>G</h2>
138
+ <dl class="glossary-list">
139
+ <div><dt>Go Live <span>Delivery</span></dt><dd>Putting a change into use after readiness is confirmed.</dd></div>
140
+ <div><dt>Greenfield <span>Business context</span></dt><dd>Work that starts from a new idea rather than an existing service.</dd></div>
141
+ </dl>
142
+ </section>
143
+
144
+ <section id="h" class="glossary-letter">
145
+ <h2>H</h2>
146
+ <dl class="glossary-list">
147
+ <div><dt>Handoff <span>Delivery</span></dt><dd>The point where a phase has enough clarity to move into the next phase.</dd></div>
148
+ </dl>
149
+ </section>
150
+
151
+ <section id="i" class="glossary-letter">
152
+ <h2>I</h2>
153
+ <dl class="glossary-list">
154
+ <div><dt>Incident <span>Run and support</span></dt><dd>An event that affects, or may affect, the service and needs a response.</dd></div>
155
+ <div><dt>Informed By <span>Risk and decisions</span></dt><dd>The relationship from a decision to the record that helped inform it.</dd></div>
156
+ </dl>
157
+ </section>
158
+
159
+ <section id="j" class="glossary-letter">
160
+ <h2>J</h2>
161
+ <dl class="glossary-list">
162
+ <div><dt>Journal <span>Business context</span></dt><dd>A shared workspace record for useful notes that do not have a better dedicated home.</dd></div>
163
+ <div><dt>Journal Note <span>Business context</span></dt><dd>A raw Journal entry with text, author, and time. It can be summarized later without being deleted.</dd></div>
164
+ <div><dt>Journal Summary <span>Business context</span></dt><dd>A compact Journal entry that summarizes older notes and points back to them so details remain retrievable.</dd></div>
165
+ </dl>
166
+ </section>
167
+
168
+ <section id="l" class="glossary-letter">
169
+ <h2>L</h2>
170
+ <dl class="glossary-list">
171
+ <div><dt>Limited Disclosure <span>Business context</span></dt><dd>A situation where some information is unavailable or cannot be shared.</dd></div>
172
+ <div><dt>Locator <span>Run and support</span></dt><dd>Location information for a Component, such as a URL, project, region, host, or route.</dd></div>
173
+ </dl>
174
+ </section>
175
+
176
+ <section id="m" class="glossary-letter">
177
+ <h2>M</h2>
178
+ <dl class="glossary-list">
179
+ <div><dt>Measure <span>Cost and benefit</span></dt><dd>Compare expected and actual cost or benefit when data is available.</dd></div>
180
+ <div><dt>Measurement <span>Cost and benefit</span></dt><dd>Comparing expected and actual cost or benefit when data is available.</dd></div>
181
+ </dl>
182
+ </section>
183
+
184
+ <section id="o" class="glossary-letter">
185
+ <h2>O</h2>
186
+ <dl class="glossary-list">
187
+ <div><dt>Operate <span>Run and support</span></dt><dd>Run the service, support users, and respond to issues.</dd></div>
188
+ <div><dt>Operational Registry <span>Run and support</span></dt><dd>The inventory of Environments and Components. It shows what exists and where it lives without monitoring, diagnosing, storing secret values, or replacing operating procedures.</dd></div>
189
+ <div><dt>Operator <span>Role</span></dt><dd>The role that releases, deploys, monitors, runs the service, and manages users, permissions, settings, provisioning, and run-side security.</dd></div>
190
+ <div><dt>Outcome <span>Business context</span></dt><dd>The result the work is meant to create or improve.</dd></div>
191
+ <div><dt>Owner <span>Role</span></dt><dd>The role that sets authority, priority, outcome direction, requirements, product validation direction, budget commitment, escalation direction, and formal risk acceptance.</dd></div>
192
+ </dl>
193
+ </section>
194
+
195
+ <section id="p" class="glossary-letter">
196
+ <h2>P</h2>
197
+ <dl class="glossary-list">
198
+ <div><dt>Problem <span>Run and support</span></dt><dd>An underlying or repeated issue that may need deeper improvement work.</dd></div>
199
+ <div><dt>Proceeding Past an Open Checkpoint <span>Risk and decisions</span></dt><dd>Moving forward while an approval, readiness concern, or other checkpoint is still open. The risk remains visible and is not formally accepted.</dd></div>
200
+ <div><dt>Product Validation <span>Delivery</span></dt><dd>Confirming that the completed work achieves the intended outcome.</dd></div>
201
+ </dl>
202
+ </section>
203
+
204
+ <section id="q" class="glossary-letter">
205
+ <h2>Q</h2>
206
+ <dl class="glossary-list">
207
+ <div><dt>QA Verification <span>Delivery</span></dt><dd>Checking that completed work meets the requirements and success criteria.</dd></div>
208
+ </dl>
209
+ </section>
210
+
211
+ <section id="r" class="glossary-letter">
212
+ <h2>R</h2>
213
+ <dl class="glossary-list">
214
+ <div><dt>Readable ID <span>Business context</span></dt><dd>A short record reference such as REQ-0001. It helps people refer to a record without reading the full system ID.</dd></div>
215
+ <div><dt>Readiness Checks <span>Delivery</span></dt><dd>The checks used before Go Live to confirm that a change is prepared, supportable, and safe enough to put into use.</dd></div>
216
+ <div><dt>Record <span>Business context</span></dt><dd>Information kept so decisions, work, service issues, and measurements can be followed over time.</dd></div>
217
+ <div><dt>Record Link <span>Business context</span></dt><dd>A relationship from one record to another. Links can be added or removed when the relationship changes or was recorded incorrectly.</dd></div>
218
+ <div><dt>Release <span>Delivery</span></dt><dd>A set of changes prepared to be put into use.</dd></div>
219
+ <div><dt>Requirement <span>Delivery</span></dt><dd>A commitment to make something true in a buildable and checkable way.</dd></div>
220
+ <div><dt>Requirement Detail <span>Delivery</span></dt><dd>Optional behavior, edge cases, or check notes kept with a requirement.</dd></div>
221
+ <div><dt>Requirement Set <span>Business context</span></dt><dd>The group of requirements being estimated, committed, built, or stopped together.</dd></div>
222
+ <div><dt>Reservation <span>Business context</span></dt><dd>A concern recorded inside a Commitment when the Owner moves forward despite it.</dd></div>
223
+ <div><dt>Review Note <span>Delivery</span></dt><dd>A free-text note on an expectation or requirement. It may be marked important, but it does not block progress or require an Owner response.</dd></div>
224
+ <div><dt>Risk <span>Risk and decisions</span></dt><dd>Something uncertain that could affect value, delivery, service, or compliance.</dd></div>
225
+ <div><dt>Risk Acceptance <span>Risk and decisions</span></dt><dd>An Owner decision to own an open risk on the project's behalf. It is different from simply proceeding past an open checkpoint.</dd></div>
226
+ <div><dt>Roll-up <span>Cost and benefit</span></dt><dd>Grouped totals from quantified cost or benefit items, keeping one-time amounts, recurring amounts, periods, and currencies distinct.</dd></div>
227
+ <div><dt>Rollback Plan <span>Delivery</span></dt><dd>The part of a Change record that explains how to reverse or recover if the change fails or should not remain in use.</dd></div>
228
+ </dl>
229
+ </section>
230
+
231
+ <section id="s" class="glossary-letter">
232
+ <h2>S</h2>
233
+ <dl class="glossary-list">
234
+ <div><dt>Secret Pointer <span>Run and support</span></dt><dd>A reference to where a secret is stored and what it is called. It should not contain the secret value.</dd></div>
235
+ <div><dt>Statement <span>Business context</span></dt><dd>A person's own words before they are interpreted or translated.</dd></div>
236
+ <div><dt>Success Criteria <span>Delivery</span></dt><dd>The conditions used to decide whether completed work satisfies the need.</dd></div>
237
+ <div><dt>Support Agent <span>Role</span></dt><dd>The role that helps users, captures signals, and routes questions, feedback, and issues to the right follow-up.</dd></div>
238
+ <div><dt>Support Ticket <span>Run and support</span></dt><dd>A user request, question, or issue report.</dd></div>
239
+ </dl>
240
+ </section>
241
+
242
+ <section id="t" class="glossary-letter">
243
+ <h2>T</h2>
244
+ <dl class="glossary-list">
245
+ <div><dt>Task <span>Delivery</span></dt><dd>A piece of work with entries kept in order. The latest status entry is the current task status.</dd></div>
246
+ <div><dt>Task Entry <span>Delivery</span></dt><dd>One entry in a task, such as a comment, note, or status change.</dd></div>
247
+ <div><dt>Tester <span>Role</span></dt><dd>The role that checks completed work against requirements and success criteria.</dd></div>
248
+ <div><dt>Transformation <span>Business context</span></dt><dd>Improving an existing service or way of working.</dd></div>
249
+ </dl>
250
+ </section>
251
+
252
+ <section id="u" class="glossary-letter">
253
+ <h2>U</h2>
254
+ <dl class="glossary-list">
255
+ <div><dt>Unknowns <span>Business context</span></dt><dd>Important questions that are not answered yet.</dd></div>
256
+ </dl>
257
+ </section>
258
+
259
+ <section id="v" class="glossary-letter">
260
+ <h2>V</h2>
261
+ <dl class="glossary-list">
262
+ <div><dt>Version History <span>Risk and decisions</span></dt><dd>Prior versions kept when an expectation or requirement changes, so current wording can be understood without losing what came before.</dd></div>
263
+ <div><dt>Veto <span>Risk and decisions</span></dt><dd>A serious recorded objection to a Change by the Owner or Engineer. It does not mechanically stop the Operator, but proceeding over it creates a strong accountability record.</dd></div>
264
+ </dl>
265
+ </section>
266
+
267
+ <section id="w" class="glossary-letter">
268
+ <h2>W</h2>
269
+ <dl class="glossary-list">
270
+ <div><dt>Weigh <span>Business context</span></dt><dd>The phase where cost, value, risk, and confidence are compared before recording a Commitment or Deferral.</dd></div>
271
+ <div><dt>Workspace <span>Business context</span></dt><dd>The container for one service and the work connected to it.</dd></div>
272
+ </dl>
273
+ </section>
274
+ </div>
275
+ </section>
276
+ </main>
277
+ </div>
278
+ <script src="./app.js?v=5"></script>
279
+ </body>
280
+ </html>
@@ -0,0 +1,90 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
6
+ <title>DX Complete Documentation</title>
7
+ <link rel="stylesheet" href="./styles.css?v=5" />
8
+ </head>
9
+ <body>
10
+ <a class="skip-link" href="#content">Skip to content</a>
11
+
12
+ <header class="topbar">
13
+ <div class="topbar__brand">
14
+ <span class="brand-mark" aria-hidden="true">DX</span>
15
+ <span>
16
+ <strong>DX Complete</strong>
17
+ <small>Plan, deliver, run, measure</small>
18
+ </span>
19
+ </div>
20
+ </header>
21
+
22
+ <div class="layout">
23
+ <aside class="sidebar" aria-label="Documentation pages">
24
+ <div class="sidebar__eyebrow">Pages</div>
25
+ <nav>
26
+ <a class="nav-link" href="./index.html">Start here</a>
27
+ <a class="nav-link" href="./outcomes.html">Outcomes</a>
28
+ <a class="nav-link" href="./flow.html">Flow</a>
29
+ <a class="nav-link" href="./objects.html">Records</a>
30
+ <a class="nav-link" href="./roles.html">Roles</a>
31
+ <a class="nav-link" href="./glossary.html">Glossary</a>
32
+ </nav>
33
+ </aside>
34
+
35
+ <main id="content" class="content" tabindex="-1">
36
+ <section class="doc-section doc-section--last">
37
+ <p class="section-kicker">Start here</p>
38
+ <h1>DX Complete</h1>
39
+ <p class="lede">
40
+ A practical way to decide what is worth doing, deliver it with control, run it safely, and learn from the results.
41
+ </p>
42
+ <p>
43
+ The documentation is split into outcomes, flow, records, roles, and terms. Outcomes explain why the process exists. Flow explains what happens over time. Records explain what gets captured. Roles explain who is responsible. The glossary defines shared language.
44
+ </p>
45
+
46
+ <div class="phase-map" aria-label="DX Complete broad phases">
47
+ <div>
48
+ <span>01</span>
49
+ <strong>Orient</strong>
50
+ <p>Capture the desired outcome, restate expectations, and confirm how success will be recognized.</p>
51
+ </div>
52
+ <div>
53
+ <span>02</span>
54
+ <strong>Elicit</strong>
55
+ <p>Turn expectations into requirements, dependencies, unknowns, and risk.</p>
56
+ </div>
57
+ <div>
58
+ <span>03</span>
59
+ <strong>Weigh</strong>
60
+ <p>Compare expected cost, expected value, risks, and confidence before recording a Commitment or Deferral.</p>
61
+ </div>
62
+ <div>
63
+ <span>04</span>
64
+ <strong>Build</strong>
65
+ <p>Turn committed requirements into tasks and working changes.</p>
66
+ </div>
67
+ <div>
68
+ <span>05</span>
69
+ <strong>Go Live</strong>
70
+ <p>Prepare the change, confirm readiness, and put it into use.</p>
71
+ </div>
72
+ <div>
73
+ <span>06</span>
74
+ <strong>Operate</strong>
75
+ <p>Run the service, help users, and respond when something goes wrong.</p>
76
+ </div>
77
+ <div>
78
+ <span>07</span>
79
+ <strong>Measure</strong>
80
+ <p>Compare expected and actual cost or benefit when data is available.</p>
81
+ </div>
82
+ </div>
83
+
84
+ </section>
85
+ </main>
86
+ </div>
87
+
88
+ <script src="./app.js?v=5"></script>
89
+ </body>
90
+ </html>