@mplp/devtools 1.0.0 → 1.0.2
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 +11 -0
- package/dist/cli.d.ts +0 -12
- package/dist/cli.js +7 -12
- package/dist/index.d.ts +4 -8
- package/dist/index.js +7 -11
- package/package.json +33 -10
- package/src/cli.ts +4 -10
- package/src/index.ts +7 -12
- package/tsconfig.json +20 -20
package/CHANGELOG.md
ADDED
package/README.md
ADDED
package/dist/cli.d.ts
CHANGED
|
@@ -1,13 +1 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
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
1
|
export {};
|
package/dist/cli.js
CHANGED
|
@@ -1,20 +1,15 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
1
|
"use strict";
|
|
3
|
-
/**
|
|
4
|
-
* MPLP Protocol v1.0.0 — Frozen Specification
|
|
5
|
-
* Freeze Date: 2025-12-03
|
|
6
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
7
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
8
|
-
*
|
|
9
|
-
* © 2025 邦士(北京)网络科技有限公司. All rights reserved.
|
|
10
|
-
*
|
|
11
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*/
|
|
14
2
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
15
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
16
4
|
};
|
|
17
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
/**
|
|
7
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
8
|
+
* Licensed under the Apache License, Version 2.0.
|
|
9
|
+
*
|
|
10
|
+
* This file is part of the MPLP reference implementation.
|
|
11
|
+
* It is NOT part of the frozen protocol specification.
|
|
12
|
+
*/
|
|
18
13
|
const commander_1 = require("commander");
|
|
19
14
|
const chalk_1 = __importDefault(require("chalk"));
|
|
20
15
|
const compliance_1 = require("@mplp/compliance");
|
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 '@mplp/compliance';
|
|
13
9
|
export * from '@mplp/schema';
|
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,5 +14,12 @@ 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("@mplp/compliance"), exports);
|
|
29
25
|
__exportStar(require("@mplp/schema"), exports);
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
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/devtools",
|
|
4
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
5
4
|
"description": "Developer tools and CLI for MPLP Protocol v1.0",
|
|
6
5
|
"main": "dist/index.js",
|
|
7
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,11 +8,11 @@
|
|
|
9
8
|
"mplp": "dist/cli.js"
|
|
10
9
|
},
|
|
11
10
|
"dependencies": {
|
|
11
|
+
"@mplp/core": "^1.0.2",
|
|
12
|
+
"@mplp/schema": "^1.0.2",
|
|
13
|
+
"@mplp/compliance": "^1.0.2",
|
|
12
14
|
"commander": "^11.0.0",
|
|
13
|
-
"chalk": "^4.1.2"
|
|
14
|
-
"@mplp/schema": "1.0.0",
|
|
15
|
-
"@mplp/core": "1.0.0",
|
|
16
|
-
"@mplp/compliance": "1.0.0"
|
|
15
|
+
"chalk": "^4.1.2"
|
|
17
16
|
},
|
|
18
17
|
"devDependencies": {
|
|
19
18
|
"typescript": "^5.0.0",
|
|
@@ -23,11 +22,35 @@
|
|
|
23
22
|
"access": "public"
|
|
24
23
|
},
|
|
25
24
|
"mplp": {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
25
|
+
"protocolVersion": "1.0.0",
|
|
26
|
+
"frozen": true,
|
|
27
|
+
"governance": "MPGC",
|
|
28
|
+
"layer": "Tools"
|
|
30
29
|
},
|
|
30
|
+
"author": "邦士(北京)网络科技有限公司",
|
|
31
|
+
"copyright": "© 2025 邦士(北京)网络科技有限公司",
|
|
32
|
+
"license": "Apache-2.0",
|
|
33
|
+
"homepage": "https://github.com/coregentis/MPLP-Protocol",
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/coregentis/MPLP-Protocol/issues"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/coregentis/MPLP-Protocol.git",
|
|
40
|
+
"directory": "packages/devtools"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"MPLP",
|
|
44
|
+
"multi-agent",
|
|
45
|
+
"protocol"
|
|
46
|
+
],
|
|
47
|
+
"exports": {
|
|
48
|
+
".": {
|
|
49
|
+
"import": "./dist/index.js",
|
|
50
|
+
"types": "./dist/index.d.ts"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"sideEffects": false,
|
|
31
54
|
"scripts": {
|
|
32
55
|
"build": "tsc",
|
|
33
56
|
"test": "echo 'No tests yet'"
|
package/src/cli.ts
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
1
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* Status: FROZEN (no breaking changes permitted)
|
|
6
|
-
* Governance: MPLP Protocol Governance Committee (MPGC)
|
|
2
|
+
* © 2025 邦士(北京)网络科技有限公司
|
|
3
|
+
* Licensed under the Apache License, Version 2.0.
|
|
7
4
|
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
11
|
-
* 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.
|
|
12
7
|
*/
|
|
13
|
-
|
|
14
8
|
import { Command } from 'commander';
|
|
15
9
|
import chalk from 'chalk';
|
|
16
10
|
import { validate } from '@mplp/schema';
|
package/src/index.ts
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
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
|
export * from '@mplp/compliance';
|
|
14
9
|
export * from '@mplp/schema';
|
package/tsconfig.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
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
|
-
"declaration": true,
|
|
7
|
-
"outDir": "./dist",
|
|
8
|
-
"strict": true,
|
|
9
|
-
"esModuleInterop": true,
|
|
10
|
-
"skipLibCheck": true,
|
|
11
|
-
"forceConsistentCasingInFileNames": true,
|
|
12
|
-
"resolveJsonModule": true
|
|
13
|
-
},
|
|
14
|
-
"include": [
|
|
15
|
-
"src/**/*"
|
|
16
|
-
],
|
|
17
|
-
"exclude": [
|
|
18
|
-
"node_modules"
|
|
19
|
-
]
|
|
20
|
-
}
|
|
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
|
+
"declaration": true,
|
|
7
|
+
"outDir": "./dist",
|
|
8
|
+
"strict": true,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"skipLibCheck": true,
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"resolveJsonModule": true
|
|
13
|
+
},
|
|
14
|
+
"include": [
|
|
15
|
+
"src/**/*"
|
|
16
|
+
],
|
|
17
|
+
"exclude": [
|
|
18
|
+
"node_modules"
|
|
19
|
+
]
|
|
20
|
+
}
|