dxcomplete 0.2.2 → 0.3.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 (48) hide show
  1. package/README.md +63 -70
  2. package/dist/cli.js +2 -2
  3. package/docs/cost-model.md +2 -2
  4. package/docs/decision-basis.md +5 -11
  5. package/docs/diagrams.md +3 -3
  6. package/docs/index.md +25 -39
  7. package/docs/model.md +12 -20
  8. package/docs/open-questions.md +1 -1
  9. package/docs/taxonomy.md +6 -7
  10. package/docs/workflows.md +3 -3
  11. package/package.json +2 -2
  12. package/templates/process/README.md +10 -10
  13. package/templates/process/controls.yml +19 -19
  14. package/templates/process/cost-model.yml +3 -3
  15. package/templates/process/decision-basis.yml +4 -4
  16. package/templates/process/diagrams/00-decision-basis.mmd +1 -1
  17. package/templates/process/diagrams/00-overview.mmd +1 -1
  18. package/templates/process/diagrams/01-intake-triage.mmd +4 -4
  19. package/templates/process/diagrams/02-product-definition.mmd +3 -3
  20. package/templates/process/diagrams/03-engineering-execution.mmd +1 -1
  21. package/templates/process/diagrams/04-qa-verification.mmd +1 -1
  22. package/templates/process/diagrams/05-product-validation.mmd +1 -1
  23. package/templates/process/diagrams/06-change-release-control.mmd +1 -1
  24. package/templates/process/diagrams/07-deployment-operations.mmd +1 -1
  25. package/templates/process/diagrams/08-support-incident-management.mmd +1 -1
  26. package/templates/process/diagrams/09-problem-improvement.mmd +1 -1
  27. package/templates/process/diagrams/10-risk-control-management.mmd +1 -1
  28. package/templates/process/diagrams/11-audit-evidence-capture.mmd +1 -1
  29. package/templates/process/roles.yml +6 -6
  30. package/templates/process/taxonomy.yml +46 -46
  31. package/templates/process/workflows.yml +29 -29
  32. package/website/account.html +57 -0
  33. package/website/app.js +177 -0
  34. package/website/flow.html +4 -0
  35. package/website/glossary.html +4 -0
  36. package/website/index.html +4 -0
  37. package/website/objects.html +4 -0
  38. package/website/operating-guide.html +4 -0
  39. package/website/outcomes.html +4 -0
  40. package/website/phase-build.html +4 -0
  41. package/website/phase-elicit.html +4 -0
  42. package/website/phase-go-live.html +4 -0
  43. package/website/phase-measure.html +4 -0
  44. package/website/phase-operate.html +4 -0
  45. package/website/phase-orient.html +4 -0
  46. package/website/phase-weigh.html +4 -0
  47. package/website/roles.html +4 -0
  48. package/website/styles.css +217 -1
@@ -1,18 +1,18 @@
1
1
  schema: dxcomplete.controls.v0
2
- status: draft
2
+ status: current
3
3
  notes:
4
- - Controls are placeholders.
5
- - Do not treat these as compliance requirements without a project-specific decision.
4
+ - Controls are editable workspace process expectations.
5
+ - Do not treat these as compliance requirements without a workspace-specific decision.
6
6
 
7
7
  controls:
8
8
  - id: cost_visibility
9
9
  name: Cost visibility
10
- draft_purpose: Ensure the workspace elicits enough detail, attempts current-state cost visibility, generates a cost Estimate where cost reasoning is needed, and records Benefits where benefit reasoning is needed.
10
+ purpose: Ensure the workspace elicits enough detail, attempts current-state cost visibility, generates a cost Estimate where cost reasoning is needed, and records Benefits where benefit reasoning is needed.
11
11
  applies_to:
12
12
  - Workspace
13
13
  - Estimate
14
14
  - Benefits
15
- draft_evidence:
15
+ evidence:
16
16
  - Elicited needs, dependencies, constraints, and unknowns.
17
17
  - Current-state cost context, including unavailable or undisclosed data notes where applicable.
18
18
  - Estimate with assumptions and cost roll-up.
@@ -23,10 +23,10 @@ controls:
23
23
 
24
24
  - id: requirement_acceptance_criteria
25
25
  name: Requirement acceptance criteria
26
- draft_purpose: Ensure each requirement has enough clarity for engineering work, QA verification, and product validation.
26
+ purpose: Ensure each requirement has enough clarity for engineering work, QA verification, and product validation.
27
27
  applies_to:
