@mplp/schema 1.0.5 → 1.0.6

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 (41) hide show
  1. package/README.md +20 -2
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.js +15 -0
  4. package/dist/kernel-duties.d.ts +9 -0
  5. package/dist/kernel-duties.js +19 -0
  6. package/package.json +14 -5
  7. package/schemas/common/common-types.schema.json +1 -1
  8. package/schemas/common/events.schema.json +1 -1
  9. package/schemas/common/identifiers.schema.json +1 -1
  10. package/schemas/common/learning-sample.schema.json +1 -1
  11. package/schemas/common/metadata.schema.json +6 -4
  12. package/schemas/common/trace-base.schema.json +1 -1
  13. package/schemas/events/mplp-event-core.schema.json +1 -1
  14. package/schemas/events/mplp-graph-update-event.schema.json +1 -1
  15. package/schemas/events/mplp-map-event.schema.json +1 -1
  16. package/schemas/events/mplp-pipeline-stage-event.schema.json +1 -1
  17. package/schemas/events/mplp-runtime-execution-event.schema.json +1 -1
  18. package/schemas/events/mplp-sa-event.schema.json +1 -1
  19. package/schemas/integration/mplp-ci-event.schema.json +1 -1
  20. package/schemas/integration/mplp-file-update-event.schema.json +1 -1
  21. package/schemas/integration/mplp-git-event.schema.json +1 -1
  22. package/schemas/integration/mplp-tool-event.schema.json +1 -1
  23. package/schemas/invariants/integration-invariants.yaml +1 -1
  24. package/schemas/invariants/learning-invariants.yaml +1 -1
  25. package/schemas/invariants/map-invariants.yaml +1 -1
  26. package/schemas/invariants/observability-invariants.yaml +1 -1
  27. package/schemas/invariants/sa-invariants.yaml +1 -1
  28. package/schemas/kernel-duties.json +18 -0
  29. package/schemas/learning/mplp-learning-sample-core.schema.json +1 -1
  30. package/schemas/learning/mplp-learning-sample-delta.schema.json +1 -1
  31. package/schemas/learning/mplp-learning-sample-intent.schema.json +1 -1
  32. package/schemas/mplp-collab.schema.json +1 -1
  33. package/schemas/mplp-confirm.schema.json +1 -1
  34. package/schemas/mplp-context.schema.json +1 -1
  35. package/schemas/mplp-core.schema.json +1 -1
  36. package/schemas/mplp-dialog.schema.json +1 -1
  37. package/schemas/mplp-extension.schema.json +1 -1
  38. package/schemas/mplp-network.schema.json +1 -1
  39. package/schemas/mplp-plan.schema.json +1 -1
  40. package/schemas/mplp-role.schema.json +1 -1
  41. package/schemas/mplp-trace.schema.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # @mplp/schema
2
2
 
3
+ **Package Role:** Public npm schema and protocol-baseline package
3
4
  **Protocol:** MPLP v1.0.0 (Frozen)
5
+ **sdk_version:** 1.0.6
4
6
  **License:** Apache-2.0
5
7
 
6
- The **@mplp/schema** package provides **JSON Schema definitions and validation utilities** for the
8
+ The **@mplp/schema** package provides **JSON Schema definitions, validation utilities, and the canonical machine-readable Kernel Duty baseline** for the
7
9
  **Multi-Agent Lifecycle Protocol (MPLP)** — the Agent OS Protocol for AI agent systems.
8
10
 
9
11
  ---
@@ -15,6 +17,7 @@ The **@mplp/schema** package provides **JSON Schema definitions and validation u
15
17
  * **Protocol-compliant interfaces** aligned with MPLP v1.0.0
16
18
  * **Strict version alignment** with the frozen MPLP protocol specification
17
19
  * **Type-safe integration surface** for higher-level runtimes and tools
20
+ * **11-duty baseline export** via `KERNEL_DUTIES`, `KERNEL_DUTY_IDS`, `KERNEL_DUTY_NAMES`, and `KERNEL_DUTY_COUNT`
18
21
 
19
22
  ### ❌ What this package does NOT provide
20
23
 
@@ -34,6 +37,19 @@ The **@mplp/schema** package provides **JSON Schema definitions and validation u
34
37
  npm install @mplp/schema
