@tronsfey/ucli 0.4.1 → 0.4.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.
- package/dist/{chunk-NNFC34A5.js → chunk-FJU3QOHW.js} +3 -1
- package/dist/{client-O6QINOP2.js → client-3I7XBDJU.js} +4 -2
- package/dist/{client-O6QINOP2.js.map → client-3I7XBDJU.js.map} +1 -1
- package/dist/index.js +293 -44
- package/dist/index.js.map +1 -1
- package/dist/{runner-VTUGJUH7.js → runner-GVYIJNHN.js} +4 -2
- package/dist/{runner-VTUGJUH7.js.map → runner-GVYIJNHN.js.map} +1 -1
- package/package.json +16 -6
- package/skill.md +17 -0
- /package/dist/{chunk-NNFC34A5.js.map → chunk-FJU3QOHW.js.map} +0 -0
package/package.json
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tronsfey/ucli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "ucli — proxy OpenAPI and MCP services for AI agents",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"openapi",
|
|
7
|
+
"oas",
|
|
8
|
+
"cli",
|
|
9
|
+
"ai-agent",
|
|
10
|
+
"api-client"
|
|
11
|
+
],
|
|
6
12
|
"license": "MIT",
|
|
7
|
-
"engines": {
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=18"
|
|
15
|
+
},
|
|
8
16
|
"publishConfig": {
|
|
9
17
|
"access": "public"
|
|
10
18
|
},
|
|
@@ -22,6 +30,7 @@
|
|
|
22
30
|
"scripts": {
|
|
23
31
|
"dev": "tsx watch src/index.ts",
|
|
24
32
|
"build": "tsup && chmod +x dist/index.js",
|
|
33
|
+
"prepack": "tsup && chmod +x dist/index.js",
|
|
25
34
|
"test": "vitest run",
|
|
26
35
|
"test:watch": "vitest",
|
|
27
36
|
"lint": "tsc --noEmit",
|
|
@@ -34,11 +43,12 @@
|
|
|
34
43
|
"conf": "^13.1.0"
|
|
35
44
|
},
|
|
36
45
|
"devDependencies": {
|
|
46
|
+
"@modelcontextprotocol/server-filesystem": "2026.1.14",
|
|
37
47
|
"@tronsfey/mcp2cli": "1.0.1",
|
|
38
48
|
"@types/node": "^22.14.0",
|
|
39
|
-
"tsx": "^4.19.3",
|
|
40
49
|
"tsup": "^8.4.0",
|
|
41
|
-
"
|
|
42
|
-
"typescript": "^5.7.3"
|
|
50
|
+
"tsx": "^4.19.3",
|
|
51
|
+
"typescript": "^5.7.3",
|
|
52
|
+
"vitest": "^3.1.1"
|
|
43
53
|
}
|
|
44
54
|
}
|
package/skill.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ucli
|
|
3
|
+
description: Proxy OpenAPI and MCP services for AI agents — discover, inspect, and invoke APIs with automatic credential injection.
|
|
4
|
+
version: 0.4.1
|
|
5
|
+
metadata:
|
|
6
|
+
openclaw:
|
|
7
|
+
emoji: "🔗"
|
|
8
|
+
homepage: https://github.com/tronsfey928/ucli
|
|
9
|
+
requires:
|
|
10
|
+
bins:
|
|
11
|
+
- ucli
|
|
12
|
+
install:
|
|
13
|
+
- kind: node
|
|
14
|
+
package: "@tronsfey/ucli"
|
|
15
|
+
bins: [ucli]
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# ucli Skill
|
|
2
19
|
|
|
3
20
|
## Overview
|
|
File without changes
|