28
28
  - Requirement
29
- draft_evidence:
29
+ evidence:
30
30
  - Requirement record with acceptance criteria.
31
31
  - Owner or delegated approval.
32
32
  - Review notes where Engineer input should remain visible.
@@ -35,11 +35,11 @@ controls:
35
35
 
36
36
  - id: implementation_review
37
37
  name: Implementation review
38
- draft_purpose: Ensure engineering output is reviewed before QA verification.
38
+ purpose: Ensure engineering output is reviewed before QA verification.
39
39
  applies_to:
40
40
  - Task
41
41
  - Change
42
- draft_evidence:
42
+ evidence:
43
43
  - Pull request, commit, or task review notes.
44
44
  - Engineer approval or review outcome.
45
45
  open_questions:
@@ -47,12 +47,12 @@ controls:
47
47
 
48
48
  - id: qa_verification_evidence
49
49
  name: QA verification evidence
50
- draft_purpose: Preserve verification results against requirements and acceptance criteria.
50
+ purpose: Preserve verification results against requirements and acceptance criteria.
51
51
  applies_to:
52
52
  - Requirement
53
53
  - Task
54
54
  - Change
55
- draft_evidence:
55
+ evidence:
56
56
  - Test plan or verification notes.
57
57
  - Pass, fail, or retest outcome.
58
58
  - Defects or follow-up tasks where needed.
@@ -61,11 +61,11 @@ controls:
61
61
 
62
62
  - id: product_validation
63
63
  name: Product validation
64
- draft_purpose: Confirm the verified output is the right product outcome.
64
+ purpose: Confirm the verified output is the right product outcome.
65
65
  applies_to:
66
66
  - Requirement
67
67
  - Release
68
- draft_evidence:
68
+ evidence:
69
69
  - Product validation note.
70
70
  - Owner approval or user input where required.
71
71
  open_questions:
@@ -73,11 +73,11 @@ controls:
73
73
 
74
74
  - id: release_readiness
75
75
  name: Release readiness
76
- draft_purpose: Confirm change type, scope, risk, rollback, notice, veto, and required evidence before release.
76
+ purpose: Confirm change type, scope, risk, rollback, notice, veto, and required evidence before release.
77
77
  applies_to:
78
78
  - Change
79
79
  - Release
80
- draft_evidence:
80
+ evidence:
81
81
  - Change record with baseline plan sections.
82
82
  - Append-only Change events for notice, veto, emergency, decision, result, recovery, notes, or revisions where applicable.
83
83
  - Release checklist.
@@ -88,10 +88,10 @@ controls:
88
88
 
89
89
  - id: deployment_record
90
90
  name: Deployment record
91
- draft_purpose: Preserve when, where, and how a release was deployed.
91
+ purpose: Preserve when, where, and how a release was deployed.
92
92
  applies_to:
93
93
  - Deployment
94
- draft_evidence:
94
+ evidence:
95
95
  - Deployment identifier or URL.
96
96
  - Environment.
97
97
  - Timestamp.
@@ -101,14 +101,14 @@ controls:
101
101
 
102
102
  - id: service_impact_response_evidence
103
103
  name: Service-impact response evidence
104
- draft_purpose: Preserve response details for service-impacting events through Incident entries.
104
+ purpose: Preserve response details for service-impacting events through Incident entries.
105
105
  applies_to:
106
106
  - DX Complete Ticket
107
107
  - Risk
108
108
  - Task
109
109
  - Change
110
110
  - Decision
111
- draft_evidence:
111
+ evidence:
112
112
  - Timeline.
113
113
  - Impact.
114
114
  - Actions taken.
@@ -1,5 +1,5 @@
1
1
  schema: dxcomplete.cost_model.v0
2
- status: draft
2
+ status: current
3
3
  notes:
4
4
  - Use broad cost language at the top level.
5
5
  - OPEX/CAPEX-like categories can exist inside the cost model, but should not be the top-level frame.
@@ -25,7 +25,7 @@ cost_objects:
25
25
  estimate:
26
26
  purpose: Itemized cost information for the scope being weighed.
27
27
  generated_by_default: true
28
- draft_fields:
28
+ fields:
29
29
  - line_items
30
30
  - covered_requirements
31
31
  - covered_expectations
@@ -41,7 +41,7 @@ cost_objects:
41
41
 