35
38
  ```
36
39
 
40
+ ## Kernel Duty Exports
41
+
42
+ ```typescript
43
+ import { KERNEL_DUTIES, KERNEL_DUTY_COUNT } from '@mplp/schema';
44
+
45
+ console.log(KERNEL_DUTY_COUNT); // 11
46
+ console.log(KERNEL_DUTIES[0]); // { id: 'KD-01', name: 'Coordination', slug: 'coordination' }
47
+ ```
48
+
49
+ Raw JSON is also shipped at:
50
+
51
+ - `schemas/kernel-duties.json`
52
+
37
53
  ---
38
54
 
39
55
  ## Protocol Documentation (Authoritative)
@@ -48,6 +64,8 @@ npm install @mplp/schema
48
64
  ## Versioning & Compatibility
49
65
 
50
66
  * **Protocol version:** MPLP v1.0.0 (Frozen)
67
+ * **Schema package version:** 1.0.6
68
+ * **Kernel duty baseline:** 11/11 carried in package
51
69
  * **SDK compatibility:** Guaranteed for v1.0.0 only
52
70
  * Breaking changes require a new protocol version.
53
71
 
@@ -58,4 +76,4 @@ npm install @mplp/schema
58
76
  Apache License, Version 2.0
59
77
 
60
78
  © 2026 **Bangshi Beijing Network Technology Limited Company**
61
- Coregentis AI
79
+ Coregentis AI
package/dist/index.d.ts CHANGED
@@ -20,6 +20,7 @@ export declare function validate(schemaName: string, data: any): {
20
20
  valid: boolean;
21
21
  errors?: any[];
22
22
  };
23
+ export * from "./kernel-duties";
23
24
  export declare const SCHEMA_NAMES: {
24
25
  readonly CORE: "mplp-core";
25
26
  readonly CONTEXT: "mplp-context";
package/dist/index.js CHANGED
@@ -18,6 +18,21 @@ const fs_1 = require("fs");
18
18
  const path_1 = require("path");
19
19
  const ajv_1 = __importDefault(require("ajv"));
20
20
  const ajv_formats_1 = __importDefault(require("ajv-formats"));
21
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
22
+ if (k2 === undefined) k2 = k;
23
+ var desc = Object.getOwnPropertyDescriptor(m, k);
24
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
25
+ desc = { enumerable: true, get: function() { return m[k]; } };
26
+ }
27
+ Object.defineProperty(o, k2, desc);
28
+ }) : (function(o, m, k, k2) {
29
+ if (k2 === undefined) k2 = k;
30
+ o[k2] = m[k];
31
+ }));
32
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
33
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
34
+ };
35
+ __exportStar(require("./kernel-duties"), exports);
21
36
  /**
22
37
  * Load a schema by name
23
38
  */
@@ -0,0 +1,9 @@
1
+ export interface KernelDuty {
2
+ id: string;
3
+ name: string;
4
+ slug: string;
5
+ }
6
+ export declare const KERNEL_DUTIES: readonly KernelDuty[];
7
+ export declare const KERNEL_DUTY_IDS: readonly string[];
8
+ export declare const KERNEL_DUTY_NAMES: readonly string[];
9
+ export declare const KERNEL_DUTY_COUNT: 11;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.KERNEL_DUTY_COUNT = exports.KERNEL_DUTY_NAMES = exports.KERNEL_DUTY_IDS = exports.KERNEL_DUTIES = void 0;
4
+ exports.KERNEL_DUTIES = Object.freeze([
5
+ { id: "KD-01", name: "Coordination", slug: "coordination" },
6
+ { id: "KD-02", name: "Error Handling", slug: "error-handling" },
7
+ { id: "KD-03", name: "Event Bus", slug: "event-bus" },
8
+ { id: "KD-04", name: "Learning Feedback", slug: "learning-feedback" },
9
+ { id: "KD-05", name: "Observability", slug: "observability" },
10
+ { id: "KD-06", name: "Orchestration", slug: "orchestration" },
11
+ { id: "KD-07", name: "Performance", slug: "performance" },
12
+ { id: "KD-08", name: "Protocol Versioning", slug: "protocol-versioning" },
13
+ { id: "KD-09", name: "Security", slug: "security" },
14
+ { id: "KD-10", name: "State Sync", slug: "state-sync" },
15
+ { id: "KD-11", name: "Transaction", slug: "transaction" }
16
+ ]);
17
+ exports.KERNEL_DUTY_IDS = Object.freeze(exports.KERNEL_DUTIES.map((duty) => duty.id));
18
+ exports.KERNEL_DUTY_NAMES = Object.freeze(exports.KERNEL_DUTIES.map((duty) => duty.name));
19
+ exports.KERNEL_DUTY_COUNT = 11;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mplp/schema",
3
- "version": "1.0.5",
4
- "description": "MPLP Protocol v1.0 JSON Schemas - All protocol schema definitions",
3
+ "version": "1.0.6",
4
+ "description": "MPLP Protocol v1.0 schema package with JSON Schema definitions, validation utilities, and canonical Kernel Duty baseline.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -35,11 +35,15 @@
35
35
  "typescript": "^5.0.0"
36
36
  },
37
37
  "author": "Bangshi Beijing Network Technology Limited Company",
38
- "copyright": "© 2025 Bangshi Beijing Network Technology Limited Company",
38
+ "copyright": "© 2026 Bangshi Beijing Network Technology Limited Company",
39
39
  "mplp": {
40
40
  "protocolVersion": "1.0.0",
41
41
  "frozen": true,
42
- "governance": "MPGC"
42
+ "governance": "MPGC",
43
+ "packageClass": "PUBLIC",
44
+ "publishSurface": true,
45
+ "publishScope": "public-npm",
46
+ "kernelDutyBaselineCarried": true
43
47
  },
44
48
  "homepage": "https://www.mplp.io",
45
49
  "bugs": {
@@ -50,10 +54,15 @@
50
54
  "require": "./dist/index.js",
51
55
  "import": "./dist/index.js",
52
56
  "types": "./dist/index.d.ts"
57
+ },
58
+ "./kernel-duties": {
59
+ "require": "./dist/kernel-duties.js",
60
+ "import": "./dist/kernel-duties.js",
61
+ "types": "./dist/kernel-duties.d.ts"
53
62
  }
54
63
  },
55
64
  "sideEffects": false,
56
65
  "scripts": {
57
66
  "build": "tsc -p tsconfig.json"
58
67
  }
59
- }
68
+ }
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$id": "https://schemas.mplp.dev/v1.0/common/common-types.schema.json",
4
4
  "$schema": "http://json-schema.org/draft-07/schema#",
5
5
  "title": "MPLP Common Types",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$id": "https://schemas.mplp.dev/v1.0/common/events.schema.json",
4
4
  "$schema": "http://json-schema.org/draft-07/schema#",
5
5
  "title": "MPLP Base Event",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$id": "https://schemas.mplp.dev/v1.0/common/identifiers.schema.json",
4
4
  "$schema": "http://json-schema.org/draft-07/schema#",
5
5
  "title": "MPLP Identifier",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/common/learning-sample.schema.json",
5
5
  "title": "MPLP Learning Sample – Schema v2.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$id": "https://schemas.mplp.dev/v1.0/common/metadata.schema.json",
4
4
  "$schema": "http://json-schema.org/draft-07/schema#",
5
5
  "title": "MPLP Metadata",
@@ -77,16 +77,18 @@
77
77
  },
78
78
  "cross_cutting": {
79
79
  "type": "array",
80
- "description": "Declares cross-cutting concerns enabled for the current object (one of the 9 concerns in Governance Plane).",
80
+ "description": "Declares cross-cutting concerns enabled for the current object (one of the 11 concerns in Governance Plane).",
81
81
  "items": {
82
82
  "type": "string",
83
83
  "enum": [
84
84
  "coordination",
85
85
  "error-handling",
86
86
  "event-bus",
87
+ "learning-feedback",
88
+ "observability",
87
89
  "orchestration",
88
90
  "performance",
89
- "protocol-version",
91
+ "protocol-versioning",
90
92
  "security",
91
93
  "state-sync",
92
94
  "transaction"
@@ -110,4 +112,4 @@
110
112
  "schema_version"
111
113
  ],
112
114
  "additionalProperties": false
113
- }
115
+ }
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$id": "https://schemas.mplp.dev/v1.0/common/trace-base.schema.json",
4
4
  "$schema": "http://json-schema.org/draft-07/schema#",
5
5
  "title": "MPLP Trace Base",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/events/mplp-event-core.schema.json",
5
5
  "title": "MPLP Core Event v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/events/mplp-graph-update-event.schema.json",
5
5
  "title": "MPLP GraphUpdateEvent v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/events/mplp-map-event.schema.json",
5
5
  "title": "MPLP MAP Event v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/events/mplp-pipeline-stage-event.schema.json",
5
5
  "title": "MPLP PipelineStageEvent v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/events/mplp-runtime-execution-event.schema.json",
5
5
  "title": "MPLP RuntimeExecutionEvent v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/events/mplp-sa-event.schema.json",
5
5
  "title": "MPLP SA Event v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/integration/mplp-ci-event.json",
5
5
  "title": "MPLP CI Event v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/integration/mplp-file-update-event.json",
5
5
  "title": "MPLP File Update Event v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/integration/mplp-git-event.json",
5
5
  "title": "MPLP Git Event v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/integration/mplp-tool-event.json",
5
5
  "title": "MPLP Tool Event v1.0",
@@ -4,7 +4,7 @@
4
4
 
5
5
  # MPLP Protocol 1.0.0 — Frozen Specification
6
6
  # Status: Frozen as of 2025-11-30
7
- # Copyright: © 2026 邦士(北京)网络科技有限公司
7
+ # Copyright: © 2026 Bangshi Beijing Network Technology Limited Company
8
8
  # License: Apache-2.0 (see LICENSE at repository root)
9
9
  # Any normative change requires a new protocol version.
10
10
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # MPLP Protocol 1.0.0 — Frozen Specification
6
6
  # Status: Frozen as of 2025-11-30
7
- # Copyright: © 2026 邦士(北京)网络科技有限公司
7
+ # Copyright: © 2026 Bangshi Beijing Network Technology Limited Company
8
8
  # License: Apache-2.0 (see LICENSE at repository root)
9
9
  # Any normative change requires a new protocol version.
10
10
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # MPLP Protocol 1.0.0 — Frozen Specification
6
6
  # Status: Frozen as of 2025-11-30
7
- # Copyright: © 2026 邦士(北京)网络科技有限公司
7
+ # Copyright: © 2026 Bangshi Beijing Network Technology Limited Company
8
8
  # License: Apache-2.0 (see LICENSE at repository root)
9
9
  # Any normative change requires a new protocol version.
10
10
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # MPLP Protocol 1.0.0 — Frozen Specification
6
6
  # Status: Frozen as of 2025-11-30
7
- # Copyright: © 2026 邦士(北京)网络科技有限公司
7
+ # Copyright: © 2026 Bangshi Beijing Network Technology Limited Company
8
8
  # License: Apache-2.0 (see LICENSE at repository root)
9
9
  # Any normative change requires a new protocol version.
10
10
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # MPLP Protocol 1.0.0 — Frozen Specification
6
6
  # Status: Frozen as of 2025-11-30
7
- # Copyright: © 2026 邦士(北京)网络科技有限公司
7
+ # Copyright: © 2026 Bangshi Beijing Network Technology Limited Company
8
8
  # License: Apache-2.0 (see LICENSE at repository root)
9
9
  # Any normative change requires a new protocol version.
10
10
 
@@ -0,0 +1,18 @@
1
+ {
2
+ "protocol_version": "1.0.0",
3
+ "source_of_truth": "schemas/v2/taxonomy/kernel-duties.yaml",
4
+ "count": 11,
5
+ "duties": [
6
+ { "id": "KD-01", "name": "Coordination", "slug": "coordination" },
7
+ { "id": "KD-02", "name": "Error Handling", "slug": "error-handling" },
8
+ { "id": "KD-03", "name": "Event Bus", "slug": "event-bus" },
9
+ { "id": "KD-04", "name": "Learning Feedback", "slug": "learning-feedback" },
10
+ { "id": "KD-05", "name": "Observability", "slug": "observability" },
11
+ { "id": "KD-06", "name": "Orchestration", "slug": "orchestration" },
12
+ { "id": "KD-07", "name": "Performance", "slug": "performance" },
13
+ { "id": "KD-08", "name": "Protocol Versioning", "slug": "protocol-versioning" },
14
+ { "id": "KD-09", "name": "Security", "slug": "security" },
15
+ { "id": "KD-10", "name": "State Sync", "slug": "state-sync" },
16
+ { "id": "KD-11", "name": "Transaction", "slug": "transaction" }
17
+ ]
18
+ }
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/learning/mplp-learning-sample-core.schema.json",
5
5
  "title": "MPLP LearningSample Core v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/learning/mplp-learning-sample-delta.schema.json",
5
5
  "title": "MPLP LearningSample – Delta Impact v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://mplp.dev/schemas/v1.0/learning/mplp-learning-sample-intent.schema.json",
5
5
  "title": "MPLP LearningSample – Intent Resolution v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-collab.schema.json",
5
5
  "title": "MPLP Collab Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-confirm.schema.json",
5
5
  "title": "MPLP Confirm Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-context.schema.json",
5
5
  "title": "MPLP Context Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-core.schema.json",
5
5
  "title": "MPLP Core Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-dialog.schema.json",
5
5
  "title": "MPLP Dialog Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-extension.schema.json",
5
5
  "title": "MPLP Extension Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-network.schema.json",
5
5
  "title": "MPLP Network Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-plan.schema.json",
5
5
  "title": "MPLP Plan Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-role.schema.json",
5
5
  "title": "MPLP Role Module – Core Protocol v1.0",
@@ -1,5 +1,5 @@
1
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.",
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: © 2026 Bangshi Beijing Network Technology Limited Company\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "$id": "https://schemas.mplp.dev/v1.0/mplp-trace.schema.json",
5
5
  "title": "MPLP Trace Module – Core Protocol v1.0",