@mplp/runtime-minimal 1.0.2 → 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.
Files changed (2) hide show
  1. package/README.md +61 -11
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -1,11 +1,61 @@
1
- # @mplp/runtime-minimal
2
-
3
- Vendor-neutral reference runtime (L3) for MPLP Protocol v1.0
4
-
5
- ## Installation
6
-
7
- `npm i @mplp/runtime-minimal`
8
-
9
- ## License
10
-
11
- Apache-2.0
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mplp/runtime-minimal",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Vendor-neutral reference runtime (L3) for MPLP Protocol v1.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -15,7 +15,7 @@
15
15
  "vitest": "^1.0.0",
16
16
  "@types/node": "^20.0.0"
17
17
  },
18
- "author": "邦士(北京)网络科技有限公司",
18
+ "author": "Coregentis AI",
19
19
  "copyright": "© 2025 邦士(北京)网络科技有限公司",
20
20
  "mplp": {
21
21
  "protocolVersion": "1.0.0",
@@ -23,19 +23,20 @@
23
23
  "governance": "MPGC",
24
24
  "layer": "L3"
25
25
  },
26
- "homepage": "https://github.com/coregentis/MPLP-Protocol",
26
+ "homepage": "https://mplp.io",
27
27
  "bugs": {
28
- "url": "https://github.com/coregentis/MPLP-Protocol/issues"
28
+ "url": "https://github.com/Coregentis/MPLP-Protocol/issues"
29
29
  },
30
30
  "repository": {
31
31
  "type": "git",
32
- "url": "https://github.com/coregentis/MPLP-Protocol.git",
33
- "directory": "packages/runtime-minimal"
32
+ "url": "https://github.com/Coregentis/MPLP-Protocol.git"
34
33
  },
35
34
  "keywords": [
36
- "MPLP",
35
+ "mplp",
37
36
  "multi-agent",
38
- "protocol"
37
+ "protocol",
38
+ "lifecycle",
39
+ "agent-os"
39
40
  ],
40
41
  "exports": {
41
42
  ".": {