42
42
  benefits:
43
43
  purpose: Expected benefit information for the scope being weighed.
44
- draft_fields:
44
+ fields:
45
45
  - benefit_items
46
46
  - covered_requirements
47
47
  - covered_expectations
@@ -1,5 +1,5 @@
1
1
  schema: dxcomplete.decision_basis.v0
2
- status: draft
2
+ status: current
3
3
  notes:
4
4
  - Decision basis is first-class, but it is assembled from deliberate records rather than a standalone extra record.
5
5
  - Use Estimate for cost, Benefits for expected value, and Decision entries for rationale where a separate decision trail is useful.
@@ -16,10 +16,10 @@ decision_basis_rules:
16
16
  - greenfield
17
17
  - limited-disclosure
18
18
 
19
- draft_decision_basis:
19
+ decision_basis:
20
20
  id: null
21
21
  workspace_id: null
22
- status: draft
22
+ status: current
23
23
  problem_to_be_solved: null
24
24
  goal: null
25
25
  workspace_mode: null
@@ -41,7 +41,7 @@ draft_decision_basis:
41
41
  unavailable_data: []
42
42
  limited_disclosure_notes: []
43
43
 
44
- draft_statuses:
44
+ statuses:
45
45
  - draft
46
46
  - awaiting_current_state_context
47
47
  - awaiting_estimate
@@ -1,4 +1,4 @@
1
- %% DX Complete draft diagram. Decision basis is upstream of Complete Engineering.
1
+ %% DX Complete diagram. Decision basis is upstream of Complete Engineering.
2
2
  flowchart LR
3
3
  Workspace[Workspace] --> Statement[Capture User Statement]
4
4
  Statement --> Expectation[Restate Expected Result]
@@ -1,4 +1,4 @@
1
- %% DX Complete draft diagram. Revise as the model evolves.
1
+ %% DX Complete diagram. Revise when the workspace process changes.
2
2
  flowchart LR
3
3
  Workspace[Workspace] --> Orient[Orient]
4
4
  Workspace --> Journal[Journal]
@@ -1,9 +1,9 @@
1
- %% Draft intake and triage workflow.
1
+ %% DX Complete intake and triage workflow.
2
2
  flowchart TD
3
3
  Signal[Incoming signal] --> Source{Likely source?}
4
- Source -->|Client or user| SupportSignal[Support Request draft]
5
- Source -->|Product idea| Feedback[Feedback draft]
6
- Source -->|Authority or commitment| AuthoritySignal[Authoritative Request draft]
4
+ Source -->|Client or user| SupportSignal[Support Request candidate]
5
+ Source -->|Product idea| Feedback[Feedback candidate]
6
+ Source -->|Authority or commitment| AuthoritySignal[Authoritative Request candidate]
7
7
  Source -->|Service health| ServiceImpact[Service-impact signal]
8
8
  SupportSignal --> Triage[Triage]
9
9
  Feedback --> Triage
@@ -1,10 +1,10 @@
1
- %% Draft product definition workflow.
1
+ %% DX Complete product definition workflow.
2
2
  flowchart TD
3
3
  SourceObject[Feedback / Feature Request / Authoritative Request / Recurring issue] --> Clarify[Clarify desired outcome]
4
4
  Clarify --> Statement[Capture User Statement]
5
5
  Statement --> Expectation[Restate Expected Result]
6
- Expectation --> Requirement[Draft Requirement]
7
- Requirement --> Acceptance[Draft acceptance criteria]
6
+ Expectation --> Requirement[Requirement]
7
+ Requirement --> Acceptance[Acceptance criteria]
8
8
  Acceptance --> Constraints[Identify constraints and risks]
9
9
  Constraints --> Review{Ready for engineering review?}
10
10
  Review -->|No| OpenQuestions[Record open questions]
@@ -1,4 +1,4 @@
1
- %% Draft engineering execution workflow.
1
+ %% DX Complete engineering execution workflow.
2
2
  flowchart TD
3
3
  Requirement[Committed Requirement] --> RequirementDetail[Refine requirement detail]
4
4
  RequirementDetail --> Approach[Engineer decides implementation approach]
@@ -1,4 +1,4 @@
1
- %% Draft QA verification workflow.
1
+ %% DX Complete QA verification workflow.
2
2
  flowchart TD
3
3
  QAHandoff[QA handoff] --> ReviewInputs[Review requirement, tasks, and acceptance criteria]
