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.
- package/.env.example +11 -0
- package/README.md +215 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +212 -0
- package/dist/http/server.d.ts +7 -0
- package/dist/http/server.js +236 -0
- package/dist/http/service.d.ts +7 -0
- package/dist/http/service.js +725 -0
- package/dist/init.d.ts +13 -0
- package/dist/init.js +128 -0
- package/dist/install-manifest.d.ts +25 -0
- package/dist/install-manifest.js +96 -0
- package/dist/mcp/docs.d.ts +98 -0
- package/dist/mcp/docs.js +438 -0
- package/dist/mcp/server.d.ts +20 -0
- package/dist/mcp/server.js +2345 -0
- package/dist/package-root.d.ts +2 -0
- package/dist/package-root.js +28 -0
- package/dist/runtime/actor.d.ts +14 -0
- package/dist/runtime/actor.js +42 -0
- package/dist/runtime/auth.d.ts +162 -0
- package/dist/runtime/auth.js +394 -0
- package/dist/runtime/check.d.ts +7 -0
- package/dist/runtime/check.js +16 -0
- package/dist/runtime/config.d.ts +17 -0
- package/dist/runtime/config.js +93 -0
- package/dist/runtime/mongo.d.ts +9 -0
- package/dist/runtime/mongo.js +56 -0
- package/dist/runtime/records.d.ts +336 -0
- package/dist/runtime/records.js +1463 -0
- package/dist/runtime/workspace.d.ts +19 -0
- package/dist/runtime/workspace.js +102 -0
- package/dist/upgrade.d.ts +20 -0
- package/dist/upgrade.js +246 -0
- package/dist/validate.d.ts +10 -0
- package/dist/validate.js +119 -0
- package/dist/version.d.ts +3 -0
- package/dist/version.js +12 -0
- package/docs/codex-integration.md +29 -0
- package/docs/cost-model.md +61 -0
- package/docs/decision-basis.md +57 -0
- package/docs/diagrams.md +31 -0
- package/docs/glossary.md +147 -0
- package/docs/index.md +60 -0
- package/docs/model.md +110 -0
- package/docs/open-questions.md +61 -0
- package/docs/roles.md +42 -0
- package/docs/taxonomy.md +96 -0
- package/docs/workflows.md +60 -0
- package/package.json +62 -0
- package/scripts/check-env-surface.mjs +136 -0
- package/scripts/check-public-copy.mjs +263 -0
- package/scripts/check-service-boundary.mjs +63 -0
- package/scripts/dogfood-work-order.mjs +506 -0
- package/scripts/smoke-mcp-http.mjs +3572 -0
- package/src/cli.ts +268 -0
- package/src/http/server.ts +314 -0
- package/src/http/service.ts +934 -0
- package/src/init.ts +227 -0
- package/src/install-manifest.ts +144 -0
- package/src/mcp/docs.ts +557 -0
- package/src/mcp/server.ts +3525 -0
- package/src/package-root.ts +31 -0
- package/src/runtime/actor.ts +61 -0
- package/src/runtime/auth.ts +673 -0
- package/src/runtime/check.ts +18 -0
- package/src/runtime/config.ts +128 -0
- package/src/runtime/mongo.ts +89 -0
- package/src/runtime/records.ts +2303 -0
- package/src/runtime/workspace.ts +155 -0
- package/src/upgrade.ts +356 -0
- package/src/validate.ts +139 -0
- package/src/version.ts +16 -0
- package/templates/github/workflows/dxcomplete.yml +16 -0
- package/templates/next/pages/api/auth/callback/google.js +12 -0
- package/templates/next/pages/api/dxcomplete/[...path].js +12 -0
- package/templates/next/pages/api/dxcomplete.js +12 -0
- package/templates/next/pages/api/mcp.js +12 -0
- package/templates/next/vercel.json +18 -0
- package/templates/process/README.md +38 -0
- package/templates/process/controls.yml +113 -0
- package/templates/process/cost-model.yml +71 -0
- package/templates/process/decision-basis.yml +53 -0
- package/templates/process/decisions/.gitkeep +1 -0
- package/templates/process/diagrams/00-decision-basis.mmd +24 -0
- package/templates/process/diagrams/00-overview.mmd +20 -0
- package/templates/process/diagrams/01-intake-triage.mmd +20 -0
- package/templates/process/diagrams/02-product-definition.mmd +14 -0
- package/templates/process/diagrams/03-engineering-execution.mmd +15 -0
- package/templates/process/diagrams/04-qa-verification.mmd +12 -0
- package/templates/process/diagrams/05-product-validation.mmd +12 -0
- package/templates/process/diagrams/06-change-release-control.mmd +16 -0
- package/templates/process/diagrams/07-deployment-operations.mmd +16 -0
- package/templates/process/diagrams/08-support-incident-management.mmd +16 -0
- package/templates/process/diagrams/09-problem-improvement.mmd +14 -0
- package/templates/process/diagrams/10-risk-control-management.mmd +14 -0
- package/templates/process/diagrams/11-audit-evidence-capture.mmd +13 -0
- package/templates/process/evidence/.gitkeep +1 -0
- package/templates/process/risks/.gitkeep +1 -0
- package/templates/process/roles.yml +96 -0
- package/templates/process/taxonomy.yml +514 -0
- package/templates/process/workflows.yml +210 -0
- package/website/.well-known/oauth-authorization-server +22 -0
- package/website/.well-known/oauth-protected-resource/api/dxcomplete/mcp +10 -0
- package/website/.well-known/oauth-protected-resource/api/mcp +10 -0
- package/website/README.md +12 -0
- package/website/app.js +36 -0
- package/website/flow.html +85 -0
- package/website/glossary.html +280 -0
- package/website/index.html +90 -0
- package/website/objects.html +287 -0
- package/website/outcomes.html +117 -0
- package/website/phase-build.html +101 -0
- package/website/phase-elicit.html +102 -0
- package/website/phase-go-live.html +103 -0
- package/website/phase-measure.html +93 -0
- package/website/phase-operate.html +102 -0
- package/website/phase-orient.html +92 -0
- package/website/phase-weigh.html +98 -0
- package/website/roles.html +52 -0
- package/website/styles.css +1169 -0
|
@@ -0,0 +1,103 @@
|
|
|
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>Go Live | 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">
|
|
31
|
+
<p class="section-kicker">Phase 05</p>
|
|
32
|
+
<h1>Go Live</h1>
|
|
33
|
+
<p class="lede">
|
|
34
|
+
Go Live prepares a specific change, confirms readiness, records the plan, and puts it into use.
|
|
35
|
+
</p>
|
|
36
|
+
<p>
|
|
37
|
+
Read the workflow from top to bottom. Each column shows the role leading that step.
|
|
38
|
+
</p>
|
|
39
|
+
<div class="lane-workflow lane-workflow--five" aria-label="Go Live phase workflow">
|
|
40
|
+
<div class="lane-head">Engineer</div>
|
|
41
|
+
<div class="lane-head">Tester</div>
|
|
42
|
+
<div class="lane-head">Operator</div>
|
|
43
|
+
<div class="lane-head">Owner</div>
|
|
44
|
+
<div class="lane-head">Support Agent</div>
|
|
45
|
+
<div class="lane-cell"><div class="work-step">Prepares the release and change details.</div></div>
|
|
46
|
+
<div class="lane-cell"></div>
|
|
47
|
+
<div class="lane-cell"></div>
|
|
48
|
+
<div class="lane-cell"></div>
|
|
49
|
+
<div class="lane-cell"></div>
|
|
50
|
+
<div class="lane-cell"></div>
|
|
51
|
+
<div class="lane-cell"><div class="work-step">Confirms readiness checks are complete.</div></div>
|
|
52
|
+
<div class="lane-cell"><div class="work-step">Records the change plan, execution steps, and rollback path.</div></div>
|
|
53
|
+
<div class="lane-cell"></div>
|
|
54
|
+
<div class="lane-cell"><div class="work-step">Prepares user help and known issue notes.</div></div>
|
|
55
|
+
<div class="lane-cell"></div>
|
|
56
|
+
<div class="lane-cell"></div>
|
|
57
|
+
<div class="lane-cell"><div class="work-step work-step--choice">Ready to proceed?</div></div>
|
|
58
|
+
<div class="lane-cell"><div class="work-step">Accepts open risk when formal ownership is needed.</div></div>
|
|
59
|
+
<div class="lane-cell"></div>
|
|
60
|
+
<div class="lane-cell"></div>
|
|
61
|
+
<div class="lane-cell"></div>
|
|
62
|
+
<div class="lane-cell"><div class="work-step">Puts the change into use and records the result.</div></div>
|
|
63
|
+
<div class="lane-cell"></div>
|
|
64
|
+
<div class="lane-cell"><div class="work-step">Supports users after the change is live.</div></div>
|
|
65
|
+
</div>
|
|
66
|
+
</section>
|
|
67
|
+
<section class="doc-section doc-section--last">
|
|
68
|
+
<div class="phase-summary">
|
|
69
|
+
<section>
|
|
70
|
+
<h2>Records</h2>
|
|
71
|
+
<ul>
|
|
72
|
+
<li>Change</li>
|
|
73
|
+
<li>Task</li>
|
|
74
|
+
<li>Decision</li>
|
|
75
|
+
<li>Risk</li>
|
|
76
|
+
</ul>
|
|
77
|
+
</section>
|
|
78
|
+
<section>
|
|
79
|
+
<h2>Important choices</h2>
|
|
80
|
+
<ul>
|
|
81
|
+
<li>Are readiness checks complete?</li>
|
|
82
|
+
<li>Has notice been given, and is any veto recorded?</li>
|
|
83
|
+
<li>If this is an emergency, are both importance and immediacy clear?</li>
|
|
84
|
+
<li>Is any open risk visible or formally accepted by the Owner?</li>
|
|
85
|
+
<li>Should the change proceed, be deferred, be cancelled, or need recovery?</li>
|
|
86
|
+
</ul>
|
|
87
|
+
</section>
|
|
88
|
+
<section>
|
|
89
|
+
<h2>Handoff</h2>
|
|
90
|
+
<p>Go Live ends when the change history shows what was decided, what happened, and whether recovery was needed.</p>
|
|
91
|
+
</section>
|
|
92
|
+
</div>
|
|
93
|
+
<div class="phase-nav">
|
|
94
|
+
<a href="./phase-build.html">Previous: Build</a>
|
|
95
|
+
<a href="./flow.html">All phases</a>
|
|
96
|
+
<a href="./phase-operate.html">Next: Operate</a>
|
|
97
|
+
</div>
|
|
98
|
+
</section>
|
|
99
|
+
</main>
|
|
100
|
+
</div>
|
|
101
|
+
<script src="./app.js?v=5"></script>
|
|
102
|
+
</body>
|
|
103
|
+
</html>
|
|
@@ -0,0 +1,93 @@
|
|
|
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>Measure | 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">
|
|
31
|
+
<p class="section-kicker">Phase 07</p>
|
|
32
|
+
<h1>Measure</h1>
|
|
33
|
+
<p class="lede">
|
|
34
|
+
Measure compares expected and actual cost or benefit when useful data is available.
|
|
35
|
+
</p>
|
|
36
|
+
<p>
|
|
37
|
+
Read the workflow from top to bottom. Each column shows the role leading that step.
|
|
38
|
+
</p>
|
|
39
|
+
<div class="lane-workflow lane-workflow--three" aria-label="Measure phase workflow">
|
|
40
|
+
<div class="lane-head">Operator</div>
|
|
41
|
+
<div class="lane-head">Owner</div>
|
|
42
|
+
<div class="lane-head">Engineer</div>
|
|
43
|
+
<div class="lane-cell"><div class="work-step">Gathers actual run cost and service data when available.</div></div>
|
|
44
|
+
<div class="lane-cell"><div class="work-step">Gathers benefit signals and user outcomes.</div></div>
|
|
45
|
+
<div class="lane-cell"></div>
|
|
46
|
+
<div class="lane-cell"></div>
|
|
47
|
+
<div class="lane-cell"><div class="work-step work-step--choice">Is useful measurement data available?</div></div>
|
|
48
|
+
<div class="lane-cell"></div>
|
|
49
|
+
<div class="lane-cell"></div>
|
|
50
|
+
<div class="lane-cell"></div>
|
|
51
|
+
<div class="lane-cell"><div class="work-step">Compares delivery results with the original estimate.</div></div>
|
|
52
|
+
<div class="lane-cell"></div>
|
|
53
|
+
<div class="lane-cell"><div class="work-step">Compares actual results with expected value and reviews whether the outcome justifies more investment.</div></div>
|
|
54
|
+
<div class="lane-cell"></div>
|
|
55
|
+
<div class="lane-cell"><div class="work-step">Improves run assumptions for future work.</div></div>
|
|
56
|
+
<div class="lane-cell"><div class="work-step">Improves value assumptions for future work.</div></div>
|
|
57
|
+
<div class="lane-cell"><div class="work-step">Improves delivery assumptions for future work.</div></div>
|
|
58
|
+
</div>
|
|
59
|
+
</section>
|
|
60
|
+
<section class="doc-section doc-section--last">
|
|
61
|
+
<div class="phase-summary">
|
|
62
|
+
<section>
|
|
63
|
+
<h2>Records</h2>
|
|
64
|
+
<ul>
|
|
65
|
+
<li>Estimate</li>
|
|
66
|
+
<li>Benefits</li>
|
|
67
|
+
<li>Decision</li>
|
|
68
|
+
<li>Risk</li>
|
|
69
|
+
</ul>
|
|
70
|
+
</section>
|
|
71
|
+
<section>
|
|
72
|
+
<h2>Important choices</h2>
|
|
73
|
+
<ul>
|
|
74
|
+
<li>Is useful measurement data available?</li>
|
|
75
|
+
<li>Did the work create enough value?</li>
|
|
76
|
+
<li>Which assumptions should change for future work?</li>
|
|
77
|
+
</ul>
|
|
78
|
+
</section>
|
|
79
|
+
<section>
|
|
80
|
+
<h2>Handoff</h2>
|
|
81
|
+
<p>Measure ends with better assumptions and, when needed, a new improvement request.</p>
|
|
82
|
+
</section>
|
|
83
|
+
</div>
|
|
84
|
+
<div class="phase-nav">
|
|
85
|
+
<a href="./phase-operate.html">Previous: Operate</a>
|
|
86
|
+
<a href="./flow.html">All phases</a>
|
|
87
|
+
</div>
|
|
88
|
+
</section>
|
|
89
|
+
</main>
|
|
90
|
+
</div>
|
|
91
|
+
<script src="./app.js?v=5"></script>
|
|
92
|
+
</body>
|
|
93
|
+
</html>
|
|
@@ -0,0 +1,102 @@
|
|
|
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>Operate | 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">
|
|
31
|
+
<p class="section-kicker">Phase 06</p>
|
|
32
|
+
<h1>Operate</h1>
|
|
33
|
+
<p class="lede">
|
|
34
|
+
Operate keeps the service running, helps users, and responds when something goes wrong.
|
|
35
|
+
</p>
|
|
36
|
+
<p>
|
|
37
|
+
Read the workflow from top to bottom. Each column shows the role leading that step.
|
|
38
|
+
</p>
|
|
39
|
+
<div class="lane-workflow lane-workflow--four" aria-label="Operate phase workflow">
|
|
40
|
+
<div class="lane-head">End User</div>
|
|
41
|
+
<div class="lane-head">Support Agent</div>
|
|
42
|
+
<div class="lane-head">Operator</div>
|
|
43
|
+
<div class="lane-head">Owner</div>
|
|
44
|
+
<div class="lane-cell"><div class="work-step">Uses the service and reports questions, requests, or issues.</div></div>
|
|
45
|
+
<div class="lane-cell"></div>
|
|
46
|
+
<div class="lane-cell"></div>
|
|
47
|
+
<div class="lane-cell"></div>
|
|
48
|
+
<div class="lane-cell"></div>
|
|
49
|
+
<div class="lane-cell"><div class="work-step">Triages the request and helps the user when possible.</div></div>
|
|
50
|
+
<div class="lane-cell"></div>
|
|
51
|
+
<div class="lane-cell"></div>
|
|
52
|
+
<div class="lane-cell"></div>
|
|
53
|
+
<div class="lane-cell"><div class="work-step work-step--choice">User help or service issue?</div></div>
|
|
54
|
+
<div class="lane-cell"><div class="work-step">Responds to incidents and restores service.</div></div>
|
|
55
|
+
<div class="lane-cell"></div>
|
|
56
|
+
<div class="lane-cell"></div>
|
|
57
|
+
<div class="lane-cell"><div class="work-step">Closes resolved requests or escalates repeated issues.</div></div>
|
|
58
|
+
<div class="lane-cell"></div>
|
|
59
|
+
<div class="lane-cell"><div class="work-step">Reviews repeated signals and improvement ideas.</div></div>
|
|
60
|
+
<div class="lane-cell"></div>
|
|
61
|
+
<div class="lane-cell"></div>
|
|
62
|
+
<div class="lane-cell"><div class="work-step">Keeps the service stable or records a change when the service must be altered.</div></div>
|
|
63
|
+
<div class="lane-cell"><div class="work-step">Moves improvement ideas back into Orient when needed.</div></div>
|
|
64
|
+
</div>
|
|
65
|
+
</section>
|
|
66
|
+
<section class="doc-section doc-section--last">
|
|
67
|
+
<div class="phase-summary">
|
|
68
|
+
<section>
|
|
69
|
+
<h2>Records</h2>
|
|
70
|
+
<ul>
|
|
71
|
+
<li>Change</li>
|
|
72
|
+
<li>DX Complete Ticket</li>
|
|
73
|
+
<li>Risk</li>
|
|
74
|
+
<li>Decision</li>
|
|
75
|
+
<li>Task</li>
|
|
76
|
+
</ul>
|
|
77
|
+
</section>
|
|
78
|
+
<section>
|
|
79
|
+
<h2>Important choices</h2>
|
|
80
|
+
<ul>
|
|
81
|
+
<li>Is this user help, a service issue, or both?</li>
|
|
82
|
+
<li>Does the issue need urgent response?</li>
|
|
83
|
+
<li>Does the running service need a recorded change?</li>
|
|
84
|
+
<li>Is there a repeated problem that should become improvement work?</li>
|
|
85
|
+
</ul>
|
|
86
|
+
</section>
|
|
87
|
+
<section>
|
|
88
|
+
<h2>Handoff</h2>
|
|
89
|
+
<p>Operate continues while the service is live. Issues can close, escalate, or become new improvement work.</p>
|
|
90
|
+
</section>
|
|
91
|
+
</div>
|
|
92
|
+
<div class="phase-nav">
|
|
93
|
+
<a href="./phase-go-live.html">Previous: Go Live</a>
|
|
94
|
+
<a href="./flow.html">All phases</a>
|
|
95
|
+
<a href="./phase-measure.html">Next: Measure</a>
|
|
96
|
+
</div>
|
|
97
|
+
</section>
|
|
98
|
+
</main>
|
|
99
|
+
</div>
|
|
100
|
+
<script src="./app.js?v=5"></script>
|
|
101
|
+
</body>
|
|
102
|
+
</html>
|
|
@@ -0,0 +1,92 @@
|
|
|
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>Orient | 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">
|
|
31
|
+
<p class="section-kicker">Phase 01</p>
|
|
32
|
+
<h1>Orient</h1>
|
|
33
|
+
<p class="lede">
|
|
34
|
+
Orient captures the desired outcome in plain terms, restates expectations, and confirms how success will be recognized where possible.
|
|
35
|
+
</p>
|
|
36
|
+
<p>
|
|
37
|
+
This phase understands the result people need before translating it into requirements. Read the workflow from top to bottom. Each column shows the role leading that step.
|
|
38
|
+
</p>
|
|
39
|
+
<div class="lane-workflow lane-workflow--two" aria-label="Orient phase workflow">
|
|
40
|
+
<div class="lane-head">End User</div>
|
|
41
|
+
<div class="lane-head">Owner</div>
|
|
42
|
+
<div class="lane-cell"><div class="work-step">Shares the goal, problem, request, concern, or opportunity in their own words.</div></div>
|
|
43
|
+
<div class="lane-cell"></div>
|
|
44
|
+
<div class="lane-cell"></div>
|
|
45
|
+
<div class="lane-cell"><div class="work-step">Captures the statement, asks clarifying questions, restates expectations, and confirms the wording before recording it.</div></div>
|
|
46
|
+
<div class="lane-cell"></div>
|
|
47
|
+
<div class="lane-cell"><div class="work-step">Approves expectations when authority approval is needed.</div></div>
|
|
48
|
+
<div class="lane-cell"></div>
|
|
49
|
+
<div class="lane-cell"><div class="work-step">Confirms priority, spending authority, and the decision path.</div></div>
|
|
50
|
+
<div class="lane-cell"><div class="work-step">Adds missing context when needed.</div></div>
|
|
51
|
+
<div class="lane-cell"><div class="work-step work-step--choice">Clear enough to translate into requirements?</div></div>
|
|
52
|
+
<div class="lane-cell"></div>
|
|
53
|
+
<div class="lane-cell"><div class="work-step">Decides whether to continue, pause, stop, or formally accept the open risk.</div></div>
|
|
54
|
+
</div>
|
|
55
|
+
</section>
|
|
56
|
+
<section class="doc-section doc-section--last">
|
|
57
|
+
<div class="phase-summary">
|
|
58
|
+
<section>
|
|
59
|
+
<h2>Records</h2>
|
|
60
|
+
<ul>
|
|
61
|
+
<li>Workspace</li>
|
|
62
|
+
<li>Statement</li>
|
|
63
|
+
<li>Expectation</li>
|
|
64
|
+
<li>DX Complete Ticket</li>
|
|
65
|
+
</ul>
|
|
66
|
+
</section>
|
|
67
|
+
<section>
|
|
68
|
+
<h2>Important choices</h2>
|
|
69
|
+
<ul>
|
|
70
|
+
<li>Has the original statement been captured in the person's own words?</li>
|
|
71
|
+
<li>Was captured wording confirmed before it was recorded?</li>
|
|
72
|
+
<li>Are expectations approved, not approved yet, or moving forward with open risk visible?</li>
|
|
73
|
+
<li>Do expectations describe how success will be recognized?</li>
|
|
74
|
+
<li>Is the right decision authority involved?</li>
|
|
75
|
+
<li>Should the request continue, pause, stop, or continue with open risk visible?</li>
|
|
76
|
+
</ul>
|
|
77
|
+
</section>
|
|
78
|
+
<section>
|
|
79
|
+
<h2>Handoff</h2>
|
|
80
|
+
<p>Orient ends with expectations that are clear enough to use, with approval where needed or visible risk where approval is missing.</p>
|
|
81
|
+
</section>
|
|
82
|
+
</div>
|
|
83
|
+
<div class="phase-nav">
|
|
84
|
+
<a href="./flow.html">All phases</a>
|
|
85
|
+
<a href="./phase-elicit.html">Next: Elicit</a>
|
|
86
|
+
</div>
|
|
87
|
+
</section>
|
|
88
|
+
</main>
|
|
89
|
+
</div>
|
|
90
|
+
<script src="./app.js?v=5"></script>
|
|
91
|
+
</body>
|
|
92
|
+
</html>
|
|
@@ -0,0 +1,98 @@
|
|
|
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>Weigh | 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">
|
|
31
|
+
<p class="section-kicker">Phase 03</p>
|
|
32
|
+
<h1>Weigh</h1>
|
|
33
|
+
<p class="lede">
|
|
34
|
+
Weigh compares expected cost, expected benefit, risk, and confidence before recording a Commitment or Deferral.
|
|
35
|
+
</p>
|
|
36
|
+
<p>
|
|
37
|
+
Read the workflow from top to bottom. Each column shows the role leading that step.
|
|
38
|
+
</p>
|
|
39
|
+
<div class="lane-workflow lane-workflow--three" aria-label="Weigh phase workflow">
|
|
40
|
+
<div class="lane-head">Owner</div>
|
|
41
|
+
<div class="lane-head">Engineer</div>
|
|
42
|
+
<div class="lane-head">Operator</div>
|
|
43
|
+
<div class="lane-cell"><div class="work-step">Summarizes the requirement set, expected benefits, and scope.</div></div>
|
|
44
|
+
<div class="lane-cell"></div>
|
|
45
|
+
<div class="lane-cell"></div>
|
|
46
|
+
<div class="lane-cell"></div>
|
|
47
|
+
<div class="lane-cell"><div class="work-step">Prepares the cost estimate, dependencies, delivery risk, and important review notes.</div></div>
|
|
48
|
+
<div class="lane-cell"><div class="work-step">Estimates run cost, support needs, and readiness work.</div></div>
|
|
49
|
+
<div class="lane-cell"><div class="work-step">Weighs expected benefits against cost, risk, and confidence.</div></div>
|
|
50
|
+
<div class="lane-cell"></div>
|
|
51
|
+
<div class="lane-cell"></div>
|
|
52
|
+
<div class="lane-cell"><div class="work-step work-step--choice">Commit or defer?</div></div>
|
|
53
|
+
<div class="lane-cell"></div>
|
|
54
|
+
<div class="lane-cell"></div>
|
|
55
|
+
<div class="lane-cell"><div class="work-step">Records a Commitment or Deferral.</div></div>
|
|
56
|
+
<div class="lane-cell"><div class="work-step">Prepares requirement detail and task planning.</div></div>
|
|
57
|
+
<div class="lane-cell"></div>
|
|
58
|
+
</div>
|
|
59
|
+
</section>
|
|
60
|
+
<section class="doc-section doc-section--last">
|
|
61
|
+
<div class="phase-summary">
|
|
62
|
+
<section>
|
|
63
|
+
<h2>Records</h2>
|
|
64
|
+
<ul>
|
|
65
|
+
<li>Estimate</li>
|
|
66
|
+
<li>Benefits</li>
|
|
67
|
+
<li>Requirement</li>
|
|
68
|
+
<li>Commitment</li>
|
|
69
|
+
<li>Deferral</li>
|
|
70
|
+
<li>Risk</li>
|
|
71
|
+
<li>Decision</li>
|
|
72
|
+
</ul>
|
|
73
|
+
</section>
|
|
74
|
+
<section>
|
|
75
|
+
<h2>Important choices</h2>
|
|
76
|
+
<ul>
|
|
77
|
+
<li>Are expected cost and expected benefit clear enough?</li>
|
|
78
|
+
<li>Are important review notes visible?</li>
|
|
79
|
+
<li>Is any open risk visible or formally accepted by the Owner?</li>
|
|
80
|
+
<li>Is the Owner committing now or deferring until named conditions are addressed?</li>
|
|
81
|
+
</ul>
|
|
82
|
+
</section>
|
|
83
|
+
<section>
|
|
84
|
+
<h2>Handoff</h2>
|
|
85
|
+
<p>Weigh ends with a Commitment that can move into Build, or a Deferral that shows what must be addressed first.</p>
|
|
86
|
+
</section>
|
|
87
|
+
</div>
|
|
88
|
+
<div class="phase-nav">
|
|
89
|
+
<a href="./phase-elicit.html">Previous: Elicit</a>
|
|
90
|
+
<a href="./flow.html">All phases</a>
|
|
91
|
+
<a href="./phase-build.html">Next: Build</a>
|
|
92
|
+
</div>
|
|
93
|
+
</section>
|
|
94
|
+
</main>
|
|
95
|
+
</div>
|
|
96
|
+
<script src="./app.js?v=5"></script>
|
|
97
|
+
</body>
|
|
98
|
+
</html>
|
|
@@ -0,0 +1,52 @@
|
|
|
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>Roles | 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">Operating model</p>
|
|
32
|
+
<h1>Roles</h1>
|
|
33
|
+
<p class="lede">
|
|
34
|
+
Roles separate responsibility so decisions, building, quality checks, support, and service operation are not confused.
|
|
35
|
+
</p>
|
|
36
|
+
<div class="role-list">
|
|
37
|
+
<button type="button" data-detail="owner">Owner</button>
|
|
38
|
+
<button type="button" data-detail="engineer">Engineer</button>
|
|
39
|
+
<button type="button" data-detail="tester">Tester</button>
|
|
40
|
+
<button type="button" data-detail="operator">Operator</button>
|
|
41
|
+
<button type="button" data-detail="supportAgent">Support Agent</button>
|
|
42
|
+
<button type="button" data-detail="endUser">End User</button>
|
|
43
|
+
</div>
|
|
44
|
+
<p id="role-detail" class="detail-panel" aria-live="polite">
|
|
45
|
+
Owner sets authority, priority, outcome direction, requirements, product validation direction, budget commitment, escalation direction, and formal risk acceptance. Engineer turns committed requirements into tasks and working changes.
|
|
46
|
+
</p>
|
|
47
|
+
</section>
|
|
48
|
+
</main>
|
|
49
|
+
</div>
|
|
50
|
+
<script src="./app.js?v=5"></script>
|
|
51
|
+
</body>
|
|
52
|
+
</html>
|