ワンクリックで
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 職業分類に基づく
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 | wifi-skill |
| description | Control Android WiFi - enable, disable, get status, scan for networks, and get current connection info. |
| allowed-tools | wifi_automation |
| metadata | {"author":"opencompany","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 handle