一键导入
wifi-skill
Control Android WiFi - enable, disable, get status, scan for networks, and get current connection info.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Control Android WiFi - enable, disable, get status, scan for networks, and get current connection info.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | wifi-skill |
| description | Control Android WiFi - enable, disable, get status, scan for networks, and get current connection info. |
| allowed-tools | wifi_automation |
| metadata | {"author":"machina","version":"1.0","category":"android"} |
Control WiFi on Android devices.
This skill provides instructions for the WiFi Automation tool node. Connect the WiFi Automation node to Zeenie's input-tools handle to enable WiFi control.
Control WiFi settings and get network information.
| Field | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | Action to perform (see below) |
| parameters | object | No | Additional parameters for certain actions |
| Action | Description | Parameters |
|---|---|---|
status | Get WiFi status and connection info | None |
enable | Turn WiFi on | None |
disable | Turn WiFi off | None |
scan | Scan for available networks | None |
Get WiFi status:
{
"action": "status"
}
Enable WiFi:
{
"action": "enable"
}
Disable WiFi:
{
"action": "disable"
}
Scan for networks:
{
"action": "scan"
}
Status response:
{
"success": true,
"service": "wifi_automation",
"action": "status",
"data": {
"enabled": true,
"connected": true,
"ssid": "MyHomeNetwork",
"bssid": "aa:bb:cc:dd:ee:ff",
"ip_address": "192.168.1.100",
"link_speed": 72,
"rssi": -45,
"frequency": 2437
}
}
Scan response:
{
"success": true,
"service": "wifi_automation",
"action": "scan",
"data": {
"networks": [
{
"ssid": "MyHomeNetwork",
"bssid": "aa:bb:cc:dd:ee:ff",
"rssi": -45,
"frequency": 2437,
"security": "WPA2"
},
{
"ssid": "Neighbor_WiFi",
"bssid": "11:22:33:44:55:66",
"rssi": -70,
"frequency": 5180,
"security": "WPA3"
}
]
}
}
Enable/Disable response:
{
"success": true,
"service": "wifi_automation",
"action": "enable",
"data": {
"message": "WiFi enabled successfully"
}
}
| Field | Description |
|---|---|
| enabled | WiFi radio is on |
| connected | Connected to a network |
| ssid | Network name |
| bssid | Access point MAC address |
| ip_address | Device IP on network |
| link_speed | Connection speed in Mbps |
| rssi | Signal strength (dBm, closer to 0 is stronger) |
| frequency | Channel frequency in MHz |
| Use Case | Action | Description |
|---|---|---|
| Check connection | status | Verify WiFi is connected |
| Toggle WiFi | enable/disable | Control WiFi radio |
| Find networks | scan | List available networks |
| Signal strength | status | Check connection quality |
| RSSI (dBm) | Quality |
|---|---|
| > -50 | Excellent |
| -50 to -60 | Good |
| -60 to -70 | Fair |
| -70 to -80 | Weak |
| < -80 | Poor |
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.