# Send Starlink to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "starlink",
    "name": "Starlink",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/danfedick/starlink",
    "canonicalUrl": "https://clawhub.ai/danfedick/starlink",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/starlink",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=starlink",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "starlink",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T11:02:29.532Z",
      "expiresAt": "2026-05-16T11:02:29.532Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=starlink",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=starlink",
        "contentDisposition": "attachment; filename=\"starlink-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "starlink"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/starlink"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/starlink",
    "downloadUrl": "https://openagent3.xyz/downloads/starlink",
    "agentUrl": "https://openagent3.xyz/skills/starlink/agent",
    "manifestUrl": "https://openagent3.xyz/skills/starlink/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/starlink/agent.md"
  }
}
```
## Documentation

### Starlink CLI

Control your Starlink dish from the command line via its local gRPC API at 192.168.100.1:9200.

### Installation

cargo install --git https://github.com/danfedick/starlink-cli

Requires Rust and protoc (Protocol Buffers compiler).

### Status

Get dish state, uptime, SNR, latency, throughput, obstructions:

starlink status
starlink status --json

### WiFi Clients

List devices connected to the Starlink router:

starlink clients
starlink clients --json

Output includes: name, MAC, IP, signal strength, interface (2.4GHz/5GHz/ETH), connection time.

### Speed Test

Run a speed test through the dish:

starlink speedtest
starlink speedtest --json

Returns download/upload Mbps and latency.

### Stow/Unstow

Stow dish flat for transport or storage:

starlink stow           # stow
starlink stow --unstow  # unstow and resume

### Reboot

Reboot the dish:

starlink reboot

### Location

Get GPS coordinates (must be enabled in Starlink app → Settings → Advanced → Debug Data → "allow access on local network"):

starlink location
starlink location --json

### Output Formats

Default: Human-readable colored output
--json: JSON for scripting/parsing

Example JSON parsing:

starlink status --json | jq '.latency_ms'
starlink clients --json | jq '.[] | .name'

### Requirements

Connected to Starlink network
Dish reachable at 192.168.100.1:9200
For location: enable in Starlink app first

### Troubleshooting

"Failed to connect to Starlink dish"

Verify you're on the Starlink WiFi or wired to the router
Check: ping 192.168.100.1
If using bypass mode with your own router, ensure 192.168.100.1 is still routable

Location returns empty

Enable in Starlink app: Settings → Advanced → Debug Data → "allow access on local network"

### Limitations

Device pause/unpause is NOT available (cloud-only feature via Starlink app)
Only works on local network, not remotely

### Source

https://github.com/danfedick/starlink-cli
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: danfedick
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T11:02:29.532Z
- Expires at: 2026-05-16T11:02:29.532Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/starlink)
- [Send to Agent page](https://openagent3.xyz/skills/starlink/agent)
- [JSON manifest](https://openagent3.xyz/skills/starlink/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/starlink/agent.md)
- [Download page](https://openagent3.xyz/downloads/starlink)