用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill battery-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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