-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathregistry.json
More file actions
78 lines (78 loc) · 2.1 KB
/
Copy pathregistry.json
File metadata and controls
78 lines (78 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"meta": {
"repo": "https://github.com/olo-dot-io/Uni-CLI",
"description": "Uni-CLI — The universal interface between AI agents and the world's software.",
"updated": "2026-04-04"
},
"adapters": [
{
"name": "hackernews",
"displayName": "Hacker News",
"type": "web-api",
"version": "0.1.0",
"description": "Top stories and search via Firebase API",
"commands": ["top", "search"],
"strategy": "public",
"browser": false,
"category": "tech",
"contributor": "ZenAlexa"
},
{
"name": "reddit",
"displayName": "Reddit",
"type": "web-api",
"version": "0.1.0",
"description": "Hot posts and search via Reddit JSON API",
"commands": ["hot", "search"],
"strategy": "public",
"browser": false,
"category": "social",
"contributor": "ZenAlexa"
},
{
"name": "github-trending",
"displayName": "GitHub Trending",
"type": "web-api",
"version": "0.1.0",
"description": "Trending repositories by language and period",
"commands": ["daily"],
"strategy": "public",
"browser": false,
"category": "tech",
"contributor": "ZenAlexa"
},
{
"name": "blender",
"displayName": "Blender",
"type": "desktop",
"version": "0.1.0",
"description": "3D rendering via Blender CLI",
"commands": ["render"],
"requires": "blender >= 4.0",
"category": "3d",
"contributor": "ZenAlexa"
},
{
"name": "ffmpeg",
"displayName": "FFmpeg",
"type": "desktop",
"version": "0.1.0",
"description": "Media conversion via ffmpeg",
"commands": ["convert"],
"requires": "ffmpeg",
"category": "media",
"contributor": "ZenAlexa"
},
{
"name": "ollama",
"displayName": "Ollama",
"type": "service",
"version": "0.1.0",
"description": "Local LLM model management via Ollama REST API",
"commands": ["list"],
"requires": "Ollama running at localhost:11434",
"category": "ai",
"contributor": "ZenAlexa"
}
]
}