@mcpilotx/intentorch 0.5.0
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/LICENSE +201 -0
- package/README.md +545 -0
- package/dist/ai/ai.d.ts +205 -0
- package/dist/ai/ai.js +1200 -0
- package/dist/ai/cloud-intent-engine.d.ts +270 -0
- package/dist/ai/cloud-intent-engine.js +956 -0
- package/dist/ai/command.d.ts +59 -0
- package/dist/ai/command.js +285 -0
- package/dist/ai/config.d.ts +66 -0
- package/dist/ai/config.js +211 -0
- package/dist/ai/enhanced-intent.d.ts +17 -0
- package/dist/ai/enhanced-intent.js +32 -0
- package/dist/ai/index.d.ts +29 -0
- package/dist/ai/index.js +44 -0
- package/dist/ai/intent.d.ts +16 -0
- package/dist/ai/intent.js +30 -0
- package/dist/core/ai-config.d.ts +25 -0
- package/dist/core/ai-config.js +326 -0
- package/dist/core/config-manager.d.ts +36 -0
- package/dist/core/config-manager.js +400 -0
- package/dist/core/config-validator.d.ts +9 -0
- package/dist/core/config-validator.js +184 -0
- package/dist/core/constants.d.ts +34 -0
- package/dist/core/constants.js +37 -0
- package/dist/core/error-ai.d.ts +23 -0
- package/dist/core/error-ai.js +217 -0
- package/dist/core/error-handler.d.ts +197 -0
- package/dist/core/error-handler.js +467 -0
- package/dist/core/index.d.ts +13 -0
- package/dist/core/index.js +17 -0
- package/dist/core/logger.d.ts +27 -0
- package/dist/core/logger.js +108 -0
- package/dist/core/performance-monitor.d.ts +74 -0
- package/dist/core/performance-monitor.js +260 -0
- package/dist/core/providers.d.ts +36 -0
- package/dist/core/providers.js +304 -0
- package/dist/core/retry-manager.d.ts +41 -0
- package/dist/core/retry-manager.js +204 -0
- package/dist/core/types.d.ts +155 -0
- package/dist/core/types.js +2 -0
- package/dist/daemon/index.d.ts +10 -0
- package/dist/daemon/index.js +15 -0
- package/dist/daemon/intent-engine.d.ts +22 -0
- package/dist/daemon/intent-engine.js +50 -0
- package/dist/daemon/orchestrator.d.ts +24 -0
- package/dist/daemon/orchestrator.js +100 -0
- package/dist/daemon/pm.d.ts +33 -0
- package/dist/daemon/pm.js +127 -0
- package/dist/daemon/process.d.ts +11 -0
- package/dist/daemon/process.js +49 -0
- package/dist/daemon/server.d.ts +17 -0
- package/dist/daemon/server.js +435 -0
- package/dist/daemon/service.d.ts +36 -0
- package/dist/daemon/service.js +278 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.js +36 -0
- package/dist/mcp/client.d.ts +51 -0
- package/dist/mcp/client.js +276 -0
- package/dist/mcp/index.d.ts +162 -0
- package/dist/mcp/index.js +199 -0
- package/dist/mcp/tool-registry.d.ts +71 -0
- package/dist/mcp/tool-registry.js +308 -0
- package/dist/mcp/transport.d.ts +83 -0
- package/dist/mcp/transport.js +515 -0
- package/dist/mcp/types.d.ts +136 -0
- package/dist/mcp/types.js +31 -0
- package/dist/runtime/adapter-advanced.d.ts +184 -0
- package/dist/runtime/adapter-advanced.js +160 -0
- package/dist/runtime/adapter.d.ts +9 -0
- package/dist/runtime/adapter.js +2 -0
- package/dist/runtime/detector-advanced.d.ts +59 -0
- package/dist/runtime/detector-advanced.js +487 -0
- package/dist/runtime/detector.d.ts +5 -0
- package/dist/runtime/detector.js +56 -0
- package/dist/runtime/docker-adapter.d.ts +18 -0
- package/dist/runtime/docker-adapter.js +170 -0
- package/dist/runtime/docker.d.ts +17 -0
- package/dist/runtime/docker.js +71 -0
- package/dist/runtime/executable-analyzer.d.ts +56 -0
- package/dist/runtime/executable-analyzer.js +391 -0
- package/dist/runtime/go-adapter.d.ts +19 -0
- package/dist/runtime/go-adapter.js +190 -0
- package/dist/runtime/index.d.ts +9 -0
- package/dist/runtime/index.js +10 -0
- package/dist/runtime/node-adapter.d.ts +10 -0
- package/dist/runtime/node-adapter.js +23 -0
- package/dist/runtime/node.d.ts +20 -0
- package/dist/runtime/node.js +86 -0
- package/dist/runtime/python-adapter.d.ts +11 -0
- package/dist/runtime/python-adapter.js +102 -0
- package/dist/runtime/python.d.ts +17 -0
- package/dist/runtime/python.js +72 -0
- package/dist/runtime/rust-adapter.d.ts +21 -0
- package/dist/runtime/rust-adapter.js +267 -0
- package/dist/sdk.d.ts +500 -0
- package/dist/sdk.js +904 -0
- package/docs/README.ZH_CN.md +545 -0
- package/docs/api.md +888 -0
- package/docs/architecture.md +731 -0
- package/docs/development.md +744 -0
- package/package.json +112 -0
package/package.json
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mcpilotx/intentorch",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Intent-Driven MCP Orchestration Toolkit - Transform natural language into executable workflows with AI-powered intent parsing",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./ai": {
|
|
16
|
+
"import": "./dist/ai/index.js",
|
|
17
|
+
"require": "./dist/ai/index.js",
|
|
18
|
+
"types": "./dist/ai/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./core": {
|
|
21
|
+
"import": "./dist/core/index.js",
|
|
22
|
+
"require": "./dist/core/index.js",
|
|
23
|
+
"types": "./dist/core/index.d.ts"
|
|
24
|
+
},
|
|
25
|
+
"./mcp": {
|
|
26
|
+
"import": "./dist/mcp/index.js",
|
|
27
|
+
"require": "./dist/mcp/index.js",
|
|
28
|
+
"types": "./dist/mcp/index.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./runtime": {
|
|
31
|
+
"import": "./dist/runtime/index.js",
|
|
32
|
+
"require": "./dist/runtime/index.js",
|
|
33
|
+
"types": "./dist/runtime/index.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"./daemon": {
|
|
36
|
+
"import": "./dist/daemon/index.js",
|
|
37
|
+
"require": "./dist/daemon/index.js",
|
|
38
|
+
"types": "./dist/daemon/index.d.ts"
|
|
39
|
+
},
|
|
40
|
+
"./package.json": "./package.json"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc --outDir dist --project tsconfig.json && node scripts/import-extensions.js",
|
|
44
|
+
"clean": "rm -rf dist",
|
|
45
|
+
"test": "jest",
|
|
46
|
+
"test:watch": "jest --watch",
|
|
47
|
+
"lint": "eslint src/**/*.ts",
|
|
48
|
+
"prepublishOnly": "npm run build",
|
|
49
|
+
"postbuild": "node scripts/import-extensions.js",
|
|
50
|
+
"docs:validate": "node scripts/sync-docs.js validate",
|
|
51
|
+
"docs:prepare": "node scripts/sync-docs.js prepare-npm",
|
|
52
|
+
"docs:sync": "node scripts/sync-docs.js all",
|
|
53
|
+
"docs:verify": "node scripts/sync-docs.js verify"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"dockerode": "^4.0.2",
|
|
57
|
+
"dotenv": "^17.3.1",
|
|
58
|
+
"uuid": "^11.0.3",
|
|
59
|
+
"zod": "^4.3.6"
|
|
60
|
+
},
|
|
61
|
+
"optionalDependencies": {
|
|
62
|
+
"@xenova/transformers": "^2.17.2",
|
|
63
|
+
"onnxruntime-node": "^1.24.3"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@eslint/js": "^10.0.1",
|
|
67
|
+
"@hono/node-server": "^1.19.12",
|
|
68
|
+
"@jest/globals": "^29.7.0",
|
|
69
|
+
"@types/jest": "^29.5.12",
|
|
70
|
+
"@types/node": "^20.0.0",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
72
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
73
|
+
"eslint": "^10.2.0",
|
|
74
|
+
"hono": "^4.12.10",
|
|
75
|
+
"jest": "^29.7.0",
|
|
76
|
+
"ts-jest": "^29.2.5",
|
|
77
|
+
"typescript": "^5.0.0",
|
|
78
|
+
"typescript-eslint": "^8.58.0"
|
|
79
|
+
},
|
|
80
|
+
"keywords": [
|
|
81
|
+
"mcp",
|
|
82
|
+
"model-context-protocol",
|
|
83
|
+
"ai",
|
|
84
|
+
"orchestration",
|
|
85
|
+
"sdk",
|
|
86
|
+
"docker",
|
|
87
|
+
"nodejs",
|
|
88
|
+
"python",
|
|
89
|
+
"go",
|
|
90
|
+
"rust"
|
|
91
|
+
],
|
|
92
|
+
"repository": {
|
|
93
|
+
"type": "git",
|
|
94
|
+
"url": "git+https://github.com/MCPilotX/IntentOrch.git",
|
|
95
|
+
"directory": "IntentOrch"
|
|
96
|
+
},
|
|
97
|
+
"bugs": {
|
|
98
|
+
"url": "https://github.com/MCPilotX/IntentOrch/issues"
|
|
99
|
+
},
|
|
100
|
+
"homepage": "https://github.com/MCPilotX/IntentOrch#readme",
|
|
101
|
+
"files": [
|
|
102
|
+
"LICENSE",
|
|
103
|
+
"README.md",
|
|
104
|
+
"dist/**/*.d.ts",
|
|
105
|
+
"dist/**/*.js",
|
|
106
|
+
"docs/"
|
|
107
|
+
],
|
|
108
|
+
"publishConfig": {
|
|
109
|
+
"access": "public",
|
|
110
|
+
"registry": "https://registry.npmjs.org/"
|
|
111
|
+
}
|
|
112
|
+
}
|