用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill camera-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| name | camera-skill |
| description | Control Android camera - get camera info, take photos, and access camera capabilities. |
| allowed-tools | camera_control |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Control camera on Android device.
This skill provides instructions for the Camera Control tool node. Connect the Camera Control node to Zeenie's input-tools handle to enable camera control.
Access camera and capture photos.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | Action to perform (see below) |
| parameters | object | No | Additional parameters |
| Action | Description |
|---|---|
status | Get camera info and capabilities |
capture | Take a photo |
Get camera info:
{
"action": "status"
}
Take a photo:
{
"action": "capture"
}
Capture with front camera:
{
"action": "capture",
"parameters": {
"camera": "front"
}
}
Status response:
{
"success": true,
"service": "camera_control",
"action": "status",
"data": {
"cameras": [
{
"id": "0",
"facing": "back",
"megapixels": 48,
"has_flash": true,
"supports_video": true
},
{
"id": "1",
"facing": "front",
"megapixels": 12,
"has_flash":
Capture response:
{
"success": true,
"service": "camera_control",
"action": "capture",
"data": {
"photo_path": "/storage/emulated/0/DCIM/Camera/IMG_20250130_120000.jpg",
"camera_used": "back",
"resolution": "4000x3000",
"timestamp": "2025-01-30T12:00:00Z"
}
}
| Field | Description |
|---|---|
| cameras | List of available cameras |
| facing | "back" or "front" |
| megapixels | Camera resolution |
| has_flash | Flash available |
| photo_path | Path to captured photo |
| Use Case | Action | Description |
|---|---|---|
| Check cameras | status | Get camera capabilities |
| Take photo | capture | Capture image |
| Selfie | capture (front) | Use front camera |
| Document | capture | Capture document/scene |
input-tools handle