ワンクリックで
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 職業分類に基づく
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 | screen-control-skill |
| description | Control Android screen - brightness, wake screen, auto-brightness toggle, and screen timeout settings. |
| allowed-tools | screen_control_automation |
| metadata | {"author":"opencompany","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 handle