@mplp/schema 1.0.1 → 1.0.2

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 (38) hide show
  1. package/README.md +11 -0
  2. package/dist/index.d.ts +0 -11
  3. package/dist/index.js +7 -11
  4. package/package.json +23 -4
  5. package/schemas/common/common-types.schema.json +49 -49
  6. package/schemas/common/events.schema.json +66 -66
  7. package/schemas/common/identifiers.schema.json +13 -13
  8. package/schemas/common/learning-sample.schema.json +194 -194
  9. package/schemas/common/metadata.schema.json +113 -113
  10. package/schemas/common/trace-base.schema.json +43 -43
  11. package/schemas/events/mplp-event-core.schema.json +58 -58
  12. package/schemas/events/mplp-graph-update-event.schema.json +58 -58
  13. package/schemas/events/mplp-map-event.schema.json +147 -147
  14. package/schemas/events/mplp-pipeline-stage-event.schema.json +56 -56
  15. package/schemas/events/mplp-runtime-execution-event.schema.json +58 -58
  16. package/schemas/events/mplp-sa-event.schema.json +109 -109
  17. package/schemas/integration/mplp-ci-event.schema.json +130 -130
  18. package/schemas/integration/mplp-file-update-event.schema.json +70 -70
  19. package/schemas/integration/mplp-git-event.schema.json +98 -98
  20. package/schemas/integration/mplp-tool-event.schema.json +83 -83
  21. package/schemas/invariants/integration-invariants.yaml +12 -8
  22. package/schemas/invariants/learning-invariants.yaml +12 -8
  23. package/schemas/invariants/map-invariants.yaml +12 -8
  24. package/schemas/invariants/observability-invariants.yaml +12 -8
  25. package/schemas/invariants/sa-invariants.yaml +12 -8
  26. package/schemas/learning/mplp-learning-sample-core.schema.json +94 -94
  27. package/schemas/learning/mplp-learning-sample-delta.schema.json +137 -137
  28. package/schemas/learning/mplp-learning-sample-intent.schema.json +119 -119
  29. package/schemas/mplp-collab.schema.json +243 -243
  30. package/schemas/mplp-confirm.schema.json +226 -226
  31. package/schemas/mplp-context.schema.json +246 -246
  32. package/schemas/mplp-core.schema.json +183 -183
  33. package/schemas/mplp-dialog.schema.json +198 -198
  34. package/schemas/mplp-extension.schema.json +179 -179
  35. package/schemas/mplp-network.schema.json +230 -230
  36. package/schemas/mplp-plan.schema.json +193 -193
  37. package/schemas/mplp-role.schema.json +139 -139
  38. package/schemas/mplp-trace.schema.json +216 -216
