@mplp/sdk-ts 1.0.6 → 1.0.7

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 +61 -20
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.js +1 -0
  4. package/dist/kernel-duties.d.ts +1 -0
  5. package/dist/kernel-duties.js +7 -0
  6. package/package.json +20 -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,29 +1,44 @@
1
1
  # @mplp/sdk-ts
2
2
 
3
+ **Package Role:** Public npm facade package
3
4
  **Protocol:** MPLP v1.0.0 (Frozen)
5
+ **sdk_version:** 1.0.7
4
6
  **License:** Apache-2.0
5
7
 
6
- The **@mplp/sdk-ts** package provides **TypeScript SDK umbrella package** for the
7
- **Multi-Agent Lifecycle Protocol (MPLP)** — the Agent OS Protocol for AI agent systems.
8
+ The published `@mplp/sdk-ts` package is the **public TypeScript SDK facade**
9
+ for MPLP.
10
+
11
+ It ships:
12
+
13
+ - compiled builder helpers,
14
+ - a runtime client,
15
+ - mirrored schema artifacts,
16
+ - and a stable facade import surface over `@mplp/core`.
17
+
18
+ It is **not** the standalone runtime package and it does **not** carry a full
19
+ kernel-duty registry.
8
20
 
9
21
  ---
10
22
 
11
23
  ## Scope & Guarantees (Important)
12
24
 
13
- ### What this package provides
25
+ ### What this package provides
14
26
 
15
- * **Protocol-compliant interfaces** aligned with MPLP v1.0.0
16
- * **Strict version alignment** with the frozen MPLP protocol specification
17
- * **Type-safe integration surface** for higher-level runtimes and tools
27
+ - Protocol-aligned facade exports for MPLP v1.0.0
28
+ - Compiled builders such as `createContext`, `createPlan`, `createConfirm`, and `appendTrace`
29
+ - Runtime client helpers via `MplpRuntimeClient`
30
+ - Mirrored schemas for validator/helper use
31
+ - Public npm distribution surface for the TypeScript SDK facade
32
+ - Re-exported Kernel Duty baseline from `@mplp/schema`
18
33
 
19
- ### What this package does NOT provide
34
+ ### What this package does NOT provide
20
35
 
21
- - Full execution runtime (LLM orchestration, tool execution)
22
- - Golden Flow execution engines (Flow-01 ~ Flow-05)
23
- - Observability pipelines or distributed tracing backends
24
- - Production agent orchestration
36
+ - Standalone runtime package identity (use `@mplp/runtime-minimal`)
37
+ - Full execution runtime hosting/orchestration stack
38
+ - Golden Flow execution engines (Flow-01 ~ Flow-05)
39
+ - Canonical registry of all 11 Kernel Duties
25
40
 
26
- > These capabilities belong to **reference runtimes and products built *on top of* MPLP**,
41
+ > These capabilities belong to reference runtimes and products built *on top of* MPLP,
27
42
  > not to the protocol SDK itself.
28
43
 
29
44
  ---
@@ -38,18 +53,44 @@ npm install @mplp/sdk-ts
38
53
 
39
54
  ## Protocol Documentation (Authoritative)
40
55
 
