Neomano Internet Speed (Download/Upload)
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears benign: it runs a small Python-based internet speed test against Cloudflare and does not request credentials, persistence, or broad local access.
This looks safe for normal use as an on-demand speed test. Be aware that it contacts Cloudflare and transfers several megabytes by default, so avoid running it on metered or sensitive networks unless that is acceptable.
Findings (1)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Running the skill will transfer test data over the network and Cloudflare will see the request metadata such as the connecting IP address and user agent.
The script performs external download and upload requests to Cloudflare, with configurable byte counts. This is exactly what a speed test needs, but it does consume bandwidth.
DOWN_URL = "https://speed.cloudflare.com/__down"; UP_URL = "https://speed.cloudflare.com/__up"; ap.add_argument("--download-bytes", type=int, default=25_000_000); ap.add_argument("--upload-bytes", type=int, default=5_000_000)Use it only when you want a speed test, and keep the byte-size options reasonable on metered or bandwidth-limited connections.
