toolcraft 0.0.91 → 0.0.93
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/composition.json +60 -0
- package/dist/composition.d.ts +15 -0
- package/dist/composition.js +10 -0
- package/dist/composition.json +60 -0
- package/node_modules/@poe-code/agent-defs/package.json +9 -5
- package/node_modules/@poe-code/agent-human-in-loop/package.json +8 -4
- package/node_modules/@poe-code/agent-mcp-config/package.json +8 -4
- package/node_modules/@poe-code/config-mutations/package.json +8 -4
- package/node_modules/@poe-code/frontmatter/package.json +8 -4
- package/node_modules/@poe-code/process-runner/package.json +8 -4
- package/node_modules/@poe-code/task-list/package.json +8 -4
- package/node_modules/auth-store/package.json +3 -4
- package/node_modules/tiny-mcp-client/.turbo/turbo-build.log +1 -1
- package/node_modules/tiny-mcp-client/dist/index.d.ts +660 -2
- package/node_modules/tiny-mcp-client/dist/index.js +3870 -1
- package/node_modules/tiny-mcp-client/package.json +8 -4
- package/node_modules/tiny-mcp-client/scripts/build.mjs +63 -0
- package/node_modules/toolcraft-design/package.json +3 -7
- package/package.json +11 -7
- package/node_modules/mcp-oauth/LICENSE +0 -21
- package/node_modules/mcp-oauth/README.md +0 -31
- package/node_modules/mcp-oauth/dist/client/auth-store-session-store.d.ts +0 -14
- package/node_modules/mcp-oauth/dist/client/auth-store-session-store.js +0 -169
- package/node_modules/mcp-oauth/dist/client/authorization-state.d.ts +0 -8
- package/node_modules/mcp-oauth/dist/client/authorization-state.js +0 -47
- package/node_modules/mcp-oauth/dist/client/default-oauth-client-provider.d.ts +0 -3
- package/node_modules/mcp-oauth/dist/client/default-oauth-client-provider.js +0 -627
- package/node_modules/mcp-oauth/dist/client/loopback-authorization.d.ts +0 -20
- package/node_modules/mcp-oauth/dist/client/loopback-authorization.js +0 -207
- package/node_modules/mcp-oauth/dist/client/pkce.d.ts +0 -2
- package/node_modules/mcp-oauth/dist/client/pkce.js +0 -7
- package/node_modules/mcp-oauth/dist/client/token-endpoint.d.ts +0 -40
- package/node_modules/mcp-oauth/dist/client/token-endpoint.js +0 -164
- package/node_modules/mcp-oauth/dist/client/types.d.ts +0 -113
- package/node_modules/mcp-oauth/dist/client/types.js +0 -1
- package/node_modules/mcp-oauth/dist/index.d.ts +0 -10
- package/node_modules/mcp-oauth/dist/index.js +0 -7
- package/node_modules/mcp-oauth/dist/resource-indicator.d.ts +0 -1
- package/node_modules/mcp-oauth/dist/resource-indicator.js +0 -11
- package/node_modules/mcp-oauth/dist/server/jwks-token-verifier.d.ts +0 -28
- package/node_modules/mcp-oauth/dist/server/jwks-token-verifier.js +0 -304
- package/node_modules/mcp-oauth/dist/types.compile-check.d.ts +0 -1
- package/node_modules/mcp-oauth/dist/types.compile-check.js +0 -22
- package/node_modules/mcp-oauth/package.json +0 -32
- package/node_modules/tiny-mcp-client/dist/internal.d.ts +0 -556
- package/node_modules/tiny-mcp-client/dist/internal.js +0 -2688
- package/node_modules/tiny-mcp-client/dist/jsonrpc-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/jsonrpc-types.compile-check.js +0 -37
- package/node_modules/tiny-mcp-client/dist/mcp-lifecycle-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/mcp-lifecycle-types.compile-check.js +0 -50
- package/node_modules/tiny-mcp-client/dist/mcp-prompt-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/mcp-prompt-types.compile-check.js +0 -50
- package/node_modules/tiny-mcp-client/dist/mcp-resource-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/mcp-resource-types.compile-check.js +0 -51
- package/node_modules/tiny-mcp-client/dist/mcp-tool-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/mcp-tool-types.compile-check.js +0 -99
- package/node_modules/tiny-mcp-client/dist/mcp-transport-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/mcp-transport-types.compile-check.js +0 -56
- package/node_modules/tiny-mcp-client/dist/mcp-utility-types.compile-check.d.ts +0 -1
- package/node_modules/tiny-mcp-client/dist/mcp-utility-types.compile-check.js +0 -145
- package/node_modules/tiny-mcp-client/dist/oauth-discovery.d.ts +0 -24
- package/node_modules/tiny-mcp-client/dist/oauth-discovery.js +0 -382
package/composition.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"packages": [
|
|
4
|
+
{
|
|
5
|
+
"name": "@poe-code/agent-defs",
|
|
6
|
+
"version": "0.0.1",
|
|
7
|
+
"license": "MIT"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "@poe-code/agent-human-in-loop",
|
|
11
|
+
"version": "0.0.1",
|
|
12
|
+
"license": "MIT"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "@poe-code/agent-mcp-config",
|
|
16
|
+
"version": "0.0.1",
|
|
17
|
+
"license": "MIT"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "@poe-code/config-mutations",
|
|
21
|
+
"version": "0.0.1",
|
|
22
|
+
"license": "MIT"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "@poe-code/frontmatter",
|
|
26
|
+
"version": "0.0.1",
|
|
27
|
+
"license": "MIT"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "@poe-code/process-runner",
|
|
31
|
+
"version": "0.0.1",
|
|
32
|
+
"license": "MIT"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "@poe-code/task-list",
|
|
36
|
+
"version": "0.0.1",
|
|
37
|
+
"license": "MIT"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "auth-store",
|
|
41
|
+
"version": "0.0.1",
|
|
42
|
+
"license": "MIT"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "tiny-mcp-client",
|
|
46
|
+
"version": "0.1.0",
|
|
47
|
+
"license": "MIT"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "toolcraft",
|
|
51
|
+
"version": "0.0.93",
|
|
52
|
+
"license": "MIT"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "toolcraft-design",
|
|
56
|
+
"version": "0.0.2",
|
|
57
|
+
"license": "MIT"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface ToolcraftCompositionPackage {
|
|
2
|
+
name: string;
|
|
3
|
+
version: string;
|
|
4
|
+
license: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ToolcraftComposition {
|
|
7
|
+
schemaVersion: 1;
|
|
8
|
+
packages: ToolcraftCompositionPackage[];
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Loads Toolcraft's deterministic bundled-package inventory without inspecting source maps.
|
|
12
|
+
* The manifest includes Toolcraft and every package nested inside its published tarball with exact
|
|
13
|
+
* versions and licenses. Incompatible manifest shape changes increment `schemaVersion`.
|
|
14
|
+
*/
|
|
15
|
+
export declare function loadToolcraftComposition(): Promise<ToolcraftComposition>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { readFile } from "node:fs/promises";
|
|
2
|
+
/**
|
|
3
|
+
* Loads Toolcraft's deterministic bundled-package inventory without inspecting source maps.
|
|
4
|
+
* The manifest includes Toolcraft and every package nested inside its published tarball with exact
|
|
5
|
+
* versions and licenses. Incompatible manifest shape changes increment `schemaVersion`.
|
|
6
|
+
*/
|
|
7
|
+
export async function loadToolcraftComposition() {
|
|
8
|
+
const manifestUrl = new URL("./composition.json", import.meta.url);
|
|
9
|
+
return JSON.parse(await readFile(manifestUrl, "utf8"));
|
|
10
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"packages": [
|
|
4
|
+
{
|
|
5
|
+
"name": "@poe-code/agent-defs",
|
|
6
|
+
"version": "0.0.1",
|
|
7
|
+
"license": "MIT"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "@poe-code/agent-human-in-loop",
|
|
11
|
+
"version": "0.0.1",
|
|
12
|
+
"license": "MIT"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "@poe-code/agent-mcp-config",
|
|
16
|
+
"version": "0.0.1",
|
|
17
|
+
"license": "MIT"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "@poe-code/config-mutations",
|
|
21
|
+
"version": "0.0.1",
|
|
22
|
+
"license": "MIT"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "@poe-code/frontmatter",
|
|
26
|
+
"version": "0.0.1",
|
|
27
|
+
"license": "MIT"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "@poe-code/process-runner",
|
|
31
|
+
"version": "0.0.1",
|
|
32
|
+
"license": "MIT"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "@poe-code/task-list",
|
|
36
|
+
"version": "0.0.1",
|
|
37
|
+
"license": "MIT"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "auth-store",
|
|
41
|
+
"version": "0.0.1",
|
|
42
|
+
"license": "MIT"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "tiny-mcp-client",
|
|
46
|
+
"version": "0.1.0",
|
|
47
|
+
"license": "MIT"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "toolcraft",
|
|
51
|
+
"version": "0.0.93",
|
|
52
|
+
"license": "MIT"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "toolcraft-design",
|
|
56
|
+
"version": "0.0.2",
|
|
57
|
+
"license": "MIT"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/agent-defs",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,6 +14,12 @@
|
|
|
16
14
|
"build": "node ../../scripts/guard-package-dist.mjs && tsc"
|
|
17
15
|
},
|
|
18
16
|
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
|
|
17
|
+
"dist",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
23
|
+
"directory": "packages/agent-defs"
|
|
24
|
+
}
|
|
21
25
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/agent-human-in-loop",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "./dist/index.js",
|
|
8
6
|
"types": "./dist/index.d.ts",
|
|
@@ -19,7 +17,13 @@
|
|
|
19
17
|
"dev": "tsx example.ts"
|
|
20
18
|
},
|
|
21
19
|
"files": [
|
|
22
|
-
"dist"
|
|
20
|
+
"dist",
|
|
21
|
+
"LICENSE"
|
|
23
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
26
|
+
"directory": "packages/agent-human-in-loop"
|
|
27
|
+
},
|
|
24
28
|
"devDependencies": {}
|
|
25
29
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/agent-mcp-config",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,8 +14,14 @@
|
|
|
16
14
|
"build": "node ../../scripts/guard-package-dist.mjs && tsc"
|
|
17
15
|
},
|
|
18
16
|
"files": [
|
|
19
|
-
"dist"
|
|
17
|
+
"dist",
|
|
18
|
+
"LICENSE"
|
|
20
19
|
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
23
|
+
"directory": "packages/agent-mcp-config"
|
|
24
|
+
},
|
|
21
25
|
"dependencies": {
|
|
22
26
|
"yaml": "^2.8.3"
|
|
23
27
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/config-mutations",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,8 +18,14 @@
|
|
|
20
18
|
"build": "node ../../scripts/guard-package-dist.mjs && tsc"
|
|
21
19
|
},
|
|
22
20
|
"files": [
|
|
23
|
-
"dist"
|
|
21
|
+
"dist",
|
|
22
|
+
"LICENSE"
|
|
24
23
|
],
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
27
|
+
"directory": "packages/config-mutations"
|
|
28
|
+
},
|
|
25
29
|
"dependencies": {
|
|
26
30
|
"jsonc-parser": "^3.3.1",
|
|
27
31
|
"smol-toml": "^1.3.0",
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/frontmatter",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +16,14 @@
|
|
|
18
16
|
"test:unit": "cd ../.. && vitest run packages/frontmatter/src"
|
|
19
17
|
},
|
|
20
18
|
"files": [
|
|
21
|
-
"dist"
|
|
19
|
+
"dist",
|
|
20
|
+
"LICENSE"
|
|
22
21
|
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
25
|
+
"directory": "packages/frontmatter"
|
|
26
|
+
},
|
|
23
27
|
"dependencies": {
|
|
24
28
|
"yaml": "^2.8.2"
|
|
25
29
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/process-runner",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,8 +25,14 @@
|
|
|
27
25
|
"lint": "cd ../.. && eslint packages/process-runner/src --ext ts && tsc -p packages/process-runner/tsconfig.json --noEmit"
|
|
28
26
|
},
|
|
29
27
|
"files": [
|
|
30
|
-
"dist"
|
|
28
|
+
"dist",
|
|
29
|
+
"LICENSE"
|
|
31
30
|
],
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
34
|
+
"directory": "packages/process-runner"
|
|
35
|
+
},
|
|
32
36
|
"dependencies": {
|
|
33
37
|
"ignore": "^5.3.2"
|
|
34
38
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@poe-code/task-list",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +16,14 @@
|
|
|
18
16
|
"test:unit": "cd ../.. && vitest run packages/task-list/src"
|
|
19
17
|
},
|
|
20
18
|
"files": [
|
|
21
|
-
"dist"
|
|
19
|
+
"dist",
|
|
20
|
+
"LICENSE"
|
|
22
21
|
],
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/poe-platform/poe-code.git",
|
|
25
|
+
"directory": "packages/task-list"
|
|
26
|
+
},
|
|
23
27
|
"dependencies": {
|
|
24
28
|
"yaml": "*"
|
|
25
29
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "auth-store",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"license": "MIT",
|
|
5
2
|
"private": true,
|
|
3
|
+
"license": "MIT",
|
|
6
4
|
"type": "module",
|
|
7
5
|
"main": "dist/index.js",
|
|
8
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,7 +14,8 @@
|
|
|
16
14
|
"build": "node ../../scripts/guard-package-dist.mjs && tsc"
|
|
17
15
|
},
|
|
18
16
|
"files": [
|
|
19
|
-
"dist"
|
|
17
|
+
"dist",
|
|
18
|
+
"LICENSE"
|
|
20
19
|
],
|
|
21
20
|
"repository": {
|
|
22
21
|
"type": "git",
|
|
@@ -3,5 +3,5 @@ npm warn Unknown project config "package-manager-strict". This will stop working
|
|
|
3
3
|
npm warn Unknown project config "prefer-workspace-packages". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
|
|
4
4
|
|
|
5
5
|
> tiny-mcp-client@0.1.0 build
|
|
6
|
-
> node
|
|
6
|
+
> node scripts/build.mjs
|
|
7
7
|
|