@mplp/sdk-ts 1.0.6 → 1.0.8
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/LICENSE +1 -1
- package/README.md +41 -31
- package/dist/builders/confirm-builder.d.ts +2 -2
- package/dist/builders/confirm-builder.js +8 -2
- package/dist/builders/context-builder.d.ts +2 -2
- package/dist/builders/context-builder.js +8 -2
- package/dist/builders/plan-builder.d.ts +2 -2
- package/dist/builders/plan-builder.js +8 -2
- package/dist/builders/trace-builder.d.ts +2 -2
- package/dist/builders/trace-builder.js +8 -2
- package/dist/client/runtime-client.d.ts +1 -1
- package/dist/client/runtime-client.js +15 -3
- package/dist/coordination/index.d.ts +1 -1
- package/dist/coordination/index.js +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.js +1 -1
- package/dist/core/validators/index.d.ts +1 -1
- package/dist/core/validators/index.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -1
- package/dist/kernel-duties.d.ts +1 -0
- package/dist/kernel-duties.js +7 -0
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime-minimal/index.d.ts +1 -1
- package/dist/runtime-minimal/index.js +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +26 -10
- package/schemas/common/common-types.schema.json +1 -1
- package/schemas/common/events.schema.json +1 -1
- package/schemas/common/identifiers.schema.json +1 -1
- package/schemas/common/learning-sample.schema.json +1 -1
- package/schemas/common/metadata.schema.json +6 -4
- package/schemas/common/trace-base.schema.json +1 -1
- package/schemas/events/mplp-event-core.schema.json +1 -1
- package/schemas/events/mplp-graph-update-event.schema.json +1 -1
- package/schemas/events/mplp-map-event.schema.json +1 -1
- package/schemas/events/mplp-pipeline-stage-event.schema.json +1 -1
- package/schemas/events/mplp-runtime-execution-event.schema.json +1 -1
- package/schemas/events/mplp-sa-event.schema.json +1 -1
- package/schemas/integration/mplp-ci-event.schema.json +1 -1
- package/schemas/integration/mplp-file-update-event.schema.json +1 -1
- package/schemas/integration/mplp-git-event.schema.json +1 -1
- package/schemas/integration/mplp-tool-event.schema.json +1 -1
- package/schemas/invariants/integration-invariants.yaml +2 -2
- package/schemas/invariants/learning-invariants.yaml +2 -2
- package/schemas/invariants/map-invariants.yaml +2 -2
- package/schemas/invariants/observability-invariants.yaml +2 -2
- package/schemas/invariants/sa-invariants.yaml +2 -2
- package/schemas/kernel-duties.json +18 -0
- package/schemas/learning/mplp-learning-sample-core.schema.json +1 -1
- package/schemas/learning/mplp-learning-sample-delta.schema.json +1 -1
- package/schemas/learning/mplp-learning-sample-intent.schema.json +1 -1
- package/schemas/mplp-collab.schema.json +1 -1
- package/schemas/mplp-confirm.schema.json +1 -1
- package/schemas/mplp-context.schema.json +1 -1
- package/schemas/mplp-core.schema.json +1 -1
- package/schemas/mplp-dialog.schema.json +1 -1
- package/schemas/mplp-extension.schema.json +1 -1
- package/schemas/mplp-network.schema.json +1 -1
- package/schemas/mplp-plan.schema.json +1 -1
- package/schemas/mplp-role.schema.json +1 -1
- package/schemas/mplp-trace.schema.json +1 -1
package/LICENSE
CHANGED
|
@@ -2,7 +2,7 @@ Apache License
|
|
|
2
2
|
Version 2.0, January 2004
|
|
3
3
|
http://www.apache.org/licenses/
|
|
4
4
|
|
|
5
|
-
Copyright 2026
|
|
5
|
+
Copyright 2026 Jearon Wong
|
|
6
6
|
|
|
7
7
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
8
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -1,32 +1,31 @@
|
|
|
1
1
|
# @mplp/sdk-ts
|
|
2
2
|
|
|
3
|
+
**Package Role:** Public npm TypeScript SDK facade package
|
|
3
4
|
**Protocol:** MPLP v1.0.0 (Frozen)
|
|
5
|
+
**Package version:** 1.0.8
|
|
4
6
|
**License:** Apache-2.0
|
|
5
7
|
|
|
6
|
-
The
|
|
7
|
-
**Multi-Agent Lifecycle Protocol (MPLP)** — the Agent OS Protocol for AI agent systems.
|
|
8
|
+
The `@mplp/sdk-ts` package is the public TypeScript SDK facade for MPLP v1.0.0 consumers.
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
It is a facade over compiled helpers, runtime client helpers, schema mirrors, and Kernel Duty exports. It is not the standalone runtime package and should not be read as protocol truth.
|
|
10
11
|
|
|
11
|
-
## Scope & Guarantees
|
|
12
|
+
## Scope & Guarantees
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
This package is a public npm release surface for the package role above. It is package evidence and user-facing distribution content, not authorization to publish, mutate registries, create tags, create release seals, or change protocol truth.
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
* **Strict version alignment** with the frozen MPLP protocol specification
|
|
17
|
-
* **Type-safe integration surface** for higher-level runtimes and tools
|
|
16
|
+
## What This Package Provides
|
|
18
17
|
|
|
19
|
-
|
|
18
|
+
- Protocol-aligned facade helper exports for MPLP v1.0.0.
|
|
19
|
+
- Builder helpers such as `createContext`, `createPlan`, `createConfirm`, and `appendTrace`.
|
|
20
|
+
- Runtime client helpers via `MplpRuntimeClient`.
|
|
21
|
+
- Re-exported Kernel Duty baseline from `@mplp/schema`.
|
|
20
22
|
|
|
21
|
-
|
|
22
|
-
- ❌ Golden Flow execution engines (Flow-01 ~ Flow-05)
|
|
23
|
-
- ❌ Observability pipelines or distributed tracing backends
|
|
24
|
-
- ❌ Production agent orchestration
|
|
23
|
+
## What This Package Does NOT Provide
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
- Standalone runtime package identity; use `@mplp/runtime-minimal` for that package surface.
|
|
26
|
+
- Direct schema or invariant mirrors as first-class protocol authority.
|
|
27
|
+
- Full execution runtime hosting or orchestration stack.
|
|
28
|
+
- Independent canonical authority for Kernel Duties.
|
|
30
29
|
|
|
31
30
|
## Installation
|
|
32
31
|
|
|
@@ -34,28 +33,39 @@ The **@mplp/sdk-ts** package provides **TypeScript SDK umbrella package** for th
|
|
|
34
33
|
npm install @mplp/sdk-ts
|
|
35
34
|
```
|
|
36
35
|
|
|
37
|
-
|
|
36
|
+
## Minimal User Smoke Usage Snippet
|
|
38
37
|
|
|
39
|
-
|
|
38
|
+
```javascript
|
|
39
|
+
const sdk = require('@mplp/sdk-ts');
|
|
40
|
+
console.log(typeof sdk.createContext);
|
|
41
|
+
console.log(sdk.KERNEL_DUTY_COUNT);
|
|
42
|
+
```
|
|
40
43
|
|
|
41
|
-
|
|
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)
|
|
44
|
+
## Protocol Documentation Links
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
- **Homepage:** [https://www.mplp.io/what-is-mplp](https://www.mplp.io/what-is-mplp) - discovery and positioning only
|
|
47
|
+
- **Docs Entry Surface:** [https://docs.mplp.io/docs/reference/entrypoints](https://docs.mplp.io/docs/reference/entrypoints) - authoritative documentation entry surface
|
|
48
|
+
- **Source Repository:** [https://github.com/Coregentis/MPLP-Protocol](https://github.com/Coregentis/MPLP-Protocol) - public source projection
|
|
49
|
+
- **Issues:** [https://github.com/Coregentis/MPLP-Protocol/issues](https://github.com/Coregentis/MPLP-Protocol/issues)
|
|
47
50
|
|
|
48
|
-
##
|
|
51
|
+
## Package Provenance
|
|
49
52
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
- **Package address:** [https://www.npmjs.com/package/@mplp/sdk-ts](https://www.npmjs.com/package/@mplp/sdk-ts)
|
|
54
|
+
- Public npm surface: `packages/npm/sdk-ts`.
|
|
55
|
+
- Source-side mirror: `packages/sources/sdk-ts`.
|
|
56
|
+
- Separate runtime package: `packages/npm/runtime-minimal`.
|
|
53
57
|
|
|
54
|
-
|
|
58
|
+
## Versioning & Compatibility
|
|
59
|
+
|
|
60
|
+
- **Protocol version:** MPLP v1.0.0 (Frozen)
|
|
61
|
+
- **Package version:** 1.0.8
|
|
62
|
+
- **Compatibility:** aligned to MPLP protocol_version v1.0.0 only
|
|
63
|
+
- Breaking changes require a new protocol version or a separately approved package release decision.
|
|
55
64
|
|
|
56
65
|
## License
|
|
57
66
|
|
|
58
67
|
Apache License, Version 2.0
|
|
59
68
|
|
|
60
|
-
|
|
61
|
-
|
|
69
|
+
## Copyright
|
|
70
|
+
|
|
71
|
+
© 2026 Jearon Wong
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ©
|
|
2
|
+
* © 2026 Jearon Wong
|
|
3
3
|
* Licensed under the Apache License, Version 2.0.
|
|
4
4
|
*
|
|
5
5
|
* This file is part of the MPLP reference implementation.
|
|
6
6
|
* It is NOT part of the frozen protocol specification.
|
|
7
7
|
*/
|
|
8
|
-
import { Confirm, Plan } from "
|
|
8
|
+
import type { Confirm, Plan } from "../core";
|
|
9
9
|
export interface CreateConfirmOptions {
|
|
10
10
|
status: "approved" | "rejected" | "pending" | "cancelled";
|
|
11
11
|
requestedByRole?: string;
|
|
@@ -2,13 +2,19 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createConfirm = createConfirm;
|
|
4
4
|
/**
|
|
5
|
-
* ©
|
|
5
|
+
* © 2026 Jearon Wong
|
|
6
6
|
* Licensed under the Apache License, Version 2.0.
|
|
7
7
|
*
|
|
8
8
|
* This file is part of the MPLP reference implementation.
|
|
9
9
|
* It is NOT part of the frozen protocol specification.
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
let core_1;
|
|
12
|
+
try {
|
|
13
|
+
core_1 = require("../../../core/dist");
|
|
14
|
+
}
|
|
15
|
+
catch (_a) {
|
|
16
|
+
core_1 = require("@mplp/core");
|
|
17
|
+
}
|
|
12
18
|
const uuid_1 = require("uuid");
|
|
13
19
|
function createConfirm(plan, options) {
|
|
14
20
|
const confirm = {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ©
|
|
2
|
+
* © 2026 Jearon Wong
|
|
3
3
|
* Licensed under the Apache License, Version 2.0.
|
|
4
4
|
*
|
|
5
5
|
* This file is part of the MPLP reference implementation.
|
|
6
6
|
* It is NOT part of the frozen protocol specification.
|
|
7
7
|
*/
|
|
8
|
-
import { Context } from "
|
|
8
|
+
import type { Context } from "../core";
|
|
9
9
|
export interface CreateContextOptions {
|
|
10
10
|
title: string;
|
|
11
11
|
root: {
|
|
@@ -2,13 +2,19 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createContext = createContext;
|
|
4
4
|
/**
|
|
5
|
-
* ©
|
|
5
|
+
* © 2026 Jearon Wong
|
|
6
6
|
* Licensed under the Apache License, Version 2.0.
|
|
7
7
|
*
|
|
8
8
|
* This file is part of the MPLP reference implementation.
|
|
9
9
|
* It is NOT part of the frozen protocol specification.
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
let core_1;
|
|
12
|
+
try {
|
|
13
|
+
core_1 = require("../../../core/dist");
|
|
14
|
+
}
|
|
15
|
+
catch (_a) {
|
|
16
|
+
core_1 = require("@mplp/core");
|
|
17
|
+
}
|
|
12
18
|
const uuid_1 = require("uuid");
|
|
13
19
|
function createContext(options) {
|
|
14
20
|
const context = {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ©
|
|
2
|
+
* © 2026 Jearon Wong
|
|
3
3
|
* Licensed under the Apache License, Version 2.0.
|
|
4
4
|
*
|
|
5
5
|
* This file is part of the MPLP reference implementation.
|
|
6
6
|
* It is NOT part of the frozen protocol specification.
|
|
7
7
|
*/
|
|
8
|
-
import {
|
|
8
|
+
import type { Context, Plan } from "../core";
|
|
9
9
|
export interface CreatePlanOptions {
|
|
10
10
|
title: string;
|
|
11
11
|
objective: string;
|
|
@@ -2,13 +2,19 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createPlan = createPlan;
|
|
4
4
|
/**
|
|
5
|
-
* ©
|
|
5
|
+
* © 2026 Jearon Wong
|
|
6
6
|
* Licensed under the Apache License, Version 2.0.
|
|
7
7
|
*
|
|
8
8
|
* This file is part of the MPLP reference implementation.
|
|
9
9
|
* It is NOT part of the frozen protocol specification.
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
let core_1;
|
|
12
|
+
try {
|
|
13
|
+
core_1 = require("../../../core/dist");
|
|
14
|
+
}
|
|
15
|
+
catch (_a) {
|
|
16
|
+
core_1 = require("@mplp/core");
|
|
17
|
+
}
|
|
12
18
|
const uuid_1 = require("uuid");
|
|
13
19
|
function createPlan(context, options) {
|
|
14
20
|
const plan = {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ©
|
|
2
|
+
* © 2026 Jearon Wong
|
|
3
3
|
* Licensed under the Apache License, Version 2.0.
|
|
4
4
|
*
|
|
5
5
|
* This file is part of the MPLP reference implementation.
|
|
6
6
|
* It is NOT part of the frozen protocol specification.
|
|
7
7
|
*/
|
|
8
|
-
import {
|
|
8
|
+
import type { Context, Plan, Trace } from "../core";
|
|
9
9
|
export interface AppendTraceOptions {
|
|
10
10
|
status: "completed" | "failed" | "running";
|
|
11
11
|
spans?: Array<{
|
|
@@ -2,13 +2,19 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.appendTrace = appendTrace;
|
|
4
4
|
/**
|
|
5
|
-
* ©
|
|
5
|
+
* © 2026 Jearon Wong
|
|
6
6
|
* Licensed under the Apache License, Version 2.0.
|
|
7
7
|
*
|
|
8
8
|
* This file is part of the MPLP reference implementation.
|
|
9
9
|
* It is NOT part of the frozen protocol specification.
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
let core_1;
|
|
12
|
+
try {
|
|
13
|
+
core_1 = require("../../../core/dist");
|
|
14
|
+
}
|
|
15
|
+
catch (_a) {
|
|
16
|
+
core_1 = require("@mplp/core");
|
|
17
|
+
}
|
|
12
18
|
const uuid_1 = require("uuid");
|
|
13
19
|
function appendTrace(context, plan, options) {
|
|
14
20
|
const traceId = (0, uuid_1.v4)();
|
|
@@ -2,14 +2,26 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MplpRuntimeClient = void 0;
|
|
4
4
|
/**
|
|
5
|
-
* ©
|
|
5
|
+
* © 2026 Jearon Wong
|
|
6
6
|
* Licensed under the Apache License, Version 2.0.
|
|
7
7
|
*
|
|
8
8
|
* This file is part of the MPLP reference implementation.
|
|
9
9
|
* It is NOT part of the frozen protocol specification.
|
|
10
10
|
*/
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
let runtime_minimal_1;
|
|
12
|
+
try {
|
|
13
|
+
runtime_minimal_1 = require("../../../runtime-minimal/dist");
|
|
14
|
+
}
|
|
15
|
+
catch (_a) {
|
|
16
|
+
runtime_minimal_1 = require("@mplp/runtime-minimal");
|
|
17
|
+
}
|
|
18
|
+
let coordination_1;
|
|
19
|
+
try {
|
|
20
|
+
coordination_1 = require("../../../coordination/dist");
|
|
21
|
+
}
|
|
22
|
+
catch (_b) {
|
|
23
|
+
coordination_1 = require("@mplp/coordination");
|
|
24
|
+
}
|
|
13
25
|
const context_builder_1 = require("../builders/context-builder");
|
|
14
26
|
const plan_builder_1 = require("../builders/plan-builder");
|
|
15
27
|
const confirm_builder_1 = require("../builders/confirm-builder");
|
package/dist/core/index.d.ts
CHANGED
package/dist/core/index.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ©
|
|
2
|
+
* © 2026 Jearon Wong
|
|
3
3
|
* Licensed under the Apache License, Version 2.0.
|
|
4
4
|
*
|
|
5
5
|
* This file is part of the MPLP reference implementation.
|
|
6
6
|
* It is NOT part of the frozen protocol specification.
|
|
7
7
|
*/
|
|
8
8
|
export * from "@mplp/core";
|
|
9
|
+
export type { Context, Plan, Confirm, Trace } from "./core";
|
|
10
|
+
export * from "./kernel-duties";
|
|
9
11
|
export * from "./builders/context-builder";
|
|
10
12
|
export * from "./builders/plan-builder";
|
|
11
13
|
export * from "./builders/confirm-builder";
|
package/dist/index.js
CHANGED
|
@@ -15,13 +15,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
/**
|
|
18
|
-
* ©
|
|
18
|
+
* © 2026 Jearon Wong
|
|
19
19
|
* Licensed under the Apache License, Version 2.0.
|
|
20
20
|
*
|
|
21
21
|
* This file is part of the MPLP reference implementation.
|
|
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/dist/runtime/index.d.ts
CHANGED
package/dist/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mplp/sdk-ts",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Derived public TypeScript helper facade for MPLP v1.0.0; ships builders, runtime client helpers, schema mirrors, and Kernel Duty exports.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Jearon Wong",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/Coregentis/MPLP-Protocol.git"
|
|
@@ -11,17 +11,17 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/Coregentis/MPLP-Protocol/issues"
|
|
13
13
|
},
|
|
14
|
-
"homepage": "https://www.mplp.io",
|
|
14
|
+
"homepage": "https://www.mplp.io/what-is-mplp",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"mplp",
|
|
17
17
|
"multi-agent",
|
|
18
18
|
"protocol",
|
|
19
19
|
"ai agents",
|
|
20
20
|
"lifecycle",
|
|
21
|
-
"
|
|
21
|
+
"sdk",
|
|
22
|
+
"facade",
|
|
22
23
|
"typescript",
|
|
23
|
-
"agent-
|
|
24
|
-
"agent-os-protocol"
|
|
24
|
+
"ai-agent-lifecycle"
|
|
25
25
|
],
|
|
26
26
|
"main": "dist/index.js",
|
|
27
27
|
"types": "dist/index.d.ts",
|
|
@@ -36,13 +36,24 @@
|
|
|
36
36
|
"protocolVersion": "1.0.0",
|
|
37
37
|
"frozen": true,
|
|
38
38
|
"governance": "MPGC",
|
|
39
|
-
"layer": "
|
|
39
|
+
"layer": "Facade",
|
|
40
|
+
"packageClass": "PUBLIC",
|
|
41
|
+
"publishSurface": true,
|
|
42
|
+
"publishScope": "public-npm",
|
|
43
|
+
"packageRole": "typescript-facade-helper",
|
|
44
|
+
"contractMode": "derived-protocol-helper",
|
|
45
|
+
"sourcePackagePath": "packages/sources/sdk-ts",
|
|
46
|
+
"kernelDutyBaselineCarried": true
|
|
40
47
|
},
|
|
41
48
|
"scripts": {
|
|
42
49
|
"build": "tsc",
|
|
43
50
|
"test": "echo 'No tests yet'"
|
|
44
51
|
},
|
|
45
52
|
"dependencies": {
|
|
53
|
+
"@mplp/core": "^1.0.6",
|
|
54
|
+
"@mplp/coordination": "^1.0.6",
|
|
55
|
+
"@mplp/runtime-minimal": "^1.0.5",
|
|
56
|
+
"@mplp/schema": "^1.0.6",
|
|
46
57
|
"ajv": "^8.12.0",
|
|
47
58
|
"ajv-formats": "^2.1.1",
|
|
48
59
|
"chalk": "^4.1.2",
|
|
@@ -62,8 +73,13 @@
|
|
|
62
73
|
"require": "./dist/index.js",
|
|
63
74
|
"import": "./dist/index.js",
|
|
64
75
|
"types": "./dist/index.d.ts"
|
|
76
|
+
},
|
|
77
|
+
"./kernel-duties": {
|
|
78
|
+
"require": "./dist/kernel-duties.js",
|
|
79
|
+
"import": "./dist/kernel-duties.js",
|
|
80
|
+
"types": "./dist/kernel-duties.d.ts"
|
|
65
81
|
}
|
|
66
82
|
},
|
|
67
83
|
"sideEffects": false,
|
|
68
|
-
"copyright": "© 2026
|
|
69
|
-
}
|
|
84
|
+
"copyright": "© 2026 Jearon Wong"
|
|
85
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$comment": "MPLP v1.0.0 FROZEN – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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
|
|
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-
|
|
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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# MPLP v1.0.0 FROZEN – Invariant Set
|
|
2
|
-
# © 2026
|
|
2
|
+
# © 2026 Jearon Wong – Apache-2.0
|
|
3
3
|
# Governance: MPLP Protocol Governance Committee (MPGC)
|
|
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 Jearon Wong
|
|
8
8
|
# License: Apache-2.0 (see LICENSE at repository root)
|
|
9
9
|
# Any normative change requires a new protocol version.
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# MPLP v1.0.0 FROZEN – Invariant Set
|
|
2
|
-
# © 2026
|
|
2
|
+
# © 2026 Jearon Wong – Apache-2.0
|
|
3
3
|
# Governance: MPLP Protocol Governance Committee (MPGC)
|
|
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 Jearon Wong
|
|
8
8
|
# License: Apache-2.0 (see LICENSE at repository root)
|
|
9
9
|
# Any normative change requires a new protocol version.
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# MPLP v1.0.0 FROZEN – Invariant Set
|
|
2
|
-
# © 2026
|
|
2
|
+
# © 2026 Jearon Wong – Apache-2.0
|
|
3
3
|
# Governance: MPLP Protocol Governance Committee (MPGC)
|
|
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 Jearon Wong
|
|
8
8
|
# License: Apache-2.0 (see LICENSE at repository root)
|
|
9
9
|
# Any normative change requires a new protocol version.
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# MPLP v1.0.0 FROZEN – Invariant Set
|
|
2
|
-
# © 2026
|
|
2
|
+
# © 2026 Jearon Wong – Apache-2.0
|
|
3
3
|
# Governance: MPLP Protocol Governance Committee (MPGC)
|
|
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 Jearon Wong
|
|
8
8
|
# License: Apache-2.0 (see LICENSE at repository root)
|
|
9
9
|
# Any normative change requires a new protocol version.
|
|
10
10
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# MPLP v1.0.0 FROZEN – Invariant Set
|
|
2
|
-
# © 2026
|
|
2
|
+
# © 2026 Jearon Wong – Apache-2.0
|
|
3
3
|
# Governance: MPLP Protocol Governance Committee (MPGC)
|
|
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 Jearon Wong
|
|
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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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 – ©
|
|
2
|
+
"$comment": "MPLP v1.0.0 FROZEN – © 2026 Jearon Wong – 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",
|