@@ -1,139 +1,139 @@
1
- {
2
- "$comment": "MPLP Protocol v1.0.0 — Frozen Specification\nFreeze Date: 2025-12-03\nStatus: FROZEN (no breaking changes permitted)\nGovernance: MPLP Protocol Governance Committee (MPGC)\nCopyright: © 2025 邦士(北京)网络科技有限公司\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "$id": "https://schemas.mplp.dev/v1.0/mplp-role.schema.json",
5
- "title": "MPLP Role Module – Core Protocol v1.0",
6
- "description": "Role Module Core Protocol: Describes the minimal required semantics (Core Profile) for capability declarations, permission declarations, and behavioral identity models in multi-agent systems.",
7
- "type": "object",
8
- "additionalProperties": false,
9
- "properties": {
10
- "meta": {
11
- "$ref": "common/metadata.schema.json",
12
- "description": "[PROTOCOL-CORE] MPLP protocol schema metadata (version, source, cross-cutting tags, etc.)."
13
- },
14
- "governance": {
15
- "type": "object",
16
- "description": "[PROTOCOL-CORE] Governance metadata for lifecycle management, truth domain authority, and locking status.",
17
- "properties": {
18
- "lifecyclePhase": {
19
- "type": "string",
20
- "description": "Current phase in the lifecycle fence (e.g., 'design', 'implementation', 'review')."
21
- },
22
- "truthDomain": {
23
- "type": "string",
24
- "description": "The truth domain this object belongs to (e.g., 'requirements', 'architecture')."
25
- },
26
- "locked": {
27
- "type": "boolean",
28
- "description": "If true, this object cannot be modified except by specific governance overrides."
29
- },
30
- "lastConfirmRef": {
31
- "$ref": "common/common-types.schema.json#/definitions/Ref",
32
- "description": "Reference to the last Confirm decision that validated this state."
33
- }
34
- },
35
- "additionalProperties": false
36
- },
37
- "role_id": {
38
- "$ref": "common/identifiers.schema.json",
39
- "description": "[PROTOCOL-CORE] Global unique identifier for the Role."
40
- },
41
- "name": {
42
- "type": "string",
43
- "description": "[PROTOCOL-CORE] Human-readable name of the role (e.g., 'planner', 'reviewer', 'executor')."
44
- },
45
- "description": {
46
- "type": "string",
47
- "description": "[PROTOCOL-CORE] Detailed description of the role function, for humans and Agents."
48
- },
49
- "capabilities": {
50
- "type": "array",
51
- "description": "[PROTOCOL-CORE] List of capability/permission tags possessed by the role (e.g., 'plan.create', 'confirm.approve').",
52
- "items": {
53
- "type": "string"
54
- }
55
- },
56
- "created_at": {
57
- "type": "string",
58
- "format": "date-time",
59
- "description": "[PROTOCOL-CORE] Role creation time (ISO 8601)."
60
- },
61
- "updated_at": {
62
- "type": "string",
63
- "format": "date-time",
64
- "description": "[PROTOCOL-CORE] Role last update time (ISO 8601)."
65
- },
66
- "trace": {
67
- "$ref": "common/trace-base.schema.json",
68
- "description": "[PROTOCOL-CORE] Audit trace reference associated with this role."
69
- },
70
- "events": {
71
- "type": "array",
72
- "description": "[PROTOCOL-CORE] List of key events directly related to this role (creation, permission changes, deactivation, etc.).",
73
- "items": {
74
- "$ref": "common/events.schema.json"
75
- }
76
- }
77
- },
78
- "required": [
79
- "meta",
80
- "role_id",
81
- "name"
82
- ],
83
- "$defs": {
84
- "role_core_properties": {
85
- "type": "object",
86
- "properties": {
87
- "meta": {
88
- "$ref": "common/metadata.schema.json",
89
- "description": "[PROTOCOL-CORE] MPLP protocol schema metadata (version, source, cross-cutting tags, etc.)."
90
- },
91
- "role_id": {
92
- "$ref": "common/identifiers.schema.json",
93
- "description": "[PROTOCOL-CORE] Global unique identifier for the Role."
94
- },
95
- "name": {
96
- "type": "string",
97
- "description": "[PROTOCOL-CORE] Human-readable name of the role (e.g., 'planner', 'reviewer', 'executor')."
98
- },
99
- "description": {
100
- "type": "string",
101
- "description": "[PROTOCOL-CORE] Detailed description of the role function, for humans and Agents."
102
- },
103
- "capabilities": {
104
- "type": "array",
105
- "description": "[PROTOCOL-CORE] List of capability/permission tags possessed by the role (e.g., 'plan.create', 'confirm.approve').",
106
- "items": {
107
- "type": "string"
108
- }
109
- },
110
- "created_at": {
111
- "type": "string",
112
- "format": "date-time",
113
- "description": "[PROTOCOL-CORE] Role creation time (ISO 8601)."
114
- },
115
- "updated_at": {
116
- "type": "string",
117
- "format": "date-time",
118
- "description": "[PROTOCOL-CORE] Role last update time (ISO 8601)."
119
- },
120
- "trace": {
121
- "$ref": "common/trace-base.schema.json",
122
- "description": "[PROTOCOL-CORE] Audit trace reference associated with this role."
123
- },
124
- "events": {
125
- "type": "array",
126
- "description": "[PROTOCOL-CORE] List of key events directly related to this role (creation, permission changes, deactivation, etc.).",
127
- "items": {
128
- "$ref": "common/events.schema.json"
129
- }
130
- }
131
- },
132
- "required": [
133
- "meta",
134
- "role_id",
135
- "name"
136
- ]
137
- }
138
- }
139
- }
1
+ {
2
+ "$comment": "MPLP Protocol v1.0.0 — Frozen Specification\nFreeze Date: 2025-12-03\nStatus: FROZEN (no breaking changes permitted)\nGovernance: MPLP Protocol Governance Committee (MPGC)\nCopyright: © 2025 邦士(北京)网络科技有限公司\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "$id": "https://schemas.mplp.dev/v1.0/mplp-role.schema.json",
5
+ "title": "MPLP Role Module – Core Protocol v1.0",
6
+ "description": "Role Module Core Protocol: Describes the minimal required semantics (Core Profile) for capability declarations, permission declarations, and behavioral identity models in multi-agent systems.",
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "meta": {
11
+ "$ref": "common/metadata.schema.json",
12
+ "description": "[PROTOCOL-CORE] MPLP protocol schema metadata (version, source, cross-cutting tags, etc.)."
13
+ },
14
+ "governance": {
15
+ "type": "object",
16
+ "description": "[PROTOCOL-CORE] Governance metadata for lifecycle management, truth domain authority, and locking status.",
17
+ "properties": {
18
+ "lifecyclePhase": {
19
+ "type": "string",
20
+ "description": "Current phase in the lifecycle fence (e.g., 'design', 'implementation', 'review')."
21
+ },
22
+ "truthDomain": {
23
+ "type": "string",
24
+ "description": "The truth domain this object belongs to (e.g., 'requirements', 'architecture')."
25
+ },
26
+ "locked": {
27
+ "type": "boolean",
28
+ "description": "If true, this object cannot be modified except by specific governance overrides."
29
+ },
30
+ "lastConfirmRef": {
31
+ "$ref": "common/common-types.schema.json#/definitions/Ref",
32
+ "description": "Reference to the last Confirm decision that validated this state."
33
+ }
34
+ },
35
+ "additionalProperties": false
36
+ },
37
+ "role_id": {
38
+ "$ref": "common/identifiers.schema.json",
39
+ "description": "[PROTOCOL-CORE] Global unique identifier for the Role."
40
+ },
41
+ "name": {
42
+ "type": "string",
43
+ "description": "[PROTOCOL-CORE] Human-readable name of the role (e.g., 'planner', 'reviewer', 'executor')."
44
+ },
45
+ "description": {
46
+ "type": "string",
47
+ "description": "[PROTOCOL-CORE] Detailed description of the role function, for humans and Agents."
48
+ },
49
+ "capabilities": {
50
+ "type": "array",
51
+ "description": "[PROTOCOL-CORE] List of capability/permission tags possessed by the role (e.g., 'plan.create', 'confirm.approve').",
52
+ "items": {
53
+ "type": "string"
54
+ }
55
+ },
56
+ "created_at": {
57
+ "type": "string",
58
+ "format": "date-time",
59
+ "description": "[PROTOCOL-CORE] Role creation time (ISO 8601)."
60
+ },
61
+ "updated_at": {
62
+ "type": "string",
63
+ "format": "date-time",
64
+ "description": "[PROTOCOL-CORE] Role last update time (ISO 8601)."
65
+ },
66
+ "trace": {
67
+ "$ref": "common/trace-base.schema.json",
68
+ "description": "[PROTOCOL-CORE] Audit trace reference associated with this role."
69
+ },
70
+ "events": {
71
+ "type": "array",
72
+ "description": "[PROTOCOL-CORE] List of key events directly related to this role (creation, permission changes, deactivation, etc.).",
73
+ "items": {
74
+ "$ref": "common/events.schema.json"
75
+ }
76
+ }
77
+ },
78
+ "required": [
79
+ "meta",
80
+ "role_id",
81
+ "name"
82
+ ],
83
+ "$defs": {
84
+ "role_core_properties": {
85
+ "type": "object",
86
+ "properties": {
87
+ "meta": {
88
+ "$ref": "common/metadata.schema.json",
89
+ "description": "[PROTOCOL-CORE] MPLP protocol schema metadata (version, source, cross-cutting tags, etc.)."
90
+ },
91
+ "role_id": {
92
+ "$ref": "common/identifiers.schema.json",
93
+ "description": "[PROTOCOL-CORE] Global unique identifier for the Role."
94
+ },
95
+ "name": {
96
+ "type": "string",
97
+ "description": "[PROTOCOL-CORE] Human-readable name of the role (e.g., 'planner', 'reviewer', 'executor')."
98
+ },
99
+ "description": {
100
+ "type": "string",
101
+ "description": "[PROTOCOL-CORE] Detailed description of the role function, for humans and Agents."
102
+ },
103
+ "capabilities": {
104
+ "type": "array",
105
+ "description": "[PROTOCOL-CORE] List of capability/permission tags possessed by the role (e.g., 'plan.create', 'confirm.approve').",
106
+ "items": {
107
+ "type": "string"
108
+ }
109
+ },
110
+ "created_at": {
111
+ "type": "string",
112
+ "format": "date-time",
113
+ "description": "[PROTOCOL-CORE] Role creation time (ISO 8601)."
114
+ },
115
+ "updated_at": {
116
+ "type": "string",
117
+ "format": "date-time",
118
+ "description": "[PROTOCOL-CORE] Role last update time (ISO 8601)."
119
+ },
120
+ "trace": {
121
+ "$ref": "common/trace-base.schema.json",
122
+ "description": "[PROTOCOL-CORE] Audit trace reference associated with this role."
123
+ },
124
+ "events": {
125
+ "type": "array",
126
+ "description": "[PROTOCOL-CORE] List of key events directly related to this role (creation, permission changes, deactivation, etc.).",
127
+ "items": {
128
+ "$ref": "common/events.schema.json"
129
+ }
130
+ }
131
+ },
132
+ "required": [
133
+ "meta",
134
+ "role_id",
135
+ "name"
136
+ ]
137
+ }
138
+ }
139
+ }