@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.
Files changed (60) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/README.md +61 -0
  3. package/dist/ael/index.d.ts +4 -8
  4. package/dist/ael/index.js +0 -11
  5. package/dist/index.d.ts +4 -8
  6. package/dist/index.js +7 -11
  7. package/dist/orchestrator/error-recovery.d.ts +4 -8
  8. package/dist/orchestrator/error-recovery.js +6 -10
  9. package/dist/orchestrator/index.d.ts +4 -8
  10. package/dist/orchestrator/index.js +7 -11
  11. package/dist/orchestrator/multi-agent.d.ts +4 -8
  12. package/dist/orchestrator/multi-agent.js +6 -10
  13. package/dist/orchestrator/risk-confirmation.d.ts +4 -8
  14. package/dist/orchestrator/risk-confirmation.js +6 -10
  15. package/dist/orchestrator/single-agent.d.ts +4 -8
  16. package/dist/orchestrator/single-agent.js +0 -11
  17. package/dist/registry/modules-registry.d.ts +4 -8
  18. package/dist/registry/modules-registry.js +0 -11
  19. package/dist/types/runtime-context.d.ts +4 -8
  20. package/dist/types/runtime-context.js +0 -11
  21. package/dist/types/runtime-result.d.ts +4 -8
  22. package/dist/types/runtime-result.js +0 -11
  23. package/dist/vsl/index.d.ts +4 -8
  24. package/dist/vsl/index.js +0 -11
  25. package/package.json +34 -5
  26. package/src/ael/index.d.ts +7 -12
  27. package/src/ael/index.js +7 -12
  28. package/src/ael/index.ts +7 -12
  29. package/src/index.d.ts +7 -12
  30. package/src/index.js +7 -12
  31. package/src/index.ts +7 -12
  32. package/src/orchestrator/error-recovery.d.ts +7 -12
  33. package/src/orchestrator/error-recovery.js +7 -12
  34. package/src/orchestrator/error-recovery.ts +7 -12
  35. package/src/orchestrator/index.d.ts +7 -12
  36. package/src/orchestrator/index.js +7 -12
  37. package/src/orchestrator/index.ts +7 -12
  38. package/src/orchestrator/multi-agent.d.ts +7 -12
  39. package/src/orchestrator/multi-agent.js +7 -12
  40. package/src/orchestrator/multi-agent.ts +7 -12
  41. package/src/orchestrator/risk-confirmation.d.ts +7 -12
  42. package/src/orchestrator/risk-confirmation.js +7 -12
  43. package/src/orchestrator/risk-confirmation.ts +7 -12
  44. package/src/orchestrator/single-agent.d.ts +7 -12
  45. package/src/orchestrator/single-agent.js +7 -12
  46. package/src/orchestrator/single-agent.ts +7 -12
  47. package/src/registry/modules-registry.d.ts +7 -12
  48. package/src/registry/modules-registry.js +7 -12
  49. package/src/registry/modules-registry.ts +7 -12
  50. package/src/types/runtime-context.d.ts +7 -12
  51. package/src/types/runtime-context.js +7 -12
  52. package/src/types/runtime-context.ts +7 -12
  53. package/src/types/runtime-result.d.ts +7 -12
  54. package/src/types/runtime-result.js +7 -12
  55. package/src/types/runtime-result.ts +7 -12
  56. package/src/vsl/index.d.ts +7 -12
  57. package/src/vsl/index.js +7 -12
  58. package/src/vsl/index.ts +7 -12
  59. package/tests/single-agent.runtime.test.ts +12 -12
  60. package/tsconfig.json +23 -23
@@ -1,15 +1,10 @@
1
- /**
2
- * MPLP Protocol v1.0.0 — Frozen Specification
3
- * Freeze Date: 2025-12-03
4
- * Status: FROZEN (no breaking changes permitted)
5
- * Governance: MPLP Protocol Governance Committee (MPGC)
6
- *
7
- * © 2025 邦士(北京)网络科技有限公司. All rights reserved.
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 ValueStateLayer {
package/src/vsl/index.js CHANGED
@@ -1,15 +1,10 @@
1
- /**
2
- * MPLP Protocol v1.0.0 — Frozen Specification
3
- * Freeze Date: 2025-12-03
4
- * Status: FROZEN (no breaking changes permitted)
5
- * Governance: MPLP Protocol Governance Committee (MPGC)
6
- *
7
- * © 2025 邦士(北京)网络科技有限公司. All rights reserved.
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.InMemoryVSL = void 0;
package/src/vsl/index.ts CHANGED
@@ -1,15 +1,10 @@
1
- /**
2
- * MPLP Protocol v1.0.0 — Frozen Specification
3
- * Freeze Date: 2025-12-03
4
- * Status: FROZEN (no breaking changes permitted)
5
- * Governance: MPLP Protocol Governance Committee (MPGC)
6
- *
7
- * © 2025 邦士(北京)网络科技有限公司. All rights reserved.
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
 
@@ -1,15 +1,15 @@
1
- /**
2
- * MPLP Protocol v1.0.0 — Frozen Specification
3
- * Freeze Date: 2025-12-03
4
- * Status: FROZEN (no breaking changes permitted)
5
- * Governance: MPLP Protocol Governance Committee (MPGC)
6
- *
7
- * © 2025 邦士(北京)网络科技有限公司. All rights reserved.
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
+ * MPLP Protocol v1.0.0 — Frozen Specification
3
+ * Freeze Date: 2025-12-03
4
+ * Status: FROZEN (no breaking changes permitted)
5
+ * Governance: MPLP Protocol Governance Committee (MPGC)
6
+ *
7
+ * © 2025 邦士(北京)网络科技有限公司. All rights reserved.
8
+ *
9
+ * Licensed under the Apache License, Version 2.0 (the "License");
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ */
12
+
13
13
  import { describe, it, expect } from "vitest";
14
14
 
15
15
  import { SingleAgentFlowContract } from "@mplp/coordination";
package/tsconfig.json CHANGED
@@ -1,23 +1,23 @@
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
- "compilerOptions": {
4
- "target": "ES2020",
5
- "module": "commonjs",
6
- "lib": [
7
- "ES2020"
8
- ],
9
- "strict": true,
10
- "esModuleInterop": true,
11
- "skipLibCheck": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "resolveJsonModule": true,
14
- "declaration": true,
15
- "moduleResolution": "node",
16
- "downlevelIteration": true,
17
- "outDir": "dist",
18
- "rootDir": "src"
19
- },
20
- "include": [
21
- "src"
22
- ]
23
- }
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
+ "compilerOptions": {
4
+ "target": "ES2020",
5
+ "module": "commonjs",
6
+ "lib": [
7
+ "ES2020"
8
+ ],
9
+ "strict": true,
10
+ "esModuleInterop": true,
11
+ "skipLibCheck": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "resolveJsonModule": true,
14
+ "declaration": true,
15
+ "moduleResolution": "node",
16
+ "downlevelIteration": true,
17
+ "outDir": "dist",
18
+ "rootDir": "src"
19
+ },
20
+ "include": [
21
+ "src"
22
+ ]
23
+ }