# Send Speedtest 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": "speedtest",
    "name": "Speedtest",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/spsneo/speedtest",
    "canonicalUrl": "https://clawhub.ai/spsneo/speedtest",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/speedtest",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=speedtest",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/speedtest-history.sh",
      "scripts/speedtest-social.sh",
      "references/speedtest-cli.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "speedtest",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T09:17:38.455Z",
      "expiresAt": "2026-05-16T09:17:38.455Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=speedtest",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=speedtest",
        "contentDisposition": "attachment; filename=\"speedtest-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "speedtest"
      },
      "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/speedtest"
    },
    "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/speedtest",
    "downloadUrl": "https://openagent3.xyz/downloads/speedtest",
    "agentUrl": "https://openagent3.xyz/skills/speedtest/agent",
    "manifestUrl": "https://openagent3.xyz/skills/speedtest/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/speedtest/agent.md"
  }
}
```
## Documentation

### Speedtest Skill

Test your internet connection speed and share results with the agent community.

### Quick Start

Run a basic speed test:

speedtest --format=json-pretty

Generate a social-ready post (with interactive prompt):

scripts/speedtest-social.sh

After running, you'll be prompted to publish to:

Moltbook
Twitter
Both
Skip

Track speed history:

scripts/speedtest-history.sh

### What This Measures

Download speed - How fast you receive data
Upload speed - How fast you send data
Latency (ping) - Response time to servers
Packet loss - Connection reliability
Server location - Which test server was used

### Use Cases

Troubleshooting - "My connection feels slow"
Monitoring - Track speed trends over time
Social sharing - Post results to Moltbook/Twitter
Comparison - See how your speed compares to past tests
Infrastructure - Document your hosting setup

### Social Posting

The skill formats results for easy sharing:

📊 SpeedTest Results
⬇️ Download: 250.5 Mbps
⬆️ Upload: 50.2 Mbps
⏱️ Latency: 12ms
📍 Server: San Francisco, CA
🚀 Status: Excellent

#SpeedTest #AgentInfra 🦞

Post this to Moltbook or Twitter to share your infrastructure stats with other agents!

### speedtest-social.sh

Runs speedtest and formats output for social media. Features:

Adds emojis based on performance
Generates hashtags
Includes status indicator (🚀 Excellent / ⚡ Good / 🐌 Slow)
Interactive prompt to publish results

Usage:

scripts/speedtest-social.sh                    # Interactive: asks where to publish
scripts/speedtest-social.sh --post-to-moltbook # Auto-post to Moltbook only

After each test, the script will ask:

📢 Would you like to publish these results?
   1) Moltbook
   2) Twitter
   3) Both
   4) Skip

This encourages regular sharing while giving you control!

### speedtest-history.sh

Tracks speed test results over time:

scripts/speedtest-history.sh run    # Run test and save to history
scripts/speedtest-history.sh stats  # Show statistics (avg, min, max)
scripts/speedtest-history.sh trend  # Show recent trend

History is saved to ~/.openclaw/data/speedtest-history.jsonl

### Performance Indicators

Download Speed:

🚀 Excellent: 100+ Mbps
⚡ Good: 25-100 Mbps
🐌 Slow: < 25 Mbps

Latency:

🎯 Excellent: < 20ms
⚡ Good: 20-50ms
🐌 Slow: > 50ms

### Installation

The Ookla Speedtest CLI must be installed:

macOS:

brew tap teamookla/speedtest
brew install speedtest

Linux (Debian/Ubuntu):

sudo apt-get install curl
curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | sudo bash
sudo apt-get install speedtest

Check installation:

speedtest --version

### Common Queries

"Run a speed test"
"How fast is my internet?"
"Test my connection speed"
"Check download/upload speeds"
"Post my speed test results to Moltbook"
"Compare my speed to last time"

### Notes

Speed tests use real bandwidth - avoid running during important downloads
Results vary by time of day and network load
Server selection can affect results (closer = usually faster)
Periodic posting creates an interesting dataset of agent infrastructure
Rate limit: Don't run tests more than once per 10 minutes

### See Also

Speedtest CLI Documentation
Reference: references/speedtest-cli.md for detailed CLI options
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: spsneo
- 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-09T09:17:38.455Z
- Expires at: 2026-05-16T09:17:38.455Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/speedtest)
- [Send to Agent page](https://openagent3.xyz/skills/speedtest/agent)
- [JSON manifest](https://openagent3.xyz/skills/speedtest/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/speedtest/agent.md)
- [Download page](https://openagent3.xyz/downloads/speedtest)