@mplp/runtime-minimal 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/README.md +61 -0
- package/dist/ael/index.d.ts +4 -8
- package/dist/ael/index.js +0 -11
- package/dist/index.d.ts +4 -8
- package/dist/index.js +7 -11
- package/dist/orchestrator/error-recovery.d.ts +4 -8
- package/dist/orchestrator/error-recovery.js +6 -10
- package/dist/orchestrator/index.d.ts +4 -8
- package/dist/orchestrator/index.js +7 -11
- package/dist/orchestrator/multi-agent.d.ts +4 -8
- package/dist/orchestrator/multi-agent.js +6 -10
- package/dist/orchestrator/risk-confirmation.d.ts +4 -8
- package/dist/orchestrator/risk-confirmation.js +6 -10
- package/dist/orchestrator/single-agent.d.ts +4 -8
- package/dist/orchestrator/single-agent.js +0 -11
- package/dist/registry/modules-registry.d.ts +4 -8
- package/dist/registry/modules-registry.js +0 -11
- package/dist/types/runtime-context.d.ts +4 -8
- package/dist/types/runtime-context.js +0 -11
- package/dist/types/runtime-result.d.ts +4 -8
- package/dist/types/runtime-result.js +0 -11
- package/dist/vsl/index.d.ts +4 -8
- package/dist/vsl/index.js +0 -11
- package/package.json +34 -5
- package/src/ael/index.d.ts +7 -12
- package/src/ael/index.js +7 -12
- package/src/ael/index.ts +7 -12
- package/src/index.d.ts +7 -12
- package/src/index.js +7 -12
- package/src/index.ts +7 -12
- package/src/orchestrator/error-recovery.d.ts +7 -12
- package/src/orchestrator/error-recovery.js +7 -12
- package/src/orchestrator/error-recovery.ts +7 -12
- package/src/orchestrator/index.d.ts +7 -12
- package/src/orchestrator/index.js +7 -12
- package/src/orchestrator/index.ts +7 -12
- package/src/orchestrator/multi-agent.d.ts +7 -12
- package/src/orchestrator/multi-agent.js +7 -12
- package/src/orchestrator/multi-agent.ts +7 -12
- package/src/orchestrator/risk-confirmation.d.ts +7 -12
- package/src/orchestrator/risk-confirmation.js +7 -12
- package/src/orchestrator/risk-confirmation.ts +7 -12
- package/src/orchestrator/single-agent.d.ts +7 -12
- package/src/orchestrator/single-agent.js +7 -12
- package/src/orchestrator/single-agent.ts +7 -12
- package/src/registry/modules-registry.d.ts +7 -12
- package/src/registry/modules-registry.js +7 -12
- package/src/registry/modules-registry.ts +7 -12
- package/src/types/runtime-context.d.ts +7 -12
- package/src/types/runtime-context.js +7 -12
- package/src/types/runtime-context.ts +7 -12
- package/src/types/runtime-result.d.ts +7 -12
- package/src/types/runtime-result.js +7 -12
- package/src/types/runtime-result.ts +7 -12
- package/src/vsl/index.d.ts +7 -12
- package/src/vsl/index.js +7 -12
- package/src/vsl/index.ts +7 -12
- package/tests/single-agent.runtime.test.ts +12 -12
- package/tsconfig.json +23 -23
package/CHANGELOG.md
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# @mplp/runtime-minimal
|
|
2
|
+
|
|
3
|
+
**Protocol:** MPLP v1.0.0 (Frozen)
|
|
4
|
+
**License:** Apache-2.0
|
|
5
|
+
|
|
6
|
+
The **@mplp/runtime-minimal** package provides **Minimal runtime implementation** for the
|
|
7
|
+
**Multi-Agent Lifecycle Protocol (MPLP)** — the Agent OS–level lifecycle specification for AI agent systems.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Scope & Guarantees (Important)
|
|
12
|
+
|
|
13
|
+
### ✅ What this package provides
|
|
14
|
+
|
|
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
|
|
18
|
+
|
|
19
|
+
### ❌ What this package does NOT provide
|
|
20
|
+
|
|
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
|
|
25
|
+
|
|
26
|
+
> These capabilities belong to **reference runtimes and products built *on top of* MPLP**,
|
|
27
|
+
> not to the protocol SDK itself.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm install @mplp/runtime-minimal
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Protocol Documentation (Authoritative)
|
|
40
|
+
|
|
41
|
+
* **Homepage:** [https://mplp.io](https://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)
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Versioning & Compatibility
|
|
49
|
+
|
|
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.
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
Apache License, Version 2.0
|
|
59
|
+
|
|
60
|
+
© 2025 **Bangshi Beijing Network Technology Limited Company**
|
|
61
|
+
Coregentis AI
|
package/dist/ael/index.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
import type { RuntimeContext } from "../types/runtime-context";
|
|
13
9
|
import type { MplpEvent } from "@mplp/coordination";
|
package/dist/ael/index.js
CHANGED
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
3
|
exports.InMemoryAEL = void 0;
|
|
15
4
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
export * from "./types/runtime-context";
|
|
13
9
|
export * from "./types/runtime-result";
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
3
|
if (k2 === undefined) k2 = k;
|
|
15
4
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -25,6 +14,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
25
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
26
15
|
};
|
|
27
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
/**
|
|
18
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
19
|
+
* Licensed under the Apache License, Version 2.0.
|
|
20
|
+
*
|
|
21
|
+
* This file is part of the MPLP reference implementation.
|
|
22
|
+
* It is NOT part of the frozen protocol specification.
|
|
23
|
+
*/
|
|
28
24
|
__exportStar(require("./types/runtime-context"), exports);
|
|
29
25
|
__exportStar(require("./types/runtime-result"), exports);
|
|
30
26
|
__exportStar(require("./ael"), exports);
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
export declare function runErrorRecoveryFlow(): Promise<void>;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.runErrorRecoveryFlow = runErrorRecoveryFlow;
|
|
2
4
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
5
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
6
|
+
* Licensed under the Apache License, Version 2.0.
|
|
9
7
|
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
8
|
+
* This file is part of the MPLP reference implementation.
|
|
9
|
+
* It is NOT part of the frozen protocol specification.
|
|
12
10
|
*/
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.runErrorRecoveryFlow = runErrorRecoveryFlow;
|
|
15
11
|
// TODO: Implement Error Recovery Orchestrator
|
|
16
12
|
async function runErrorRecoveryFlow() {
|
|
17
13
|
throw new Error("Not implemented");
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
export * from "./single-agent";
|
|
13
9
|
export * from "./multi-agent";
|
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
3
|
if (k2 === undefined) k2 = k;
|
|
15
4
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -25,6 +14,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
25
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
26
15
|
};
|
|
27
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
/**
|
|
18
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
19
|
+
* Licensed under the Apache License, Version 2.0.
|
|
20
|
+
*
|
|
21
|
+
* This file is part of the MPLP reference implementation.
|
|
22
|
+
* It is NOT part of the frozen protocol specification.
|
|
23
|
+
*/
|
|
28
24
|
__exportStar(require("./single-agent"), exports);
|
|
29
25
|
// export skeletons for future extension:
|
|
30
26
|
__exportStar(require("./multi-agent"), exports);
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
export declare function runMultiAgentFlow(): Promise<void>;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.runMultiAgentFlow = runMultiAgentFlow;
|
|
2
4
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
5
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
6
|
+
* Licensed under the Apache License, Version 2.0.
|
|
9
7
|
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
8
|
+
* This file is part of the MPLP reference implementation.
|
|
9
|
+
* It is NOT part of the frozen protocol specification.
|
|
12
10
|
*/
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.runMultiAgentFlow = runMultiAgentFlow;
|
|
15
11
|
// TODO: Implement Multi-Agent Orchestrator
|
|
16
12
|
async function runMultiAgentFlow() {
|
|
17
13
|
throw new Error("Not implemented");
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
export declare function runRiskConfirmationFlow(): Promise<void>;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.runRiskConfirmationFlow = runRiskConfirmationFlow;
|
|
2
4
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
5
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
6
|
+
* Licensed under the Apache License, Version 2.0.
|
|
9
7
|
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
8
|
+
* This file is part of the MPLP reference implementation.
|
|
9
|
+
* It is NOT part of the frozen protocol specification.
|
|
12
10
|
*/
|
|
13
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.runRiskConfirmationFlow = runRiskConfirmationFlow;
|
|
15
11
|
// TODO: Implement Risk Confirmation Orchestrator
|
|
16
12
|
async function runRiskConfirmationFlow() {
|
|
17
13
|
throw new Error("Not implemented");
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
import type { FlowContract, MplpEvent } from "@mplp/coordination";
|
|
13
9
|
import type { SingleAgentFlowOutput } from "@mplp/coordination";
|
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
3
|
exports.runSingleAgentFlow = runSingleAgentFlow;
|
|
15
4
|
const modules_registry_1 = require("../registry/modules-registry");
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
import type { ContextModuleHandler, PlanModuleHandler, ConfirmModuleHandler, TraceModuleHandler, RoleModuleHandler, ExtensionModuleHandler, DialogModuleHandler, CollabModuleHandler, CoreModuleHandler, NetworkModuleHandler } from "@mplp/coordination";
|
|
13
9
|
export interface RuntimeModuleRegistry {
|
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
3
|
exports.getModuleHandler = getModuleHandler;
|
|
15
4
|
function getModuleHandler(registry, moduleName) {
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
import type { CoordinationContext } from "@mplp/coordination";
|
|
13
9
|
import type { MplpEvent } from "@mplp/coordination";
|
|
@@ -1,13 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
import type { RuntimeContext } from "./runtime-context";
|
|
13
9
|
export interface RuntimeErrorInfo {
|
|
@@ -1,13 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/vsl/index.d.ts
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
5
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
6
4
|
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
11
7
|
*/
|
|
12
8
|
import type { RuntimeContext } from "../types/runtime-context";
|
|
13
9
|
import type { MplpEvent } from "@mplp/coordination";
|
package/dist/vsl/index.js
CHANGED
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
4
|
-
* Freeze Date: 2025-12-03
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
7
|
-
*
|
|
8
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
*/
|
|
13
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
3
|
exports.InMemoryVSL = void 0;
|
|
15
4
|
/**
|
package/package.json
CHANGED
|
@@ -1,21 +1,50 @@
|
|
|
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.",
|
|
3
2
|
"name": "@mplp/runtime-minimal",
|
|
4
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
5
4
|
"description": "Vendor-neutral reference runtime (L3) for MPLP Protocol v1.0",
|
|
6
5
|
"license": "Apache-2.0",
|
|
7
6
|
"main": "dist/index.js",
|
|
8
7
|
"types": "dist/index.d.ts",
|
|
9
8
|
"dependencies": {
|
|
10
|
-
"@mplp/core": "1.0.
|
|
11
|
-
"@mplp/coordination": "1.0.
|
|
12
|
-
"@mplp/modules": "1.0.
|
|
9
|
+
"@mplp/core": "^1.0.2",
|
|
10
|
+
"@mplp/coordination": "^1.0.2",
|
|
11
|
+
"@mplp/modules": "^1.0.2"
|
|
13
12
|
},
|
|
14
13
|
"devDependencies": {
|
|
15
14
|
"typescript": "^5.0.0",
|
|
16
15
|
"vitest": "^1.0.0",
|
|
17
16
|
"@types/node": "^20.0.0"
|
|
18
17
|
},
|
|
18
|
+
"author": "Coregentis AI",
|
|
19
|
+
"copyright": "© 2025 邦士(北京)网络科技有限公司",
|
|
20
|
+
"mplp": {
|
|
21
|
+
"protocolVersion": "1.0.0",
|
|
22
|
+
"frozen": true,
|
|
23
|
+
"governance": "MPGC",
|
|
24
|
+
"layer": "L3"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://mplp.io",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/Coregentis/MPLP-Protocol/issues"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/Coregentis/MPLP-Protocol.git"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"mplp",
|
|
36
|
+
"multi-agent",
|
|
37
|
+
"protocol",
|
|
38
|
+
"lifecycle",
|
|
39
|
+
"agent-os"
|
|
40
|
+
],
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"import": "./dist/index.js",
|
|
44
|
+
"types": "./dist/index.d.ts"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"sideEffects": false,
|
|
19
48
|
"scripts": {
|
|
20
49
|
"build": "tsc -p tsconfig.json",
|
|
21
50
|
"test": "vitest run"
|
package/src/ael/index.d.ts
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*/
|
|
12
|
-
|
|
1
|
+
/**
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
4
|
+
*
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
7
|
+
*/
|
|
13
8
|
import type { RuntimeContext } from "../types/runtime-context";
|
|
14
9
|
import type { MplpEvent } from "@mplp/coordination";
|
|
15
10
|
export interface ActionExecutionLayer {
|
package/src/ael/index.js
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*/
|
|
12
|
-
|
|
1
|
+
/**
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
4
|
+
*
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
7
|
+
*/
|
|
13
8
|
"use strict";
|
|
14
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
10
|
exports.InMemoryAEL = void 0;
|
package/src/ael/index.ts
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*/
|
|
12
|
-
|
|
1
|
+
/**
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
4
|
+
*
|
|
5
|
+
* This file is part of the MPLP reference implementation.
|
|
6
|
+
* It is NOT part of the frozen protocol specification.
|
|
7
|
+
*/
|
|
13
8
|
import type { RuntimeContext } from "../types/runtime-context";
|
|
14
9
|
import type { MplpEvent } from "@mplp/coordination";
|
|
15
10
|
|