一键导入
screen-control-skill
Control Android screen - brightness, wake screen, auto-brightness toggle, and screen timeout settings.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Control Android screen - brightness, wake screen, auto-brightness toggle, and screen timeout settings.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | screen-control-skill |
| description | Control Android screen - brightness, wake screen, auto-brightness toggle, and screen timeout settings. |
| allowed-tools | screen_control_automation |
| metadata | {"author":"machina","version":"1.0","category":"android"} |
Control screen settings on Android device.
This skill provides instructions for the Screen Control Automation tool node. Connect the Screen Control Automation node to Zeenie's input-tools handle to enable screen control.
Control screen brightness and display settings.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | Action to perform (see below) |
| parameters | object | No | Additional parameters for set actions |
| Action | Description |
|---|---|
status | Get current screen settings |
set_brightness | Set screen brightness level |
wake | Wake the screen |
auto_brightness_on | Enable auto-brightness |
auto_brightness_off | Disable auto-brightness |
Get screen status:
{
"action": "status"
}
Set brightness to 50%:
{
"action": "set_brightness",
"parameters": {
"level": 50
}
}
Wake the screen:
{
"action": "wake"
}
Enable auto-brightness:
{
"action": "auto_brightness_on"
}
Disable auto-brightness:
{
"action": "auto_brightness_off"
}
Status response:
{
"success": true,
"service": "screen_control",
"action": "status",
"data": {
"brightness": 75,
"auto_brightness": true,
"screen_on": true,
"screen_timeout": 30000
}
}
Set brightness response:
{
"success": true,
"service": "screen_control",
"action": "set_brightness",
"data": {
"previous_brightness": 100,
"new_brightness": 50
}
}
| Field | Type | Description |
|---|---|---|
| brightness | int | Current brightness (0-100) |
| auto_brightness | boolean | Auto-brightness enabled |
| screen_on | boolean | Screen is currently on |
| screen_timeout | int | Timeout in milliseconds |
| Use Case | Action | Description |
|---|---|---|
| Check display | status | Get current settings |
| Lower brightness | set_brightness | Reduce for battery/eyes |
| Wake device | wake | Turn on screen |
| Enable adaptive | auto_brightness_on | Let system adjust |
| Fixed brightness | auto_brightness_off | Manual control |
| Level | Use Case |
|---|---|
| 0-20% | Night/dark room |
| 20-50% | Indoor use |
| 50-80% | Normal use |
| 80-100% | Bright conditions/outdoor |
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.