4
4
  ReviewInputs --> Plan[Plan verification]
@@ -1,4 +1,4 @@
1
- %% Draft product validation workflow.
1
+ %% DX Complete product validation workflow.
2
2
  flowchart TD
3
3
  QAEvidence[QA evidence] --> ProductReview[Owner reviews outcome]
4
4
  ProductReview --> Outcome{Right outcome?}
@@ -1,4 +1,4 @@
1
- %% Draft change and release control workflow.
1
+ %% DX Complete change and release control workflow.
2
2
  flowchart TD
3
3
  Change[Create Change record] --> Type[Classify standard, normal, or emergency]
4
4
  Type --> Plan[Record change plan]
@@ -1,4 +1,4 @@
1
- %% Draft deployment and operations workflow.
1
+ %% DX Complete deployment and operations workflow.
2
2
  flowchart TD
3
3
  DeploymentPrep[Deployment preparation] --> Deploy[Deploy release]
4
4
  Deploy --> Record[Record Deployment evidence]
@@ -1,4 +1,4 @@
1
- %% Draft support and incident management workflow.
1
+ %% DX Complete support and incident management workflow.
2
2
  flowchart TD
3
3
  UserSignal[End User signal] --> Ticket[Support Request]
4
4
  Ticket --> Classify{Classify}
@@ -1,4 +1,4 @@
1
- %% Draft problem and improvement workflow.
1
+ %% DX Complete problem and improvement workflow.
2
2
  flowchart TD
3
3
  Signal[Incident / ticket / repeated service signal] --> Problem[Create Problem]
4
4
  Problem --> Investigate[Append investigation entry]
@@ -1,4 +1,4 @@
1
- %% Draft risk and control management workflow.
1
+ %% DX Complete risk and control management workflow.
2
2
  flowchart TD
3
3
  RiskSignal[Risk signal] --> Risk[Create Risk ledger]
4
4
  Risk --> Identify[Append identified entry]
@@ -1,4 +1,4 @@
1
- %% Draft audit and evidence capture workflow.
1
+ %% DX Complete audit and evidence capture workflow.
2
2
  flowchart TD
3
3
  LifecycleObject[Requirement / Task / Change / Incident / Problem / Decision / Risk / Control] --> EvidenceNeed{Evidence needed?}
4
4
  EvidenceNeed -->|No| Note[Record no evidence required decision if useful]
@@ -9,7 +9,7 @@ notes:
9
9
  roles:
10
10
  - id: owner
11
11
  name: Owner
12
- draft_responsibility: Sets authority, priority, outcome direction, requirements, product validation direction, budget commitment, escalation direction, and formal risk acceptance.
12
+ responsibility: Sets authority, priority, outcome direction, requirements, product validation direction, budget commitment, escalation direction, and formal risk acceptance.
13
13
  likely_owns:
14
14
  - authority
15
15
  - priority
@@ -30,7 +30,7 @@ roles:
30
30
 
31
31
  - id: engineer
32
32
  name: Engineer
33
- draft_responsibility: Turns committed requirements into tasks and working changes, either directly or by driving coding-capable tools.
33
+ responsibility: Turns committed requirements into tasks and working changes, either directly or by driving coding-capable tools.
34
34
  likely_owns:
35
35
  - solution approach
36
36
  - task decomposition
@@ -46,7 +46,7 @@ roles:
46
46
 
47
47
  - id: tester
48
48
  name: Tester
49
- draft_responsibility: Checks completed work against requirements and success criteria.
49
+ responsibility: Checks completed work against requirements and success criteria.
50
50
  likely_owns:
51
51
  - verification plans
52
52
  - test evidence
@@ -57,7 +57,7 @@ roles:
57
57
 
58
58
  - id: operator
59
59
  name: Operator
60
- draft_responsibility: Releases, deploys, monitors, and runs the service, including provisioning, administration, users, permissions, settings, and run-side security.
60
+ responsibility: Releases, deploys, monitors, and runs the service, including provisioning, administration, users, permissions, settings, and run-side security.
61
61
  likely_owns:
62
62
  - release execution
63
63
  - deployment
@@ -75,7 +75,7 @@ roles:
75
75
 
76
76
  - id: support_agent
77
77
  name: Support Agent
78
- draft_responsibility: Helps users, captures signals, and routes questions, feedback, and issues to the right follow-up.
78
+ responsibility: Helps users, captures signals, and routes questions, feedback, and issues to the right follow-up.
79
79
  likely_owns:
