بنقرة واحدة
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 المهني
| name | camera-skill |
| description | Control Android camera - get camera info, take photos, and access camera capabilities. |
| allowed-tools | camera_control |
| metadata | {"author":"machina","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 handleDrive the user's real Chrome over raw CDP by writing Python against browser-harness helpers - screenshot, coordinate clicks, JS evaluation, form fill, tabs. For tasks needing full freedom or the user's own logins.
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
Deploy sites and apps to Vercel, inspect deployments, stream logs, and manage projects/env/domains via the Vercel CLI. Deploy a directory and get back the live deployment URL; everything else the CLI supports is available through the custom command passthrough.
Use this skill to generate well-branded interfaces and assets for MachinaOS (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Run AI-generated Python in a hard sandbox (Pydantic Monty) with enforced time + memory limits and opt-in capabilities. Use for untrusted code; supports a Python subset.
Interactive browser automation - navigate, click, type, fill forms, take screenshots, get accessibility snapshots. Supports system Chrome/Edge via auto-detection.