Skip to content

Commit 2cfba37

Browse files
committed
feat(registry): add privacy category and depth-estimation skill entry
Adds 'privacy' as a new skill category in skills.json for transforms that anonymize camera feeds (depth maps, blur, blind mode). Registers the depth-estimation skill (v1.1.0) with privacy-specific capabilities (live_transform, privacy_overlay) and UI unlock flags (blind_mode).
1 parent 772473d commit 2cfba37

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

skills.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"detection": "Object detection, person recognition, visual grounding",
88
"analysis": "VLM scene understanding, interactive segmentation",
99
"transformation": "Depth estimation, style transfer, video effects",
10+
"privacy": "Privacy transforms — depth maps, blur, anonymization for blind mode",
1011
"annotation": "Dataset labeling, COCO export, training data",
1112
"camera-providers": "Camera brand integrations — clip feed, live stream",
1213
"streaming": "RTSP/WebRTC live view via go2rtc",
@@ -130,6 +131,40 @@
130131
"monitoring",
131132
"recording"
132133
]
134+
},
135+
{
136+
"id": "depth-estimation",
137+
"name": "Depth Estimation (Privacy)",
138+
"description": "Privacy-first depth map transforms — anonymize camera feeds with Depth Anything v2 while preserving spatial awareness.",
139+
"version": "1.1.0",
140+
"category": "privacy",
141+
"path": "skills/transformation/depth-estimation",
142+
"tags": [
143+
"privacy",
144+
"depth",
145+
"transform",
146+
"anonymization",
147+
"blind-mode"
148+
],
149+
"platforms": [
150+
"linux-x64",
151+
"linux-arm64",
152+
"darwin-arm64",
153+
"darwin-x64",
154+
"win-x64"
155+
],
156+
"requirements": {
157+
"python": ">=3.9",
158+
"ram_gb": 2
159+
},
160+
"capabilities": [
161+
"live_transform",
162+
"privacy_overlay"
163+
],
164+
"ui_unlocks": [
165+
"privacy_overlay",
166+
"blind_mode"
167+
]
133168
}
134169
]
135170
}

0 commit comments

Comments
 (0)