بنقرة واحدة
battery-skill
Monitor Android device battery status, level, charging state, temperature, and health.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Monitor Android device battery status, level, charging state, temperature, and health.
التثبيت باستخدام 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.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
Control Android camera - get camera info, take photos, and access camera capabilities.
| name | battery-skill |
| description | Monitor Android device battery status, level, charging state, temperature, and health. |
| allowed-tools | battery_monitor |
| metadata | {"author":"opencompany","version":"1.0","category":"android"} |
Monitor Android device battery status and information.
This skill provides instructions for the Battery Monitor tool node. Connect the Battery Monitor node to Zeenie's input-tools handle to enable battery monitoring.
Get battery status and information from the Android device.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | "status" - Get current battery information |
| Action | Description |
|---|---|
status | Get current battery level, charging state, health, temperature |
Get battery status:
{
"action": "status"
}
{
"success": true,
"service": "battery",
"action": "status",
"data": {
"level": 85,
"status": "charging",
"health": "good",
"temperature": 28.5,
"voltage": 4200,
"plugged": "ac",
"technology": "Li-ion"
}
}
| Field | Type | Description |
|---|---|---|
| level | int | Battery percentage (0-100) |
| status | string | "charging", "discharging", "full", "not_charging" |
| health | string | "good", "overheat", "dead", "cold" |
| temperature | float | Temperature in Celsius |
| voltage | int | Voltage in millivolts |
| plugged | string | "ac", "usb", "wireless", "none" |
| technology | string | Battery technology (e.g., "Li-ion") |
{
"error": "Failed to get battery status",
"service": "battery",
"action": "status"
}
| Use Case | Description |
|---|---|
| Low battery alert | Trigger actions when battery is low |
| Charging monitor | Detect when device starts/stops charging |
| Health check | Monitor battery health over time |
| Temperature warning | Alert on overheating |
input-tools handle