ワンクリックで
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