41
- * **Homepage:** [https://www.mplp.io](https://www.mplp.io)
42
- * **Specification & Docs:** [https://docs.mplp.io](https://docs.mplp.io)
43
- * **Source Repository:** [https://github.com/Coregentis/MPLP-Protocol](https://github.com/Coregentis/MPLP-Protocol)
44
- * **Issues:** [https://github.com/Coregentis/MPLP-Protocol/issues](https://github.com/Coregentis/MPLP-Protocol/issues)
56
+ - **Homepage:** [https://www.mplp.io](https://www.mplp.io)
57
+ - **Specification & Docs:** [https://docs.mplp.io](https://docs.mplp.io)
58
+ - **Source Repository:** [https://github.com/Coregentis/MPLP-Protocol](https://github.com/Coregentis/MPLP-Protocol)
59
+ - **Issues:** [https://github.com/Coregentis/MPLP-Protocol/issues](https://github.com/Coregentis/MPLP-Protocol/issues)
60
+
61
+ ---
62
+
63
+ ## Package Provenance
64
+
65
+ - **Public npm surface:** `packages/npm/sdk-ts/`
66
+ - **Source-side mirror:** `packages/sources/sdk-ts/`
67
+ - **Separate runtime package:** `packages/npm/runtime-minimal/`
68
+
69
+ This package is a facade surface over compiled artifacts and mirrored schemas.
70
+ It should not be read as protocol truth or as the sole runtime package.
71
+
72
+ ---
73
+
74
+ ## Kernel Duty Baseline
75
+
76
+ This package re-exports the canonical 11 MPLP Kernel Duties from `@mplp/schema`.
77
+
78
+ ```typescript
79
+ import { KERNEL_DUTY_COUNT, KERNEL_DUTIES } from '@mplp/sdk-ts';
80
+
81
+ console.log(KERNEL_DUTY_COUNT); // 11
82
+ console.log(KERNEL_DUTIES[0]); // { id: 'KD-01', name: 'Coordination', slug: 'coordination' }
83
+ ```
45
84
 
46
85
  ---
47
86
 
48
87
  ## Versioning & Compatibility
49
88
 
50
- * **Protocol version:** MPLP v1.0.0 (Frozen)
51
- * **SDK compatibility:** Guaranteed for v1.0.0 only
52
- * Breaking changes require a new protocol version.
89
+ - **Protocol version:** MPLP v1.0.0 (Frozen)
90
+ - **Facade package version:** 1.0.7
91
+ - **Kernel duty baseline:** 11/11 re-exported from `@mplp/schema`
92
+ - **SDK compatibility:** aligned to `protocol_version` v1.0.0 only
93
+ - Breaking changes require a new protocol version.
53
94
 
54
95
  ---
55
96
 
@@ -58,4 +99,4 @@ npm install @mplp/sdk-ts
58
99
  Apache License, Version 2.0
59
100
 
60
101
  © 2026 **Bangshi Beijing Network Technology Limited Company**
61
- Coregentis AI
102
+ Coregentis AI
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@
6
6
  * It is NOT part of the frozen protocol specification.
7
7
  */
8
8
  export * from "@mplp/core";
9
+ export * from "./kernel-duties";
9
10
  export * from "./builders/context-builder";
10
11
  export * from "./builders/plan-builder";
11
12
  export * from "./builders/confirm-builder";
package/dist/index.js CHANGED
@@ -22,6 +22,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
22
22
  * It is NOT part of the frozen protocol specification.
23
23
  */
24
24
  __exportStar(require("@mplp/core"), exports);
25
+ __exportStar(require("./kernel-duties"), exports);
25
26
  __exportStar(require("./builders/context-builder"), exports);
26
27
  __exportStar(require("./builders/plan-builder"), exports);
27
28
  __exportStar(require("./builders/confirm-builder"), exports);
@@ -0,0 +1 @@
1
+ export { KernelDuty, KERNEL_DUTIES, KERNEL_DUTY_IDS, KERNEL_DUTY_NAMES, KERNEL_DUTY_COUNT } from "@mplp/schema";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const schema = require("@mplp/schema");
4
+ exports.KERNEL_DUTIES = schema.KERNEL_DUTIES;
5
+ exports.KERNEL_DUTY_IDS = schema.KERNEL_DUTY_IDS;
6
+ exports.KERNEL_DUTY_NAMES = schema.KERNEL_DUTY_NAMES;
7
+ exports.KERNEL_DUTY_COUNT = schema.KERNEL_DUTY_COUNT;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mplp/sdk-ts",
3
- "version": "1.0.6",
4
- "description": "TypeScript SDK and reference runtime for the MPLP Protocol v1.0.0 (Multi-Agent Lifecycle Protocol).",
3
+ "version": "1.0.7",
4
+ "description": "Public TypeScript SDK facade for MPLP Protocol v1.0.0; ships builders, runtime client helpers, schema mirrors, and Kernel Duty exports.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Bangshi Beijing Network Technology Limited Company",
7
7
  "repository": {
@@ -18,7 +18,8 @@
18
18
  "protocol",
19
19
  "ai agents",
20
20
  "lifecycle",
21
- "runtime",
21
+ "sdk",
22
+ "facade",
22
23
  "typescript",
23
24
  "agent-os",
24
25
  "agent-os-protocol"
@@ -36,13 +37,22 @@
36
37
  "protocolVersion": "1.0.0",
37
38
  "frozen": true,
38
39
  "governance": "MPGC",
39
- "layer": "Tools"
40
+ "layer": "Facade",
41
+ "packageClass": "PUBLIC",
42
+ "publishSurface": true,
43
+ "publishScope": "public-npm",
44
+ "sourcePackagePath": "packages/sources/sdk-ts",
45
+ "kernelDutyBaselineCarried": true
40
46
  },
41
47
  "scripts": {
42
48
  "build": "tsc",
43
49
  "test": "echo 'No tests yet'"
44
50
  },
45
51
  "dependencies": {
52
+ "@mplp/core": "^1.0.6",
53
+ "@mplp/coordination": "^1.0.6",
54
+ "@mplp/runtime-minimal": "^1.0.5",
55
+ "@mplp/schema": "^1.0.6",
46
56
  "ajv": "^8.12.0",
47
57
  "ajv-formats": "^2.1.1",
48
58
  "chalk": "^4.1.2",
@@ -62,8 +72,13 @@
62
72
  "require": "./dist/index.js",
63
73
  "import": "./dist/index.js",
64
74
  "types": "./dist/index.d.ts"
75
+ },
76
+ "./kernel-duties": {
77
+ "require": "./dist/kernel-duties.js",
78
+ "import": "./dist/kernel-duties.js",
79
+ "types": "./dist/kernel-duties.d.ts"
65
80
  }
66
81
  },
67
82
  "sideEffects": false,
68
83
  "copyright": "© 2026 Bangshi Beijing Network Technology Limited Company"
69
- }
84
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "$comment": "MPLP v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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"
@@ -116,4 +118,4 @@
116
118
  "freezeDate": "2025-12-03",
117
119
  "governance": "MPGC"
118
120
  }
119
- }
121
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "$comment": "MPLP v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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 v1.0.0 FROZEN – © 2025 邦士(北京)网络科技有限公司 – Apache-2.0 – Governance: MPGC",
2
+ "$comment": "MPLP v1.0.0 FROZEN – © 2026 Bangshi Beijing Network Technology Limited Company – Apache-2.0 – Governance: MPGC",
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",