Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add besoeasy/open-skills --skill phone-specs-scrapergit clone --depth 1 https://github.com/besoeasy/open-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/besoeasy/open-skills/phone-specs-scraper)<a href="https://agentmods.dev/skills/besoeasy/open-skills/phone-specs-scraper"><img src="https://agentmods.dev/badge/skills/besoeasy/open-skills/phone-specs-scraper/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/besoeasy/open-skills/phone-specs-scraper"><img src="https://agentmods.dev/badge/skills/besoeasy/open-skills/phone-specs-scraper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00049 | $0.02569 |
| Opus 5 | $0.00024 | $0.01285 |
| Sonnet 5 | $0.00010 | $0.00514 |
| Haiku 4.5 | $0.00005 | $0.00257 |
Grade A, and why
phone-specs-scraper scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- Web scraping tools: curl, wget, or Playwright/Puppeteer How it starts
The opening of the file, as written. The whole thing — 342 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Phone Specifications Scraper
Extract detailed smartphone specs from popular phone database websites for comparison and research.
When to use
- User asks to compare phone specifications
- Researching device features before purchase
- Building phone comparison tools or databases
- Finding detailed technical specifications
Required tools / APIs
- No external API required
- Web scraping tools: curl, wget, or Playwright/Puppeteer
- HTML parsing: BeautifulSoup (Python), cheerio (Node.js), or grep/sed (bash)
Phone Spec Websites
Primary Sources
1. GSM Arena (gsmarena.com)
- Largest phone database with detailed specs
- URL pattern:
https://www.gsmarena.com/[brand]_[model]-[id].php - Example:
https://www.gsmarena.com/google_pixel_9-13242.php
2. PhoneDB (phonedb.net)
- Detailed device specifications database
- URL pattern:
https://phonedb.net/index.php?m=device&s=query&d=[device-name]
3. PhoneArena (phonearena.com)
- Phone reviews and comparisons
- URL pattern:
https://www.phonearena.com/phones/[brand]-[model]
4. MK Mobile Arena (mkmobilearena.com)
- Side-by-side phone comparisons
- URL pattern:
https://mkmobilearena.com/phone-compare/[phone1]-vs-[phone2]
5. TechRadar (techradar.com)
- Phone reviews with spec comparisons
- URL pattern:
https://www.techradar.com/phones/[brand]-[model]
6. DeviceBeast (devicebeast.com)
- Comprehensive device specs
- URL pattern:
https://devicebeast.com/phones/[brand]-[model]
7. Comparigon (comparigon.com)
- Side-by-side comparisons
- URL pattern:
https://comparigon.com/phones/[brand]-[model]
8. SpecsBattle (specsbattle.com)
- Detailed phone comparisons
- URL pattern:
https://specsbattle.com/phones/[brand]-[model]
Skills
scrape_gsmarena_specs
Scrape phone specs from GSM Arena using curl and grep.
# Get phone specs from GSM Arena
PHONE_URL="https://www.gsmarena.com/google_pixel_9-13242.php"
# Download page and extract key specs
curl -s "$PHONE_URL" | grep -oP '(?<=<td class="ttl">)[^<]+' | head -20
# Extract specifications table
curl -s "$PHONE_URL" | grep -A2 'class="specs-cp"' | grep -oP '(?<=<td>)[^<]+'
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 342 lines · 49 tokens per session scan A 609b3d47a43d
phone-specs-scraper is a skill published in the GitHub repository besoeasy/open-skills (132 stars, last pushed 7d ago), licensed MIT. It adds 49 tokens to every session and 2,569 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
node-connect
Diagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps. Use when QR/setup code/manual connect fails, local Wi-Fi works but VPS/tailnet does not, or errors mention pairing required, unauthorized, bootstrap token invalid or expired, gateway.bind, gateway.remote.url, Tailscale…
kotlin-coroutines-flows
Kotlin Coroutines and Flow patterns for Android and KMP — structured concurrency, Flow operators, StateFlow, error handling, and testing.
svc-mobile-android
Android APK static analysis — OWASP Mobile Top 10, Retrofit API audit, transport security, smali reading, component export, auth flow analysis. Use when target is an APK/Android app. Triggers - APK, Android, mobile app, decompiled, smali, jadx, apktool.
build-an-app
Walk through the full process of building a digital health app — from planning to implementation.
spezi-platform-selection
Choose between React Native and Apple-native for a digital health app, set up the matching Spezi starter template, and move existing planning briefs into the new project so the coding agent has full context for implementation.
device-control
Use when driving the user's Android device through devicecontrolstart, deviceui and deviceaction — opening apps, navigating screens, filling fields, or any multi-step flow through another app's UI.