@deksden-com/dd-flow-cli 0.3.0 → 0.4.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/CHANGELOG.md +55 -0
- package/README.md +74 -5
- package/dist/build-info.json +5 -5
- package/dist/cli/help.js +116 -18
- package/dist/cli/run-cli.js +361 -29
- package/dist/schemas/compatibility.schema.json +81 -2
- package/dist/schemas/engine-manifest.schema.json +61 -0
- package/dist/schemas/flow-guidance.schema.json +17 -0
- package/dist/schemas/global-dashboard-data.schema.json +60 -2
- package/dist/schemas/mb-upgrade-migration-report.schema.json +93 -0
- package/dist/schemas/project-dashboard-data.schema.json +26 -2
- package/dist/schemas/project-summary.schema.json +73 -0
- package/dist/schemas/protocol-dashboard-data.schema.json +25 -2
- package/dist/schemas/status-report.schema.json +4 -2
- package/dist/services/branch-context.js +254 -0
- package/dist/services/cleanup.js +31 -0
- package/dist/services/cli-operation-classifier.js +104 -0
- package/dist/services/compatibility-preflight.js +127 -0
- package/dist/services/config.js +6 -0
- package/dist/services/dashboard-targets.js +95 -0
- package/dist/services/dashboard.js +376 -59
- package/dist/services/engines.js +532 -0
- package/dist/services/flow-guidance.js +8 -1
- package/dist/services/hooks.js +1 -1
- package/dist/services/lanes.js +333 -1
- package/dist/services/merge-queue.js +310 -15
- package/dist/services/merge-worker.js +44 -3
- package/dist/services/migrations.js +231 -0
- package/dist/services/project-summary.js +122 -0
- package/dist/services/projects.js +41 -6
- package/dist/services/protocol-lifecycle.js +144 -0
- package/dist/services/protocols.js +34 -7
- package/dist/services/sessions.js +21 -4
- package/dist/services/status.js +10 -0
- package/dist/services/version-status.js +39 -15
- package/dist/storage/database.js +25 -0
- package/dist/storage/paths.js +12 -0
- package/package.json +3 -2
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "dd-flow/engine-manifest@1",
|
|
4
|
+
"title": "dd-flow engine manifest",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema_id",
|
|
9
|
+
"package_name",
|
|
10
|
+
"package_version",
|
|
11
|
+
"engine_id",
|
|
12
|
+
"engine_version",
|
|
13
|
+
"installed_at",
|
|
14
|
+
"install_source",
|
|
15
|
+
"package_root",
|
|
16
|
+
"snapshot_root",
|
|
17
|
+
"entrypoint",
|
|
18
|
+
"supports_memorybank",
|
|
19
|
+
"supports_contracts",
|
|
20
|
+
"integrity"
|
|
21
|
+
],
|
|
22
|
+
"properties": {
|
|
23
|
+
"schema_id": { "const": "dd-flow/engine-manifest@1" },
|
|
24
|
+
"package_name": { "type": "string", "minLength": 1 },
|
|
25
|
+
"package_version": { "type": "string", "minLength": 1 },
|
|
26
|
+
"engine_id": { "const": "dd-flow-engine" },
|
|
27
|
+
"engine_version": { "type": "string", "minLength": 1 },
|
|
28
|
+
"installed_at": { "type": "string", "format": "date-time" },
|
|
29
|
+
"install_source": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"enum": ["bundled_package", "npx_package", "local_development"]
|
|
32
|
+
},
|
|
33
|
+
"package_root": { "type": "string", "minLength": 1 },
|
|
34
|
+
"snapshot_root": { "type": "string", "minLength": 1 },
|
|
35
|
+
"entrypoint": { "type": "string", "minLength": 1 },
|
|
36
|
+
"supports_memorybank": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": { "type": "string", "minLength": 1 }
|
|
39
|
+
},
|
|
40
|
+
"supports_contracts": {
|
|
41
|
+
"type": "object",
|
|
42
|
+
"additionalProperties": {
|
|
43
|
+
"type": "array",
|
|
44
|
+
"items": { "type": "string", "minLength": 1 }
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"integrity": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"additionalProperties": false,
|
|
50
|
+
"required": ["source", "checksum", "mode"],
|
|
51
|
+
"properties": {
|
|
52
|
+
"source": { "const": "package_snapshot" },
|
|
53
|
+
"checksum": { "type": ["string", "null"] },
|
|
54
|
+
"mode": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"enum": ["file_list", "full_content", "package_manifest", "degraded_local_development"]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -18,6 +18,23 @@
|
|
|
18
18
|
"type": "string",
|
|
19
19
|
"minLength": 1
|
|
20
20
|
},
|
|
21
|
+
"lifecycle": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"additionalProperties": true,
|
|
24
|
+
"required": ["flow", "stage", "status", "terminal", "raw_stage", "raw_status"],
|
|
25
|
+
"properties": {
|
|
26
|
+
"flow": { "type": "string", "minLength": 1 },
|
|
27
|
+
"stage": { "type": "string", "minLength": 1 },
|
|
28
|
+
"substage": { "type": ["string", "null"] },
|
|
29
|
+
"status": { "type": "string", "minLength": 1 },
|
|
30
|
+
"terminal": { "type": "boolean" },
|
|
31
|
+
"legacy_stage": { "type": ["string", "null"] },
|
|
32
|
+
"legacy_status": { "type": ["string", "null"] },
|
|
33
|
+
"raw_stage": { "type": "string", "minLength": 1 },
|
|
34
|
+
"raw_status": { "type": "string", "minLength": 1 },
|
|
35
|
+
"queue_status": { "type": ["string", "null"] }
|
|
36
|
+
}
|
|
37
|
+
},
|
|
21
38
|
"allowed_next_stages": {
|
|
22
39
|
"type": "array",
|
|
23
40
|
"items": {
|
|
@@ -4,7 +4,18 @@
|
|
|
4
4
|
"title": "dd-flow global dashboard data",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"additionalProperties": true,
|
|
7
|
-
"required": [
|
|
7
|
+
"required": [
|
|
8
|
+
"schema_id",
|
|
9
|
+
"generated_at",
|
|
10
|
+
"target_language",
|
|
11
|
+
"page",
|
|
12
|
+
"metrics",
|
|
13
|
+
"supported_summary_versions",
|
|
14
|
+
"summary_version_groups",
|
|
15
|
+
"unsupported_projects",
|
|
16
|
+
"project_cards",
|
|
17
|
+
"warnings"
|
|
18
|
+
],
|
|
8
19
|
"properties": {
|
|
9
20
|
"schema_id": { "const": "dd-flow/global-dashboard-data@1" },
|
|
10
21
|
"generated_at": { "type": "string", "format": "date-time" },
|
|
@@ -12,6 +23,9 @@
|
|
|
12
23
|
"page": { "$ref": "#/definitions/page" },
|
|
13
24
|
"links": { "type": "object", "additionalProperties": { "$ref": "#/definitions/link" } },
|
|
14
25
|
"metrics": { "type": "array", "items": { "$ref": "#/definitions/metric" } },
|
|
26
|
+
"supported_summary_versions": { "type": "array", "items": { "$ref": "#/definitions/summaryVersion" } },
|
|
27
|
+
"summary_version_groups": { "type": "array", "items": { "$ref": "#/definitions/summaryVersionGroup" } },
|
|
28
|
+
"unsupported_projects": { "type": "array", "items": { "$ref": "#/definitions/unsupportedProject" } },
|
|
15
29
|
"project_cards": { "type": "array", "items": { "$ref": "#/definitions/card" } },
|
|
16
30
|
"warnings": { "type": "array" }
|
|
17
31
|
},
|
|
@@ -55,14 +69,58 @@
|
|
|
55
69
|
"card": {
|
|
56
70
|
"type": "object",
|
|
57
71
|
"additionalProperties": true,
|
|
58
|
-
"required": ["id", "title", "display_status", "action_level", "metrics"],
|
|
72
|
+
"required": ["id", "title", "display_status", "action_level", "lifecycle_summary", "resource_summary", "metrics"],
|
|
59
73
|
"properties": {
|
|
60
74
|
"id": { "type": "string", "minLength": 1 },
|
|
61
75
|
"title": { "type": "string", "minLength": 1 },
|
|
62
76
|
"display_status": { "type": "string", "minLength": 1 },
|
|
63
77
|
"action_level": { "type": "string", "enum": ["none", "watch", "actionable", "blocked"] },
|
|
78
|
+
"lifecycle_summary": { "type": "object", "additionalProperties": true },
|
|
79
|
+
"resource_summary": { "type": "object", "additionalProperties": true },
|
|
64
80
|
"metrics": { "type": "object" }
|
|
65
81
|
}
|
|
82
|
+
},
|
|
83
|
+
"summaryVersion": {
|
|
84
|
+
"type": "object",
|
|
85
|
+
"additionalProperties": true,
|
|
86
|
+
"required": ["schema_id", "schema_version", "label", "status"],
|
|
87
|
+
"properties": {
|
|
88
|
+
"schema_id": { "type": "string", "minLength": 1 },
|
|
89
|
+
"schema_version": { "type": ["string", "null"] },
|
|
90
|
+
"label": { "type": "string", "minLength": 1 },
|
|
91
|
+
"status": { "type": "string", "minLength": 1 }
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"summaryVersionGroup": {
|
|
95
|
+
"type": "object",
|
|
96
|
+
"additionalProperties": true,
|
|
97
|
+
"required": ["schema_id", "schema_version", "compatible", "count", "project_ids", "project_names"],
|
|
98
|
+
"properties": {
|
|
99
|
+
"schema_id": { "type": "string", "minLength": 1 },
|
|
100
|
+
"schema_version": { "type": "string", "minLength": 1 },
|
|
101
|
+
"compatible": { "type": "boolean" },
|
|
102
|
+
"count": { "type": "integer", "minimum": 0 },
|
|
103
|
+
"project_ids": { "type": "array", "items": { "type": "string" } },
|
|
104
|
+
"project_names": { "type": "array", "items": { "type": "string" } }
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"unsupportedProject": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"additionalProperties": true,
|
|
110
|
+
"required": ["id", "title", "root", "status", "display_status", "reason", "summary_path"],
|
|
111
|
+
"properties": {
|
|
112
|
+
"id": { "type": "string", "minLength": 1 },
|
|
113
|
+
"title": { "type": "string", "minLength": 1 },
|
|
114
|
+
"root": { "type": "string", "minLength": 1 },
|
|
115
|
+
"status": { "type": "string", "minLength": 1 },
|
|
116
|
+
"display_status": { "const": "unsupported" },
|
|
117
|
+
"reason": { "type": "string", "minLength": 1 },
|
|
118
|
+
"detail": { "type": "string" },
|
|
119
|
+
"summary_schema_id": { "type": ["string", "null"] },
|
|
120
|
+
"summary_schema_version": { "type": ["string", "null"] },
|
|
121
|
+
"summary_path": { "type": "string", "minLength": 1 },
|
|
122
|
+
"install_hint": { "type": ["string", "null"] }
|
|
123
|
+
}
|
|
66
124
|
}
|
|
67
125
|
}
|
|
68
126
|
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "dd-flow/mb-upgrade-migration-report@1",
|
|
4
|
+
"title": "mb-upgrade runtime/home migration report",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": true,
|
|
7
|
+
"required": [
|
|
8
|
+
"ok",
|
|
9
|
+
"schema_id",
|
|
10
|
+
"generated_at",
|
|
11
|
+
"project",
|
|
12
|
+
"migration",
|
|
13
|
+
"backup",
|
|
14
|
+
"active_state",
|
|
15
|
+
"primary_data",
|
|
16
|
+
"derived_artifacts",
|
|
17
|
+
"verification"
|
|
18
|
+
],
|
|
19
|
+
"properties": {
|
|
20
|
+
"ok": { "const": true },
|
|
21
|
+
"schema_id": { "const": "dd-flow/mb-upgrade-migration-report@1" },
|
|
22
|
+
"generated_at": { "type": "string", "minLength": 1 },
|
|
23
|
+
"project": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"required": ["id", "root", "memory_bank_version"],
|
|
26
|
+
"additionalProperties": true,
|
|
27
|
+
"properties": {
|
|
28
|
+
"id": { "type": "string", "minLength": 1 },
|
|
29
|
+
"root": { "type": "string", "minLength": 1 },
|
|
30
|
+
"memory_bank_version": { "type": ["string", "null"] }
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"migration": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"required": [
|
|
36
|
+
"mode",
|
|
37
|
+
"status",
|
|
38
|
+
"source_memory_bank_version",
|
|
39
|
+
"target_memory_bank_version",
|
|
40
|
+
"adjacent_only",
|
|
41
|
+
"chain",
|
|
42
|
+
"blocked_reasons"
|
|
43
|
+
],
|
|
44
|
+
"additionalProperties": true,
|
|
45
|
+
"properties": {
|
|
46
|
+
"mode": { "const": "mb-upgrade-only" },
|
|
47
|
+
"status": { "enum": ["ready", "blocked", "noop", "completed", "failed", "degraded"] },
|
|
48
|
+
"source_memory_bank_version": { "type": "string", "minLength": 1 },
|
|
49
|
+
"target_memory_bank_version": { "type": "string", "minLength": 1 },
|
|
50
|
+
"adjacent_only": { "const": true },
|
|
51
|
+
"chain": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"required": ["id", "from", "to", "status"],
|
|
56
|
+
"additionalProperties": true,
|
|
57
|
+
"properties": {
|
|
58
|
+
"id": { "type": "string", "minLength": 1 },
|
|
59
|
+
"from": { "type": "string", "minLength": 1 },
|
|
60
|
+
"to": { "type": "string", "minLength": 1 },
|
|
61
|
+
"status": { "enum": ["planned", "applied", "skipped", "failed", "blocked"] }
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"blocked_reasons": {
|
|
66
|
+
"type": "array",
|
|
67
|
+
"items": { "type": "string", "minLength": 1 }
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"backup": {
|
|
72
|
+
"type": "object",
|
|
73
|
+
"required": ["status", "path", "created_at", "rollback_route"],
|
|
74
|
+
"additionalProperties": true,
|
|
75
|
+
"properties": {
|
|
76
|
+
"status": { "enum": ["present", "planned", "missing"] },
|
|
77
|
+
"path": { "type": ["string", "null"] },
|
|
78
|
+
"created_at": { "type": ["string", "null"] },
|
|
79
|
+
"rollback_route": { "type": "string", "minLength": 1 }
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"active_state": { "type": "object", "additionalProperties": true },
|
|
83
|
+
"primary_data": {
|
|
84
|
+
"type": "array",
|
|
85
|
+
"items": { "type": "string", "minLength": 1 }
|
|
86
|
+
},
|
|
87
|
+
"derived_artifacts": {
|
|
88
|
+
"type": "array",
|
|
89
|
+
"items": { "type": "string", "minLength": 1 }
|
|
90
|
+
},
|
|
91
|
+
"verification": { "type": "object", "additionalProperties": true }
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"title": "dd-flow project dashboard data",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"additionalProperties": true,
|
|
7
|
-
"required": ["schema_id", "generated_at", "target_language", "page", "project", "metrics", "protocol_cards", "warnings"],
|
|
7
|
+
"required": ["schema_id", "generated_at", "target_language", "page", "project", "metrics", "lifecycle_summary", "resource_summary", "protocol_cards", "warnings"],
|
|
8
8
|
"properties": {
|
|
9
9
|
"schema_id": { "const": "dd-flow/project-dashboard-data@1" },
|
|
10
10
|
"generated_at": { "type": "string", "format": "date-time" },
|
|
@@ -24,8 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"links": { "type": "object", "additionalProperties": { "$ref": "#/definitions/link" } },
|
|
26
26
|
"metrics": { "type": "array", "items": { "$ref": "#/definitions/metric" } },
|
|
27
|
+
"lifecycle_summary": { "type": "object", "additionalProperties": true },
|
|
28
|
+
"resource_summary": { "type": "object", "additionalProperties": true },
|
|
27
29
|
"protocol_cards": { "type": "array", "items": { "$ref": "#/definitions/protocolCard" } },
|
|
28
30
|
"review_runs": { "type": "array", "items": { "$ref": "#/definitions/reviewRun" } },
|
|
31
|
+
"queued_protocols": { "type": "array" },
|
|
29
32
|
"merge_queue": { "type": "array" },
|
|
30
33
|
"sessions": { "type": "array" },
|
|
31
34
|
"locks": { "type": "array" },
|
|
@@ -71,16 +74,37 @@
|
|
|
71
74
|
"protocolCard": {
|
|
72
75
|
"type": "object",
|
|
73
76
|
"additionalProperties": true,
|
|
74
|
-
"required": ["id", "short_id", "display_status", "action_level", "current_stage", "href"],
|
|
77
|
+
"required": ["id", "short_id", "display_status", "action_level", "lifecycle", "current_stage", "href"],
|
|
75
78
|
"properties": {
|
|
76
79
|
"id": { "type": "string", "minLength": 1 },
|
|
77
80
|
"short_id": { "type": "string", "minLength": 1 },
|
|
78
81
|
"display_status": { "type": "string", "minLength": 1 },
|
|
79
82
|
"action_level": { "type": "string", "enum": ["none", "watch", "actionable", "blocked"] },
|
|
83
|
+
"lifecycle": { "$ref": "#/definitions/lifecycle" },
|
|
84
|
+
"lifecycle_stage": { "type": "string" },
|
|
85
|
+
"lifecycle_status": { "type": "string" },
|
|
86
|
+
"resource": { "type": "object", "additionalProperties": true },
|
|
80
87
|
"current_stage": { "type": "string", "minLength": 1 },
|
|
81
88
|
"href": { "type": "string", "minLength": 1 }
|
|
82
89
|
}
|
|
83
90
|
},
|
|
91
|
+
"lifecycle": {
|
|
92
|
+
"type": "object",
|
|
93
|
+
"additionalProperties": true,
|
|
94
|
+
"required": ["flow", "stage", "status", "terminal", "raw_stage", "raw_status"],
|
|
95
|
+
"properties": {
|
|
96
|
+
"flow": { "type": "string", "minLength": 1 },
|
|
97
|
+
"stage": { "type": "string", "minLength": 1 },
|
|
98
|
+
"substage": { "type": ["string", "null"] },
|
|
99
|
+
"status": { "type": "string", "minLength": 1 },
|
|
100
|
+
"terminal": { "type": "boolean" },
|
|
101
|
+
"legacy_stage": { "type": ["string", "null"] },
|
|
102
|
+
"legacy_status": { "type": ["string", "null"] },
|
|
103
|
+
"raw_stage": { "type": "string", "minLength": 1 },
|
|
104
|
+
"raw_status": { "type": "string", "minLength": 1 },
|
|
105
|
+
"queue_status": { "type": ["string", "null"] }
|
|
106
|
+
}
|
|
107
|
+
},
|
|
84
108
|
"reviewRun": {
|
|
85
109
|
"type": "object",
|
|
86
110
|
"additionalProperties": true,
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "dd-flow/project-summary@1",
|
|
4
|
+
"title": "dd-flow project summary",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": true,
|
|
7
|
+
"required": [
|
|
8
|
+
"schema_id",
|
|
9
|
+
"schema_version",
|
|
10
|
+
"generated_at",
|
|
11
|
+
"project_id",
|
|
12
|
+
"name",
|
|
13
|
+
"root",
|
|
14
|
+
"root_exists",
|
|
15
|
+
"status",
|
|
16
|
+
"memorybank_version",
|
|
17
|
+
"cli_version",
|
|
18
|
+
"engine_version",
|
|
19
|
+
"summary_path",
|
|
20
|
+
"protocol_counts",
|
|
21
|
+
"active_protocols",
|
|
22
|
+
"waiting_items",
|
|
23
|
+
"resource_summary",
|
|
24
|
+
"warnings",
|
|
25
|
+
"last_activity_at"
|
|
26
|
+
],
|
|
27
|
+
"properties": {
|
|
28
|
+
"schema_id": { "const": "dd-flow/project-summary@1" },
|
|
29
|
+
"schema_version": { "const": "1.0.0" },
|
|
30
|
+
"generated_at": { "type": "string", "minLength": 1 },
|
|
31
|
+
"project_id": { "type": "string", "minLength": 1 },
|
|
32
|
+
"name": { "type": "string", "minLength": 1 },
|
|
33
|
+
"root": { "type": "string", "minLength": 1 },
|
|
34
|
+
"root_exists": { "type": "boolean" },
|
|
35
|
+
"status": { "type": "string", "minLength": 1 },
|
|
36
|
+
"memorybank_version": { "type": ["string", "null"] },
|
|
37
|
+
"memorybank_status": { "type": "string" },
|
|
38
|
+
"flow_pack_status": { "type": "string" },
|
|
39
|
+
"required_engine_range": { "type": ["string", "null"] },
|
|
40
|
+
"cli_version": { "type": "string", "minLength": 1 },
|
|
41
|
+
"engine_version": { "type": ["string", "null"] },
|
|
42
|
+
"engine_status": { "type": "string" },
|
|
43
|
+
"summary_path": { "type": "string", "minLength": 1 },
|
|
44
|
+
"dashboard_path": { "type": "string" },
|
|
45
|
+
"protocol_counts": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"required": ["active", "waiting", "done", "total"],
|
|
48
|
+
"additionalProperties": true,
|
|
49
|
+
"properties": {
|
|
50
|
+
"active": { "type": "integer", "minimum": 0 },
|
|
51
|
+
"waiting": { "type": "integer", "minimum": 0 },
|
|
52
|
+
"done": { "type": "integer", "minimum": 0 },
|
|
53
|
+
"total": { "type": "integer", "minimum": 0 }
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"active_protocols": { "type": "array" },
|
|
57
|
+
"waiting_items": { "type": "array" },
|
|
58
|
+
"resource_summary": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"required": ["queue", "locks", "waiters", "sessions", "open_defs"],
|
|
61
|
+
"additionalProperties": true,
|
|
62
|
+
"properties": {
|
|
63
|
+
"queue": { "type": "integer", "minimum": 0 },
|
|
64
|
+
"locks": { "type": "integer", "minimum": 0 },
|
|
65
|
+
"waiters": { "type": "integer", "minimum": 0 },
|
|
66
|
+
"sessions": { "type": "integer", "minimum": 0 },
|
|
67
|
+
"open_defs": { "type": "integer", "minimum": 0 }
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"warnings": { "type": "array" },
|
|
71
|
+
"last_activity_at": { "type": "string", "minLength": 1 }
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"title": "dd-flow protocol dashboard data",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"additionalProperties": true,
|
|
7
|
-
"required": ["schema_id", "generated_at", "target_language", "page", "project", "protocol", "primary_run_id", "run_history", "stage_pipeline", "metrics", "warnings"],
|
|
7
|
+
"required": ["schema_id", "generated_at", "target_language", "page", "project", "protocol", "resource", "primary_run_id", "run_history", "stage_pipeline", "metrics", "warnings"],
|
|
8
8
|
"properties": {
|
|
9
9
|
"schema_id": { "const": "dd-flow/protocol-dashboard-data@1" },
|
|
10
10
|
"generated_at": { "type": "string", "format": "date-time" },
|
|
@@ -14,17 +14,23 @@
|
|
|
14
14
|
"protocol": {
|
|
15
15
|
"type": "object",
|
|
16
16
|
"additionalProperties": true,
|
|
17
|
-
"required": ["id", "short_id", "raw_status", "raw_stage", "display_status", "action_level", "updated_at"],
|
|
17
|
+
"required": ["id", "short_id", "lifecycle", "raw_status", "raw_stage", "display_status", "action_level", "updated_at"],
|
|
18
18
|
"properties": {
|
|
19
19
|
"id": { "type": "string", "minLength": 1 },
|
|
20
20
|
"short_id": { "type": "string", "minLength": 1 },
|
|
21
21
|
"raw_status": { "type": "string", "minLength": 1 },
|
|
22
22
|
"raw_stage": { "type": "string", "minLength": 1 },
|
|
23
|
+
"lifecycle": { "$ref": "#/definitions/lifecycle" },
|
|
24
|
+
"lifecycle_stage": { "type": "string" },
|
|
25
|
+
"lifecycle_status": { "type": "string" },
|
|
23
26
|
"display_status": { "type": "string", "minLength": 1 },
|
|
24
27
|
"action_level": { "type": "string", "enum": ["none", "watch", "actionable", "blocked"] },
|
|
25
28
|
"updated_at": { "type": "string", "minLength": 1 }
|
|
26
29
|
}
|
|
27
30
|
},
|
|
31
|
+
"resource": { "type": "object", "additionalProperties": true },
|
|
32
|
+
"queue_item": { "type": ["object", "null"], "additionalProperties": true },
|
|
33
|
+
"claim": { "type": ["object", "null"], "additionalProperties": true },
|
|
28
34
|
"links": { "type": "object", "additionalProperties": { "$ref": "#/definitions/link" } },
|
|
29
35
|
"primary_run_id": { "type": ["string", "null"] },
|
|
30
36
|
"primary_run_reason": { "type": "string" },
|
|
@@ -84,6 +90,23 @@
|
|
|
84
90
|
"display_status": { "type": "string", "minLength": 1 },
|
|
85
91
|
"stages": { "type": "array" }
|
|
86
92
|
}
|
|
93
|
+
},
|
|
94
|
+
"lifecycle": {
|
|
95
|
+
"type": "object",
|
|
96
|
+
"additionalProperties": true,
|
|
97
|
+
"required": ["flow", "stage", "status", "terminal", "raw_stage", "raw_status"],
|
|
98
|
+
"properties": {
|
|
99
|
+
"flow": { "type": "string", "minLength": 1 },
|
|
100
|
+
"stage": { "type": "string", "minLength": 1 },
|
|
101
|
+
"substage": { "type": ["string", "null"] },
|
|
102
|
+
"status": { "type": "string", "minLength": 1 },
|
|
103
|
+
"terminal": { "type": "boolean" },
|
|
104
|
+
"legacy_stage": { "type": ["string", "null"] },
|
|
105
|
+
"legacy_status": { "type": ["string", "null"] },
|
|
106
|
+
"raw_stage": { "type": "string", "minLength": 1 },
|
|
107
|
+
"raw_status": { "type": "string", "minLength": 1 },
|
|
108
|
+
"queue_status": { "type": ["string", "null"] }
|
|
109
|
+
}
|
|
87
110
|
}
|
|
88
111
|
}
|
|
89
112
|
}
|
|
@@ -135,13 +135,14 @@
|
|
|
135
135
|
"flowPack": {
|
|
136
136
|
"type": ["object", "null"],
|
|
137
137
|
"additionalProperties": true,
|
|
138
|
-
"required": ["manifest_path", "schema_id", "pack_version", "source_commit", "canon_version_at_source_commit", "status", "canonical_only_files"],
|
|
138
|
+
"required": ["manifest_path", "schema_id", "pack_version", "source_commit", "canon_version_at_source_commit", "flow_contract", "status", "canonical_only_files"],
|
|
139
139
|
"properties": {
|
|
140
140
|
"manifest_path": { "type": ["string", "null"] },
|
|
141
141
|
"schema_id": { "type": ["string", "null"] },
|
|
142
142
|
"pack_version": { "type": ["string", "null"] },
|
|
143
143
|
"source_commit": { "type": ["string", "null"] },
|
|
144
144
|
"canon_version_at_source_commit": { "type": ["string", "null"] },
|
|
145
|
+
"flow_contract": { "type": ["string", "null"] },
|
|
145
146
|
"status": { "type": "string", "enum": ["present", "missing", "invalid", "degraded"] },
|
|
146
147
|
"reason": { "type": "string" },
|
|
147
148
|
"canonical_only_files": {
|
|
@@ -153,10 +154,11 @@
|
|
|
153
154
|
"drift": {
|
|
154
155
|
"type": ["object", "null"],
|
|
155
156
|
"additionalProperties": true,
|
|
156
|
-
"required": ["memory_bank_version", "flow_pack_commit", "overall", "next_action"],
|
|
157
|
+
"required": ["memory_bank_version", "flow_pack_commit", "flow_contract", "overall", "next_action"],
|
|
157
158
|
"properties": {
|
|
158
159
|
"memory_bank_version": { "$ref": "#/definitions/comparison" },
|
|
159
160
|
"flow_pack_commit": { "$ref": "#/definitions/comparison" },
|
|
161
|
+
"flow_contract": { "$ref": "#/definitions/comparison" },
|
|
160
162
|
"overall": {
|
|
161
163
|
"type": "string",
|
|
162
164
|
"enum": ["same", "behind", "ahead", "diverged", "missing", "invalid", "unknown", "not_applicable"]
|