원클릭으로
camera-skill
Control Android camera - get camera info, take photos, and access camera capabilities.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Control Android camera - get camera info, take photos, and access camera capabilities.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| 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": false,
"supports_video": true
}
],
"flash_available": true
}
}
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