-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathskills.json
More file actions
202 lines (202 loc) · 5.75 KB
/
skills.json
File metadata and controls
202 lines (202 loc) · 5.75 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
"version": "1.0.0",
"repository": "SharpAI/DeepCamera",
"updated": "2026-03-02",
"description": "AI skill catalog for SharpAI Aegis. Each skill is a self-contained folder with a SKILL.md manifest.",
"categories": {
"detection": "Object detection, person recognition, visual grounding",
"analysis": "VLM scene understanding, interactive segmentation",
"transformation": "Depth estimation, style transfer, video effects",
"privacy": "Privacy transforms — depth maps, blur, anonymization for blind mode",
"annotation": "Dataset labeling, COCO export, training data",
"training": "Model fine-tuning, hardware-optimized export, deployment",
"camera-providers": "Camera brand integrations — clip feed, live stream",
"streaming": "RTSP/WebRTC live view via go2rtc",
"channels": "Messaging platform channels for Clawdbot agent",
"automation": "MQTT, webhooks, Home Assistant triggers",
"integrations": "Smart home and IoT platform bridges"
},
"skills": [
{
"id": "home-security-benchmark",
"name": "Home Security AI Benchmark",
"description": "LLM & VLM evaluation suite for home security AI — tests dedup, classification, tool use, and scene analysis.",
"version": "1.0.0",
"category": "analysis",
"path": "skills/analysis/home-security-benchmark",
"tags": [
"benchmark",
"llm",
"vlm",
"testing",
"evaluation",
"security"
],
"platforms": [
"linux-x64",
"linux-arm64",
"darwin-arm64",
"darwin-x64",
"win-x64"
],
"requirements": {
"node": ">=18",
"ram_gb": 1
},
"capabilities": [
"benchmark",
"report_generation"
],
"ui_unlocks": [
"benchmark_report"
]
},
{
"id": "yolo-detection-2026",
"name": "YOLO 2026 Object Detection",
"description": "State-of-the-art real-time object detection — 80+ COCO classes, bounding box overlays, multi-size model selection.",
"version": "1.0.0",
"category": "detection",
"path": "skills/detection/yolo-detection-2026",
"tags": [
"detection",
"yolo",
"object-detection",
"real-time",
"coco"
],
"platforms": [
"linux-x64",
"linux-arm64",
"darwin-arm64",
"darwin-x64",
"win-x64"
],
"requirements": {
"python": ">=3.9",
"ram_gb": 2
},
"capabilities": [
"live_detection",
"bbox_overlay"
],
"ui_unlocks": [
"detection_overlay",
"detection_results"
],
"fps_presets": [
0.2,
0.5,
1,
3,
5,
15
],
"model_sizes": [
"nano",
"small",
"medium",
"large"
]
},
{
"id": "camera-claw",
"name": "Camera Claw",
"description": "Security camera for your AI agent — sandbox, record, and monitor OpenClaw activity.",
"version": "2026.3.12",
"category": "integrations",
"url": "https://github.com/SharpAI/CameraClaw",
"repo_url": "https://github.com/SharpAI/CameraClaw",
"code_structure": [
{ "path": "SKILL.md", "desc": "Aegis skill manifest (11 params)" },
{ "path": "package.json", "desc": "Node.js dependencies" },
{ "path": "config.yaml", "desc": "Default params" },
{ "path": "deploy.sh", "desc": "Node.js + Docker bootstrapper" },
{ "path": "deploy.bat", "desc": "Windows bootstrapper" },
{ "path": "scripts/monitor.js", "desc": "Main entry — Docker orchestrator + JSONL protocol" },
{ "path": "scripts/health-check.js", "desc": "Container health checker" },
{ "path": "docs/aegis_openclaw_note.md", "desc": "Aegis integration requirements" }
],
"tags": ["security", "sandbox", "monitoring", "openclaw", "ai-agent"],
"platforms": [
"linux-x64",
"linux-arm64",
"darwin-arm64",
"darwin-x64",
"win-x64"
],
"requirements": {
"docker": true
},
"capabilities": [
"monitoring",
"recording"
]
},
{
"id": "depth-estimation",
"name": "Depth Estimation (Privacy)",
"description": "Privacy-first depth map transforms — anonymize camera feeds with Depth Anything v2 while preserving spatial awareness.",
"version": "1.1.0",
"category": "privacy",
"path": "skills/transformation/depth-estimation",
"tags": [
"privacy",
"depth",
"transform",
"anonymization",
"blind-mode"
],
"platforms": [
"linux-x64",
"linux-arm64",
"darwin-arm64",
"darwin-x64",
"win-x64"
],
"requirements": {
"python": ">=3.9",
"ram_gb": 2
},
"capabilities": [
"live_transform",
"privacy_overlay"
],
"ui_unlocks": [
"privacy_overlay",
"blind_mode"
]
},
{
"id": "model-training",
"name": "Model Training",
"description": "Agent-driven YOLO fine-tuning — annotate, train, auto-export to TensorRT/CoreML/OpenVINO, deploy as detection skill.",
"version": "1.0.0",
"category": "training",
"path": "skills/training/model-training",
"tags": [
"training",
"fine-tuning",
"yolo",
"custom-model",
"export"
],
"platforms": [
"linux-x64",
"linux-arm64",
"darwin-arm64",
"darwin-x64",
"win-x64"
],
"requirements": {
"python": ">=3.9",
"ram_gb": 4
},
"capabilities": [
"fine_tuning",
"model_export",
"deployment"
]
}
]
}