80
80
  - user issue communication
81
81
  - support tickets
@@ -86,7 +86,7 @@ roles:
86
86
 
87
87
  - id: end_user
88
88
  name: End User
89
- draft_responsibility: Uses the service and provides requests, feedback, corrections, and issue reports.
89
+ responsibility: Uses the service and provides requests, feedback, corrections, and issue reports.
90
90
  likely_owns:
91
91
  - service use
92
92
  - feedback
@@ -1,10 +1,10 @@
1
1
  schema: dxcomplete.taxonomy.v0
2
- status: draft
2
+ status: current
3
3
  notes:
4
- - This taxonomy is a working hypothesis.
5
- - Object names, boundaries, and relationships should be edited as the model is discovered.
4
+ - This taxonomy is editable workspace process data.
5
+ - Object names, boundaries, and relationships should be updated when the workspace process changes.
6
6
 
7
- current_lifecycle_hypothesis:
7
+ current_lifecycle_model:
8
8
  runtime_scope_object: Workspace
9
9
  private_ticket_object: DX Complete Ticket
10
10
  current_runtime_record_objects:
@@ -57,8 +57,8 @@ current_lifecycle_hypothesis:
57
57
  objects:
58
58
  - id: workspace
59
59
  name: Workspace
60
- draft_definition: The shared-runtime container for one service scope.
61
- draft_fields:
60
+ definition: The shared-runtime container for one service scope.
61
+ fields:
62
62
  - name
63
63
  - summary
64
64
  - mode
@@ -73,8 +73,8 @@ objects:
73
73
 
74
74
  - id: dxcomplete_ticket
75
75
  name: DX Complete Ticket
76
- draft_definition: An actor-scoped, appendable item used to raise a question, report, request, correction, or follow-up with DX Complete.
77
- draft_fields:
76
+ definition: An actor-scoped, appendable item used to raise a question, report, request, correction, or follow-up with DX Complete.
77
+ fields:
78
78
  - title
79
79
  - body
80
80
  - entries
@@ -98,8 +98,8 @@ objects:
98
98
 
99
99
  - id: journal
100
100
  name: Journal
101
- draft_definition: Shared workspace notes for relevant context that does not have a better dedicated record home.
102
- draft_fields:
101
+ definition: Shared workspace notes for relevant context that does not have a better dedicated record home.
102
+ fields:
103
103
  - body
104
104
  - kind
105
105
  - tag
@@ -126,8 +126,8 @@ objects:
126
126
 
127
127
  - id: environment
128
128
  name: Environment
129
- draft_definition: A named operating context such as local, staging, or production.
130
- draft_fields:
129
+ definition: A named operating context such as local, staging, or production.
130
+ fields:
131
131
  - name
132
132
  - summary
133
133
  - description
@@ -143,8 +143,8 @@ objects:
143
143
 
144
144
  - id: component
145
145
  name: Component
146
- draft_definition: One operational item that belongs to exactly one Environment.
147
- draft_fields:
146
+ definition: One operational item that belongs to exactly one Environment.
147
+ fields:
148
148
  - name
149
149
  - environment
150
150
  - kind
@@ -168,8 +168,8 @@ objects:
168
168
 
169
169
  - id: maintenance_schedule
170
170
  name: Maintenance Schedule
171
- draft_definition: A recurring operational hygiene record with cadence, start date, rationale, and derived due state.
172
- draft_fields:
171
+ definition: A recurring operational hygiene record with cadence, start date, rationale, and derived due state.
172
+ fields:
173
173
  - name
174
174
  - kind
175
175
  - cadence
@@ -188,7 +188,7 @@ objects:
188
188
 
189
189
  - id: estimate
190
190
  name: Estimate
191
- draft_definition: An itemized cost record used during Weigh, linked to the requirements or expectations it covers.
191
+ definition: An itemized cost record used during Weigh, linked to the requirements or expectations it covers.
192
192
  rules:
193
193
  - Estimate line items are cost items.
194
194
  - Amounts may be single values or min/expected/max ranges.
@@ -203,7 +203,7 @@ objects:
203
203
 
204
204
  - id: benefits
205
205
  name: Benefits
206
- draft_definition: An Owner-authored benefit record used during Weigh, linked to the requirements or expectations it covers.
206
+ definition: An Owner-authored benefit record used during Weigh, linked to the requirements or expectations it covers.
207
207
  rules:
