dxcomplete 0.1.0 → 0.2.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/README.md +18 -10
- package/dist/init.js +19 -0
- package/dist/mcp/docs.d.ts +18 -2
- package/dist/mcp/docs.js +201 -13
- package/dist/mcp/server.js +761 -47
- package/dist/runtime/check.d.ts +1 -1
- package/dist/runtime/records.d.ts +95 -4
- package/dist/runtime/records.js +640 -11
- package/dist/validate.js +2 -0
- package/docs/codex-integration.md +45 -18
- package/docs/glossary.md +39 -7
- package/docs/index.md +2 -1
- package/docs/model.md +3 -3
- package/docs/operating-guide.md +116 -0
- package/docs/taxonomy.md +12 -6
- package/docs/workflows.md +5 -3
- package/package.json +20 -2
- package/scripts/smoke-mcp-http.mjs +460 -6
- package/src/init.ts +35 -0
- package/src/mcp/docs.ts +234 -14
- package/src/mcp/server.ts +1138 -83
- package/src/runtime/records.ts +914 -12
- package/src/validate.ts +2 -0
- package/templates/AGENTS.md +30 -0
- package/templates/process/controls.yml +10 -6
- package/templates/process/diagrams/01-intake-triage.mmd +5 -5
- package/templates/process/diagrams/02-product-definition.mmd +1 -1
- package/templates/process/diagrams/06-change-release-control.mmd +5 -7
- package/templates/process/diagrams/07-deployment-operations.mmd +2 -2
- package/templates/process/diagrams/08-support-incident-management.mmd +5 -4
- package/templates/process/diagrams/09-problem-improvement.mmd +4 -3
- package/templates/process/diagrams/10-risk-control-management.mmd +6 -4
- package/templates/process/diagrams/11-audit-evidence-capture.mmd +1 -1
- package/templates/process/taxonomy.yml +91 -17
- package/templates/process/workflows.yml +10 -9
- package/website/flow.html +1 -0
- package/website/glossary.html +37 -8
- package/website/index.html +2 -1
- package/website/objects.html +68 -11
- package/website/operating-guide.html +165 -0
- package/website/outcomes.html +1 -0
- package/website/phase-build.html +1 -0
- package/website/phase-elicit.html +1 -0
- package/website/phase-go-live.html +2 -1
- package/website/phase-measure.html +1 -0
- package/website/phase-operate.html +1 -0
- package/website/phase-orient.html +1 -0
- package/website/phase-weigh.html +1 -0
- package/website/roles.html +1 -0
package/src/validate.ts
CHANGED
|
@@ -19,6 +19,7 @@ const docs = [
|
|
|
19
19
|
"cost-model.md",
|
|
20
20
|
"glossary.md",
|
|
21
21
|
"model.md",
|
|
22
|
+
"operating-guide.md",
|
|
22
23
|
"roles.md",
|
|
23
24
|
"taxonomy.md",
|
|
24
25
|
"workflows.md",
|
|
@@ -85,6 +86,7 @@ function packageRequiredFiles(): string[] {
|
|
|
85
86
|
path.join("api", "dxcomplete-service.js"),
|
|
86
87
|
path.join("api", "auth", "callback", "google.js"),
|
|
87
88
|
path.join("dxcomplete", "workspace.json"),
|
|
89
|
+
path.join("templates", "AGENTS.md"),
|
|
88
90
|
path.join("scripts", "check-env-surface.mjs"),
|
|
89
91
|
path.join("scripts", "smoke-mcp-http.mjs"),
|
|
90
92
|
path.join("scripts", "dogfood-work-order.mjs"),
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# DX Complete Guidance
|
|
2
|
+
|
|
3
|
+
This project uses DX Complete.
|
|
4
|
+
|
|
5
|
+
Before making DX Complete process changes, read:
|
|
6
|
+
|
|
7
|
+
- `dxcomplete/docs/operating-guide.md`
|
|
8
|
+
- `dxcomplete/docs/codex-integration.md`
|
|
9
|
+
|
|
10
|
+
## Role Context
|
|
11
|
+
|
|
12
|
+
When acting as Codex, assume you are assisting the `Engineer` unless the user explicitly assigns another role.
|
|
13
|
+
|
|
14
|
+
Engineer/Codex default path:
|
|
15
|
+
|
|
16
|
+
```text
|
|
17
|
+
Requirement -> Task
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Use:
|
|
21
|
+
|
|
22
|
+
- `Task` for ordinary implementation work.
|
|
23
|
+
- `Decision` for meaningful choices between alternatives.
|
|
24
|
+
- `Risk` for uncertainty or exposure.
|
|
25
|
+
- `Journal` only for relevant context with no better dedicated record home.
|
|
26
|
+
- `Change` only for a discrete alteration to the running service.
|
|
27
|
+
|
|
28
|
+
Do not create ITSM-style records merely because development work is happening. `Change` is the run-side control record for a discrete service alteration. `Incident` is for a specific service-impacting occurrence. `Problem` is for an underlying or recurring cause evidenced by incidents.
|
|
29
|
+
|
|
30
|
+
Keep public documentation user-facing. Website copy should speak to people using DX Complete, not to maintainers building the package.
|
|
@@ -73,7 +73,7 @@ controls:
|
|
|
73
73
|
|
|
74
74
|
- id: release_readiness
|
|
75
75
|
name: Release readiness
|
|
76
|
-
draft_purpose: Confirm change scope, risk, rollback, notice, veto,
|
|
76
|
+
draft_purpose: Confirm change type, scope, risk, rollback, notice, veto, and required evidence before release.
|
|
77
77
|
applies_to:
|
|
78
78
|
- Change
|
|
79
79
|
- Release
|
|
@@ -99,15 +99,19 @@ controls:
|
|
|
99
99
|
open_questions:
|
|
100
100
|
- Which deployment evidence is automatically available?
|
|
101
101
|
|
|
102
|
-
- id:
|
|
103
|
-
name:
|
|
104
|
-
draft_purpose: Preserve response details for service-impacting events.
|
|
102
|
+
- id: service_impact_response_evidence
|
|
103
|
+
name: Service-impact response evidence
|
|
104
|
+
draft_purpose: Preserve response details for service-impacting events through Incident entries.
|
|
105
105
|
applies_to:
|
|
106
|
-
-
|
|
106
|
+
- DX Complete Ticket
|
|
107
|
+
- Risk
|
|
108
|
+
- Task
|
|
109
|
+
- Change
|
|
110
|
+
- Decision
|
|
107
111
|
draft_evidence:
|
|
108
112
|
- Timeline.
|
|
109
113
|
- Impact.
|
|
110
114
|
- Actions taken.
|
|
111
115
|
- Resolution and follow-up links.
|
|
112
116
|
open_questions:
|
|
113
|
-
- Which
|
|
117
|
+
- Which service-impact signals should later become Incident records if Incident is promoted?
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
%% Draft intake and triage workflow.
|
|
2
2
|
flowchart TD
|
|
3
3
|
Signal[Incoming signal] --> Source{Likely source?}
|
|
4
|
-
Source -->|Client or user| SupportSignal[Support
|
|
4
|
+
Source -->|Client or user| SupportSignal[Support Request draft]
|
|
5
5
|
Source -->|Product idea| Feedback[Feedback draft]
|
|
6
6
|
Source -->|Authority or commitment| AuthoritySignal[Authoritative Request draft]
|
|
7
|
-
Source -->|Service health|
|
|
7
|
+
Source -->|Service health| ServiceImpact[Service-impact signal]
|
|
8
8
|
SupportSignal --> Triage[Triage]
|
|
9
9
|
Feedback --> Triage
|
|
10
10
|
AuthoritySignal --> Triage
|
|
11
|
-
|
|
11
|
+
ServiceImpact --> Triage
|
|
12
12
|
Triage --> OwnerRoute[Route to Owner]
|
|
13
13
|
Triage --> OpsRoute[Route to Operator]
|
|
14
14
|
Triage --> DecisionRoute[Route for authority decision]
|
|
15
15
|
ProductRoute --> RequirementCandidate[Requirement candidate]
|
|
16
|
-
OpsRoute -->
|
|
16
|
+
OpsRoute --> ServiceFollowUp[Risk, Task, Change, or Decision candidate]
|
|
17
17
|
DecisionRoute --> Decision[Decision or priority]
|
|
18
18
|
RequirementCandidate --> OpenQuestions[Capture open questions]
|
|
19
|
-
|
|
19
|
+
ServiceFollowUp --> OpenQuestions
|
|
20
20
|
Decision --> OpenQuestions
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
%% Draft product definition workflow.
|
|
2
2
|
flowchart TD
|
|
3
|
-
SourceObject[Feedback / Feature Request / Authoritative Request /
|
|
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
6
|
Expectation --> Requirement[Draft Requirement]
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
%% Draft change and release control workflow.
|
|
2
2
|
flowchart TD
|
|
3
|
-
Change[Create Change record] -->
|
|
3
|
+
Change[Create Change record] --> Type[Classify standard, normal, or emergency]
|
|
4
|
+
Type --> Plan[Record change plan]
|
|
4
5
|
Plan --> Execution[Record execution steps]
|
|
5
6
|
Execution --> Rollback[Record rollback plan]
|
|
6
|
-
Rollback --> RiskImpact[Record risk and impact]
|
|
7
|
+
Rollback --> RiskImpact[Record risk, impact, and downstream impact]
|
|
7
8
|
RiskImpact --> Notice[Append notice event]
|
|
8
9
|
Notice --> Veto{Veto recorded?}
|
|
9
10
|
Veto -->|Yes| VetoEvent[Append veto event]
|
|
10
11
|
Veto -->|No| Decision[Append decision event]
|
|
11
12
|
VetoEvent --> Decision
|
|
12
|
-
Decision -->
|
|
13
|
-
|
|
14
|
-
Emergency -->|No| Release[Prepare release or deployment]
|
|
15
|
-
EmergencyEvent --> Release
|
|
16
|
-
Release --> Result[Append result or recovery event]
|
|
13
|
+
Decision --> Release[Prepare release or deployment]
|
|
14
|
+
Release --> Result[Append result or recovery event with optional Git reference]
|
|
@@ -6,8 +6,8 @@ flowchart TD
|
|
|
6
6
|
Registry --> Monitor[Monitor service health]
|
|
7
7
|
Monitor --> Healthy{Healthy?}
|
|
8
8
|
Healthy -->|Yes| Operate[Operate service]
|
|
9
|
-
Healthy -->|No|
|
|
10
|
-
|
|
9
|
+
Healthy -->|No| ServiceSignal[Record service-impact signal]
|
|
10
|
+
ServiceSignal --> Response[Operator response]
|
|
11
11
|
Response --> Rollback{Rollback needed?}
|
|
12
12
|
Rollback -->|Yes| RollbackAction[Rollback or mitigation]
|
|
13
13
|
Rollback -->|No| ContinueMonitor[Continue monitoring]
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
%% Draft support and incident management workflow.
|
|
2
2
|
flowchart TD
|
|
3
|
-
UserSignal[End User signal] --> Ticket[Support
|
|
3
|
+
UserSignal[End User signal] --> Ticket[Support Request]
|
|
4
4
|
Ticket --> Classify{Classify}
|
|
5
5
|
Classify -->|Question or request| SupportResponse[Support Agent response]
|
|
6
6
|
Classify -->|Outcome signal| Feedback[Feedback]
|
|
7
|
-
Classify -->|Service impact| Incident[Incident]
|
|
8
|
-
Classify -->|Recurring issue|
|
|
7
|
+
Classify -->|Service impact| Incident[Create Incident]
|
|
8
|
+
Classify -->|Recurring issue| Problem[Create Problem]
|
|
9
9
|
Incident --> Operator[Operator response]
|
|
10
|
+
Incident --> Problem
|
|
10
11
|
Operator --> UserComms[Support Agent communicates status]
|
|
11
12
|
Feedback --> Owner[Owner triage]
|
|
12
|
-
|
|
13
|
+
Problem --> ProblemReview[Risk, Decision, Requirement, Change, or Task review]
|
|
13
14
|
SupportResponse --> CloseTicket[Close or update ticket]
|
|
14
15
|
UserComms --> CloseTicket
|
|
15
16
|
Owner --> CloseTicket
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
%% Draft problem and improvement workflow.
|
|
2
2
|
flowchart TD
|
|
3
|
-
Signal[Incident /
|
|
4
|
-
Problem --> Investigate[
|
|
3
|
+
Signal[Incident / ticket / repeated service signal] --> Problem[Create Problem]
|
|
4
|
+
Problem --> Investigate[Append investigation entry]
|
|
5
5
|
Investigate --> CauseKnown{Cause known?}
|
|
6
6
|
CauseKnown -->|No| MoreEvidence[Collect more evidence]
|
|
7
7
|
MoreEvidence --> Investigate
|
|
8
|
-
CauseKnown -->|Yes|
|
|
8
|
+
CauseKnown -->|Yes| RootCause[Append root-cause or known-error entry]
|
|
9
|
+
RootCause --> Improvement{Improvement needed?}
|
|
9
10
|
Improvement -->|Requirement| Requirement[Create Requirement]
|
|
10
11
|
Improvement -->|Service change| Change[Create Change]
|
|
11
12
|
Improvement -->|No action| Decision[Record decision]
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
%% Draft risk and control management workflow.
|
|
2
2
|
flowchart TD
|
|
3
|
-
RiskSignal[Risk signal] --> Risk[Risk
|
|
4
|
-
Risk -->
|
|
3
|
+
RiskSignal[Risk signal] --> Risk[Create Risk ledger]
|
|
4
|
+
Risk --> Identify[Append identified entry]
|
|
5
|
+
Identify --> Assess[Append assessment entry]
|
|
5
6
|
Assess --> Treatment{Treatment}
|
|
6
|
-
Treatment -->|Accept|
|
|
7
|
+
Treatment -->|Accept| Owner[Owner formal acceptance]
|
|
8
|
+
Owner --> Decision[Record acceptance decision]
|
|
7
9
|
Decision -. informed_by .-> Risk
|
|
8
|
-
Treatment -->|Mitigate| Control[
|
|
10
|
+
Treatment -->|Mitigate| Control[Append treatment entry]
|
|
9
11
|
Treatment -->|Avoid or defer| Requirement[Create or revise Requirement]
|
|
10
12
|
Control --> EvidenceNeed[Define evidence need]
|
|
11
13
|
EvidenceNeed --> LinkedObjects[Link Requirement / Release / Deployment]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
%% Draft audit and evidence capture workflow.
|
|
2
2
|
flowchart TD
|
|
3
|
-
LifecycleObject[Requirement / Task / Change /
|
|
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]
|
|
5
5
|
EvidenceNeed -->|Yes| Capture[Capture or link evidence]
|
|
6
6
|
Capture --> ResponsiblePerson[Record responsible person and timestamp]
|
|
@@ -14,14 +14,19 @@ current_lifecycle_hypothesis:
|
|
|
14
14
|
- Journal
|
|
15
15
|
- Environment
|
|
16
16
|
- Component
|
|
17
|
+
- Maintenance Schedule
|
|
17
18
|
- Expectation
|
|
18
19
|
- Requirement
|
|
19
20
|
- Estimate
|
|
20
21
|
- Benefits
|
|
22
|
+
- Value Realization
|
|
21
23
|
- Commitment
|
|
22
24
|
- Deferral
|
|
23
25
|
- Task
|
|
24
26
|
- Change
|
|
27
|
+
- Incident
|
|
28
|
+
- Problem
|
|
29
|
+
- Support Request
|
|
25
30
|
- Decision
|
|
26
31
|
- Risk
|
|
27
32
|
upstream_decision_basis_objects:
|
|
@@ -30,14 +35,12 @@ current_lifecycle_hypothesis:
|
|
|
30
35
|
- Requirement
|
|
31
36
|
- Estimate
|
|
32
37
|
- Benefits
|
|
38
|
+
- Value Realization
|
|
33
39
|
- Decision
|
|
34
40
|
lifecycle_concepts_not_runtime_records:
|
|
35
41
|
- Feedback
|
|
36
42
|
- Authoritative Request
|
|
37
43
|
- Feature Request
|
|
38
|
-
- Incident
|
|
39
|
-
- Problem
|
|
40
|
-
- Support Ticket
|
|
41
44
|
- Release
|
|
42
45
|
- Deployment
|
|
43
46
|
- Control
|
|
@@ -91,7 +94,7 @@ objects:
|
|
|
91
94
|
- Task
|
|
92
95
|
- Decision
|
|
93
96
|
- Risk
|
|
94
|
-
- Support
|
|
97
|
+
- Support Request
|
|
95
98
|
|
|
96
99
|
- id: journal
|
|
97
100
|
name: Journal
|
|
@@ -163,6 +166,26 @@ objects:
|
|
|
163
166
|
- Decision
|
|
164
167
|
- Risk
|
|
165
168
|
|
|
169
|
+
- id: maintenance_schedule
|
|
170
|
+
name: Maintenance Schedule
|
|
171
|
+
draft_definition: A recurring operational hygiene record with cadence, start date, rationale, and derived due state.
|
|
172
|
+
draft_fields:
|
|
173
|
+
- name
|
|
174
|
+
- kind
|
|
175
|
+
- cadence
|
|
176
|
+
- start_date
|
|
177
|
+
- rationale
|
|
178
|
+
- notes
|
|
179
|
+
- version_history
|
|
180
|
+
rules:
|
|
181
|
+
- Maintenance Schedule is for recurring service hygiene, not one-off work.
|
|
182
|
+
- Due state is derived from cadence and linked completed Changes or Tasks.
|
|
183
|
+
- Maintenance Schedule edits should preserve prior versions.
|
|
184
|
+
possible_links:
|
|
185
|
+
- Change
|
|
186
|
+
- Task
|
|
187
|
+
- Decision
|
|
188
|
+
|
|
166
189
|
- id: estimate
|
|
167
190
|
name: Estimate
|
|
168
191
|
draft_definition: An itemized cost record used during Weigh, linked to the requirements or expectations it covers.
|
|
@@ -194,6 +217,20 @@ objects:
|
|
|
194
217
|
- Commitment
|
|
195
218
|
- Decision
|
|
196
219
|
|
|
220
|
+
- id: value_realization
|
|
221
|
+
name: Value Realization
|
|
222
|
+
draft_definition: A measured before-and-after value record for expectations, requirements, or commitments.
|
|
223
|
+
rules:
|
|
224
|
+
- Value Realization metrics have a baseline, unit, direction, and optional actual value.
|
|
225
|
+
- Metrics without actual values remain open.
|
|
226
|
+
- Comparisons are derived from baseline and actual values.
|
|
227
|
+
- Value Realization edits should preserve prior versions.
|
|
228
|
+
possible_links:
|
|
229
|
+
- Expectation
|
|
230
|
+
- Requirement
|
|
231
|
+
- Commitment
|
|
232
|
+
- Decision
|
|
233
|
+
|
|
197
234
|
- id: feedback
|
|
198
235
|
name: Feedback
|
|
199
236
|
status: lifecycle_concept
|
|
@@ -364,48 +401,76 @@ objects:
|
|
|
364
401
|
- Operator
|
|
365
402
|
- Incident
|
|
366
403
|
draft_fields:
|
|
404
|
+
- change_type
|
|
367
405
|
- change_plan
|
|
368
406
|
- execution_steps
|
|
369
407
|
- rollback_plan
|
|
370
408
|
- risk_impact
|
|
409
|
+
- impact_grade
|
|
410
|
+
- emergency_importance
|
|
411
|
+
- emergency_immediacy
|
|
371
412
|
- planned_for
|
|
372
413
|
- events
|
|
373
414
|
rules:
|
|
374
415
|
- Change is not a standing Operations Plan.
|
|
375
416
|
- DX Complete records the change; it does not perform or enforce the operation.
|
|
376
417
|
- The original plan sections should remain as the baseline.
|
|
377
|
-
-
|
|
378
|
-
-
|
|
418
|
+
- Risk and impact should include downstream impact where known: what else may be affected and what depends on what is changing.
|
|
419
|
+
- Change type is standard, normal, or emergency.
|
|
420
|
+
- Notice, veto, decision, result, recovery, notes, and plan revisions should be appended as immutable events.
|
|
421
|
+
- Result and recovery events may include optional Git commit references for each execution attempt or rollback; these are references only and should not require Git validation.
|
|
422
|
+
- Emergency changes should record both importance and immediacy where available; missing rationale remains visible.
|
|
379
423
|
- Owner or Engineer may record a veto, but the veto does not mechanically stop the Operator.
|
|
380
424
|
possible_links:
|
|
381
425
|
- Requirement
|
|
382
426
|
- Release
|
|
383
427
|
- Deployment
|
|
384
428
|
- Risk
|
|
429
|
+
- Component
|
|
430
|
+
- Incident
|
|
385
431
|
- Control
|
|
386
432
|
|
|
387
433
|
- id: incident
|
|
388
434
|
name: Incident
|
|
389
|
-
status:
|
|
390
|
-
draft_definition: A service-impacting or potentially service-impacting
|
|
435
|
+
status: current_runtime_record
|
|
436
|
+
draft_definition: A specific service-impacting or potentially service-impacting occurrence requiring response.
|
|
437
|
+
draft_fields:
|
|
438
|
+
- description
|
|
439
|
+
- entries
|
|
440
|
+
- current_status
|
|
441
|
+
- current_severity
|
|
442
|
+
rules:
|
|
443
|
+
- Current status and severity derive from ordered entries.
|
|
444
|
+
- Use Incident for a specific occurrence, not for an underlying cause.
|
|
445
|
+
- Link affected Components with affects.
|
|
391
446
|
likely_sources:
|
|
392
447
|
- Operator
|
|
393
448
|
- Support Agent
|
|
394
449
|
- Monitoring
|
|
395
450
|
- End User
|
|
396
451
|
possible_links:
|
|
397
|
-
- Support
|
|
452
|
+
- Support Request
|
|
398
453
|
- Problem
|
|
399
454
|
- Change
|
|
455
|
+
- Component
|
|
400
456
|
- Risk
|
|
401
457
|
|
|
402
458
|
- id: problem
|
|
403
459
|
name: Problem
|
|
404
|
-
status:
|
|
405
|
-
draft_definition: An underlying
|
|
460
|
+
status: current_runtime_record
|
|
461
|
+
draft_definition: An underlying or recurring cause evidenced by one or more incidents.
|
|
462
|
+
draft_fields:
|
|
463
|
+
- description
|
|
464
|
+
- entries
|
|
465
|
+
- current_status
|
|
466
|
+
- current_root_cause
|
|
467
|
+
rules:
|
|
468
|
+
- Current status and root cause derive from ordered entries.
|
|
469
|
+
- Link incidents that evidence the problem with evidenced_by.
|
|
470
|
+
- Link affected Components with affects when useful.
|
|
406
471
|
likely_sources:
|
|
407
472
|
- Incident
|
|
408
|
-
- Support
|
|
473
|
+
- Support Request
|
|
409
474
|
- Operator
|
|
410
475
|
- Tester
|
|
411
476
|
possible_links:
|
|
@@ -413,15 +478,24 @@ objects:
|
|
|
413
478
|
- Risk
|
|
414
479
|
- Decision
|
|
415
480
|
|
|
416
|
-
- id:
|
|
417
|
-
name: Support
|
|
418
|
-
status:
|
|
419
|
-
draft_definition: A user-facing
|
|
481
|
+
- id: support_request
|
|
482
|
+
name: Support Request
|
|
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:
|
|
486
|
+
- reporter
|
|
487
|
+
- kind
|
|
488
|
+
- reported_experience
|
|
489
|
+
- entries
|
|
490
|
+
- current_status
|
|
491
|
+
rules:
|
|
492
|
+
- Current status derives from ordered entries.
|
|
493
|
+
- Escalated support entries can link to an Incident.
|
|
494
|
+
- Use DX Complete Ticket for private communication with DX Complete, not shared support follow-up.
|
|
420
495
|
likely_sources:
|
|
421
496
|
- End User
|
|
422
497
|
- Support Agent
|
|
423
498
|
possible_links:
|
|
424
|
-
- Feedback
|
|
425
499
|
- Incident
|
|
426
500
|
- Problem
|
|
427
501
|
- Requirement
|
|
@@ -39,7 +39,7 @@ workflows:
|
|
|
39
39
|
|
|
40
40
|
- id: intake_triage
|
|
41
41
|
name: Intake and triage
|
|
42
|
-
draft_purpose: Decide whether a signal should become
|
|
42
|
+
draft_purpose: Decide whether a signal should become a ticket, statement, requirement, task, risk, decision, change, journal note, or another matching lifecycle concept.
|
|
43
43
|
likely_roles:
|
|
44
44
|
- Owner
|
|
45
45
|
- Support Agent
|
|
@@ -108,7 +108,7 @@ workflows:
|
|
|
108
108
|
|
|
109
109
|
- id: change_release_control
|
|
110
110
|
name: Change and release control
|
|
111
|
-
draft_purpose: Record a discrete service change, including plan, execution, rollback, notice, veto,
|
|
111
|
+
draft_purpose: Record a discrete service change, including change type, plan, execution, rollback, notice, veto, and result.
|
|
112
112
|
likely_roles:
|
|
113
113
|
- Operator
|
|
114
114
|
- Owner
|
|
@@ -118,7 +118,8 @@ workflows:
|
|
|
118
118
|
- Record the Change baseline.
|
|
119
119
|
- Confirm required evidence and notice.
|
|
120
120
|
- Assess risk, impact, and rollback.
|
|
121
|
-
-
|
|
121
|
+
- Classify the change as standard, normal, or emergency.
|
|
122
|
+
- Append notice, veto, decision, result, recovery, note, or revision events as they occur.
|
|
122
123
|
- Link release or deployment evidence where needed.
|
|
123
124
|
|
|
124
125
|
- id: deployment_operations
|
|
@@ -134,7 +135,7 @@ workflows:
|
|
|
134
135
|
- Monitor service health.
|
|
135
136
|
- Update Environment and Component records when operational inventory changes.
|
|
136
137
|
- Record deployment evidence.
|
|
137
|
-
- Route issues to
|
|
138
|
+
- Route issues to tickets, risks, tasks, changes, decisions, requirements, or journal notes as appropriate.
|
|
138
139
|
|
|
139
140
|
- id: operational_registry
|
|
140
141
|
name: Operational Registry maintenance
|
|
@@ -151,7 +152,7 @@ workflows:
|
|
|
151
152
|
|
|
152
153
|
- id: support_incident_management
|
|
153
154
|
name: Support and incident management
|
|
154
|
-
draft_purpose: Handle user-facing issues and service-impacting events.
|
|
155
|
+
draft_purpose: Handle user-facing issues and service-impacting events, using Incident when a specific occurrence needs response history.
|
|
155
156
|
likely_roles:
|
|
156
157
|
- Support Agent
|
|
157
158
|
- Operator
|
|
@@ -159,14 +160,14 @@ workflows:
|
|
|
159
160
|
- Engineer
|
|
160
161
|
draft_steps:
|
|
161
162
|
- Capture user or monitoring signal.
|
|
162
|
-
- Classify as ticket, incident,
|
|
163
|
+
- Classify as ticket, statement, incident, problem, risk, task, change, decision, requirement, or journal note.
|
|
163
164
|
- Communicate status to affected users where needed.
|
|
164
165
|
- Resolve or route.
|
|
165
166
|
- Link follow-up objects.
|
|
166
167
|
|
|
167
168
|
- id: problem_improvement
|
|
168
169
|
name: Problem and improvement management
|
|
169
|
-
draft_purpose: Convert recurring or root-cause
|
|
170
|
+
draft_purpose: Convert recurring or root-cause signals into durable improvements through Problem records and linked follow-up.
|
|
170
171
|
likely_roles:
|
|
171
172
|
- Operator
|
|
172
173
|
- Engineer
|
|
@@ -174,8 +175,8 @@ workflows:
|
|
|
174
175
|
- Support Agent
|
|
175
176
|
draft_steps:
|
|
176
177
|
- Identify recurring issue or root cause.
|
|
177
|
-
-
|
|
178
|
-
- Decide whether improvement requires a
|
|
178
|
+
- Capture the underlying or recurring cause through Problem when incidents or operational evidence support it.
|
|
179
|
+
- Decide whether improvement requires a Requirement, Task, Risk, Decision, or Change.
|
|
179
180
|
- Track corrective action.
|
|
180
181
|
- Capture outcome and evidence.
|
|
181
182
|
|
package/website/flow.html
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
<a class="nav-link" href="./flow.html">Flow</a>
|
|
24
24
|
<a class="nav-link" href="./objects.html">Records</a>
|
|
25
25
|
<a class="nav-link" href="./roles.html">Roles</a>
|
|
26
|
+
<a class="nav-link" href="./operating-guide.html">Operating Guide</a>
|
|
26
27
|
<a class="nav-link" href="./glossary.html">Glossary</a>
|
|
27
28
|
</nav>
|
|
28
29
|
</aside>
|