openmcp-sdk 0.1.3 → 0.1.4
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/README.md +1 -0
- package/package.json +6 -5
- package/renderer/assets/{index-BlKDIjk4.js → index-BQ5zhfzY.js} +304 -303
- package/renderer/assets/{style-DZqkIZhR.css → style-ByZuAA0R.css} +1 -1
- package/renderer/index.html +2 -2
- package/service/hook/sdk.js +1 -5
- package/service/mcp/client.service.js +0 -6
- package/service/panel/panel.controller.d.ts +33 -0
- package/service/panel/panel.controller.js +90 -1
- package/service/panel/panel.service.d.ts +48 -0
- package/service/panel/panel.service.js +106 -24
- package/task-loop.d.ts +48 -9
- package/task-loop.js +596 -36
package/README.md
CHANGED
|
@@ -94,6 +94,7 @@ Run your agent and get example output:
|
|
|
94
94
|
2025/6/20 - 20:47:48 | ✅ get_web_markdown success
|
|
95
95
|
2025/6/20 - 20:47:54 | ✅ get_web_markdown success
|
|
96
96
|
2025/6/20 - 20:47:57 | ✅ get_web_markdown success
|
|
97
|
+
└─ ⬇️145434 ⬆️1554 🎯96.1% 💰0.0439 rmb
|
|
97
98
|
|
|
98
99
|
⚙️ Agent Response
|
|
99
100
|
⌨️ Today's Tech Article Roundup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmcp-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "openmcp-sdk",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"llm framework",
|
|
18
18
|
"agent",
|
|
19
19
|
"ai agent"
|
|
20
|
-
],
|
|
20
|
+
],
|
|
21
21
|
"author": "kirigaya",
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"bugs": {
|
|
@@ -36,11 +36,12 @@
|
|
|
36
36
|
"tesseract.js": "^6.0.1",
|
|
37
37
|
"uuid": "^11.1.0",
|
|
38
38
|
"duckdb": "^1.4.1",
|
|
39
|
-
|
|
39
|
+
"open": "^10.1.2",
|
|
40
40
|
"ws": "^8.18.1",
|
|
41
|
-
|
|
41
|
+
"cli-table3": "^0.6.5",
|
|
42
42
|
"https-proxy-agent": "^7.0.6",
|
|
43
43
|
"pino": "^9.6.0",
|
|
44
|
-
|
|
44
|
+
"pino-pretty": "^13.0.0",
|
|
45
|
+
"strict-url-sanitise": "^0.0.1"
|
|
45
46
|
}
|
|
46
47
|
}
|