208
208
  - Benefit items may be quantified or qualitative.
209
209
  - Qualitative benefit items are complete without amount, timing, period, or currency.
@@ -219,7 +219,7 @@ objects:
219
219
 
220
220
  - id: value_realization
221
221
  name: Value Realization
222
- draft_definition: A measured before-and-after value record for expectations, requirements, or commitments.
222
+ definition: A measured before-and-after value record for expectations, requirements, or commitments.
223
223
  rules:
224
224
  - Value Realization metrics have a baseline, unit, direction, and optional actual value.
225
225
  - Metrics without actual values remain open.
@@ -234,7 +234,7 @@ objects:
234
234
  - id: feedback
235
235
  name: Feedback
236
236
  status: lifecycle_concept
237
- draft_definition: A signal from a client, user, interested party, or service observation.
237
+ definition: A signal from a client, user, interested party, or service observation.
238
238
  likely_sources:
239
239
  - End User
240
240
  - Support Agent
@@ -248,7 +248,7 @@ objects:
248
248
  - id: authoritative_request
249
249
  name: Authoritative Request
250
250
  status: lifecycle_concept
251
- draft_definition: A request or directive with authority behind it, such as Owner commitment, leadership decision, legal need, or contractual obligation.
251
+ definition: A request or directive with authority behind it, such as Owner commitment, leadership decision, legal need, or contractual obligation.
252
252
  likely_sources:
253
253
  - Owner
254
254
  possible_links:
@@ -259,7 +259,7 @@ objects:
259
259
  - id: feature_request
260
260
  name: Feature Request
261
261
  status: lifecycle_concept
262
- draft_definition: A desired capability or product change that may become one or more requirements.
262
+ definition: A desired capability or product change that may become one or more requirements.
263
263
  likely_sources:
264
264
  - Feedback
265
265
  - Owner
@@ -270,7 +270,7 @@ objects:
270
270
 
271
271
  - id: statement
272
272
  name: Statement
273
- draft_definition: The user's own words before DX Complete interprets or translates them.
273
+ definition: The user's own words before DX Complete interprets or translates them.
274
274
  status: runtime_record
275
275
  runtime_collection: statements
276
276
  notes:
@@ -284,7 +284,7 @@ objects:
284
284
 
285
285
  - id: expectation
286
286
  name: Expectation
287
- draft_definition: User-facing condition of satisfaction, including the result expected and how success will be recognized.
287
+ definition: User-facing condition of satisfaction, including the result expected and how success will be recognized.
288
288
  status: runtime_record
289
289
  runtime_collection: expectations
290
290
  notes:
@@ -302,14 +302,14 @@ objects:
302
302
 
303
303
  - id: requirement
304
304
  name: Requirement
305
- draft_definition: A team-owned commitment that translates expectations into something buildable and verifiable. In the current model, requirements are shaped during elicitation, weighed by the Owner, and refined during Build once covered by a Commitment.
305
+ definition: A team-owned commitment that translates expectations into something buildable and verifiable. In the current model, requirements are shaped during elicitation, weighed by the Owner, and refined during Build once covered by a Commitment.
306
306
  likely_sources:
307
307
  - Owner
308
308
  - Expectation
309
309
  - Authoritative Request
310
310
  - Feature Request
311
311
  - Problem
312
- draft_fields:
312
+ fields:
313
313
  - statement
314
314
  - acceptance_criteria
315
315
  - requirement_detail
@@ -329,12 +329,12 @@ objects:
329
329
 
330
330
  - id: commitment
331
331
  name: Commitment
332
- draft_definition: An Owner point-in-time authority record that commits requirements or expectations into Build.
332
+ definition: An Owner point-in-time authority record that commits requirements or expectations into Build.
333
333
  likely_sources:
334
334
  - Owner
335
335
  - Requirement
336
336
  - Expectation
337
- draft_fields:
337
+ fields:
338
338
  - commitment_statement
339
339
  - reservations
340
340
  possible_links:
@@ -350,12 +350,12 @@ objects:
350
350
 
351
351
  - id: deferral
352
352
  name: Deferral
353
- draft_definition: An Owner record for not committing yet, with explicit conditions that make a future Commitment possible.
353
+ definition: An Owner record for not committing yet, with explicit conditions that make a future Commitment possible.
354
354
  likely_sources:
355
355
  - Owner
356
356
  - Requirement
357
357
  - Expectation
358
- draft_fields:
358
+ fields:
359
359
  - reason
360
360
  - status
361
361
  - conditions
@@ -374,8 +374,8 @@ objects:
374
374
 
375
375
  - id: task
376
376
  name: Task
377
- draft_definition: An execution unit with append-only entries, used to make part of a requirement true.
378
- draft_fields:
377
+ definition: An execution unit with append-only entries, used to make part of a requirement true.
378
+ fields:
379
379
  - description
380
380
  - assignee
381
381
  - assignor
@@ -394,13 +394,13 @@ objects:
394
394
 
395
395
  - id: change
396
396
  name: Change
397
- draft_definition: A discrete alteration to the running service, recorded for service-management control and accountability.
397
+ definition: A discrete alteration to the running service, recorded for service-management control and accountability.
398
398
  likely_sources:
399
399
  - Task
400
400
  - Engineer
401
401
  - Operator
402
402
  - Incident
403
- draft_fields:
403
+ fields:
404
404
  - change_type
405
405
  - change_plan
406
406
  - execution_steps
@@ -433,8 +433,8 @@ objects:
433
433
  - id: incident
434
434
  name: Incident
435
435
  status: current_runtime_record
436
- draft_definition: A specific service-impacting or potentially service-impacting occurrence requiring response.
437
- draft_fields:
436
+ definition: A specific service-impacting or potentially service-impacting occurrence requiring response.
437
+ fields:
438
438
  - description
439
439
  - entries
440
440
  - current_status
@@ -458,8 +458,8 @@ objects:
458
458
  - id: problem
459
459
  name: Problem
460
460
  status: current_runtime_record
461
- draft_definition: An underlying or recurring cause evidenced by one or more incidents.
462
- draft_fields:
461
+ definition: An underlying or recurring cause evidenced by one or more incidents.
462
+ fields:
463
463
  - description
464
464
  - entries
465
465
  - current_status
@@ -481,8 +481,8 @@ objects:
481
481
  - id: support_request
482
482
  name: Support Request
483
483
  status: current_runtime_record
484
- draft_definition: A shared support ledger for a user-facing reported experience, question, request, or issue.
485
- draft_fields:
484
+ definition: A shared support ledger for a user-facing reported experience, question, request, or issue.
485
+ fields:
486
486
  - reporter
487
487
  - kind
488
488
  - reported_experience
@@ -503,7 +503,7 @@ objects:
503
503
  - id: release
504
504
  name: Release
505
505
  status: lifecycle_concept
506
- draft_definition: A grouped set of changes prepared for delivery.
506
+ definition: A grouped set of changes prepared for delivery.
507
507
  likely_sources:
508
508
  - Change
509
509
  - Operator
@@ -516,7 +516,7 @@ objects:
516
516
  - id: deployment
517
517
  name: Deployment
518
518
  status: lifecycle_concept
519
- draft_definition: The act and evidence of putting a release or change into an environment.
519
+ definition: The act and evidence of putting a release or change into an environment.
520
520
  likely_sources:
521
521
  - Release
522
522
  - Operator
@@ -527,8 +527,8 @@ objects:
527
527
 
528
528
  - id: decision
529
529
  name: Decision
530
- draft_definition: A revisitable choice record with ordered entries and links to the records that informed it.
531
- draft_fields:
530
+ definition: A revisitable choice record with ordered entries and links to the records that informed it.
531
+ fields:
532
532
  - matter
533
533
  - entries
534
534
  - current_decision
@@ -556,7 +556,7 @@ objects:
556
556
 
557
557
  - id: risk
558
558
  name: Risk
559
- draft_definition: An uncertainty or exposure that could affect product, service, delivery, compliance, or operations.
559
+ definition: An uncertainty or exposure that could affect product, service, delivery, compliance, or operations.
560
560
  rules:
561
561
  - Open checkpoints should be represented as visible risk rather than blockers.
562
562
  - Open risk should remain visible when work proceeds without approval.
@@ -576,7 +576,7 @@ objects:
576
576
  - id: control
577
577
  name: Control
578
578
  status: lifecycle_concept
579
- draft_definition: A policy, check, approval, or evidence requirement used to manage risk or governance.
579
+ definition: A policy, check, approval, or evidence requirement used to manage risk or governance.
580
580
  likely_sources:
581
581
  - Owner
582
582
  - Operator