← 返回 Skills 市场
hobbesoccc

Broadbandmap Cell Coverage

作者 hobbesoccc · GitHub ↗ · v0.1.2 · MIT-0
cross-platform ✓ 安全检测通过
123
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install broadbandmap-cell-coverage
功能描述
PRELIMINARY/ITERATING SKILL (v0.x) - Query BroadbandMap-style public APIs for cellular coverage at a location, normalize results, and return a concise human...
使用说明 (SKILL.md)

BroadbandMap Cell Coverage

Status: Preliminary skill (v0.x). This is an intentionally small first release and is expected to evolve quickly.

Use this skill to answer: “How good is cell coverage here?” for a specific location.

Quick workflow

  1. Resolve location to coordinates (lat/lon).
  2. Run scripts/cell_coverage_lookup.py to call the coverage API.
  3. Summarize key results:
    • top carriers
    • network tech (4G/5G)
    • confidence/quality fields if present
  4. Include caveats when API fields are missing or endpoint behavior is unknown.

Run the script

python3 scripts/cell_coverage_lookup.py --lat 39.7392 --lon -104.9903

Default endpoint used by this skill:

  • GET /api/v1/location/cell?lat={lat}&lng={lng}
  • Optional filters: network (att|verizon|t-mobile|us-cellular|dish|gci|cellcom|c-spire), tech (4g|5g)

Address mode (uses OpenStreetMap Nominatim geocoding first):

python3 scripts/cell_coverage_lookup.py --address "Denver, CO"

Optional overrides and filters:

python3 scripts/cell_coverage_lookup.py \
  --lat 39.7392 --lon -104.9903 \
  --network verizon \
  --tech 5g \
  --format report

Advanced endpoint overrides:

python3 scripts/cell_coverage_lookup.py \
  --lat 39.7392 --lon -104.9903 \
  --base-url "https://broadbandmap.com" \
  --endpoint "/api/v1/location/cell" \
  --param-lat lat --param-lon lng \
  --api-key "$BROADBANDMAP_API_KEY"

Output contract

The script prints JSON by default with:

  • input: address/lat/lon used
  • request: final URL and query params
  • response: parsed API JSON (or raw body)
  • summary: best-effort normalized fields (providers, technologies, notes)
  • errors: any recoverable errors

Use --format report for a concise human-readable output.

Example commands

# Basic lookup by address
python3 scripts/cell_coverage_lookup.py --address "Austin, TX" --format report

# Filter to one network and 5G only
python3 scripts/cell_coverage_lookup.py --address "Seattle, WA" --network verizon --tech 5g --format report

# Raw JSON for automation/pipelines
python3 scripts/cell_coverage_lookup.py --lat 34.0522 --lon -118.2437 --format json

Known limitations

  • This skill is a preliminary v0.x release and will be iterated/enhanced.
  • API is alpha and may change schema/limits without notice.
  • Default public limit is low (~60 requests/hour/IP).
  • Coverage maps are modeled estimates and may differ from real-world signal.

Response style

When replying to users:

  • Start with a one-paragraph answer.
  • Then list providers/technologies in bullets.
  • End with one caveat sentence: coverage maps are estimates and real-world signal may vary.

references/

Read references/api-notes.md when endpoint details need adjustment.

Links

安全使用建议
This skill appears to do what it says: it will perform HTTP requests to OpenStreetMap (for geocoding) and to the configured coverage API (default https://broadbandmap.com). It optionally accepts an API key which will be sent in Authorization and x-api-key headers. Before using, confirm you trust the base-url/endpoint you supply (don't point it at unknown servers), and only provide BROADBANDMAP_API_KEY for a trusted API. Review the included script if you need to be sure the behavior matches your security needs (there are no hidden obfuscated sections). If you plan to run this in an automated agent, be aware the agent will make external network calls and could send any provided API key to the configured endpoint.
功能分析
Type: OpenClaw Skill Name: broadbandmap-cell-coverage Version: 0.1.2 The broadbandmap-cell-coverage skill is a legitimate utility designed to query cellular network coverage data for specific locations. The primary script, scripts/cell_coverage_lookup.py, uses standard Python libraries to perform geocoding via OpenStreetMap and fetch data from a configurable API endpoint, with no evidence of malicious intent, data exfiltration, or unauthorized code execution. The instructions in SKILL.md and documentation in references/api-notes.md are consistent with the tool's stated purpose and do not contain any prompt injection or deceptive directives.
能力评估
Purpose & Capability
Name/description match the actual behavior: the included Python script queries a coverage API, optionally uses OSM Nominatim to geocode addresses, normalizes provider/technology fields, and prints JSON or a report. No unrelated binaries, credentials, or config paths are requested.
Instruction Scope
SKILL.md restricts the runtime actions to resolving locations and calling the coverage endpoint and summarizing results. The script performs network calls to OpenStreetMap and the configured base URL/endpoint. Note: the script supports overriding base-url/endpoint/params, so if a user/agent supplies a malicious endpoint it could send requests (and any provided API key) to an arbitrary server — this is a capability of the script but consistent with the stated goal of supporting alternate API shapes.
Install Mechanism
No install spec or external downloads. The skill is instruction-only with a single included Python script using standard library modules (urllib, json), so nothing is written to disk beyond the provided file and no third-party packages are installed.
Credentials
Registry lists no required env vars; the script optionally reads BROADBANDMAP_API_KEY, BROADBANDMAP_API_BASE, and BROADBANDMAP_API_ENDPOINT (documented in references). Requesting an optional API key for the target service is proportionate. Users should note these env vars are optional but, if set, the API key will be sent as Authorization and x-api-key headers to the configured endpoint.
Persistence & Privilege
always is false and the skill does not request any elevated or persistent system privileges, nor does it attempt to modify other skills or global agent configuration. Autonomous invocation is allowed by default (normal platform behavior).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install broadbandmap-cell-coverage
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /broadbandmap-cell-coverage 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.2
Add full coverage map and developer resource links.
v0.1.1
Add full coverage map and developer links.
元数据
Slug broadbandmap-cell-coverage
版本 0.1.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Broadbandmap Cell Coverage 是什么?

PRELIMINARY/ITERATING SKILL (v0.x) - Query BroadbandMap-style public APIs for cellular coverage at a location, normalize results, and return a concise human... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 123 次。

如何安装 Broadbandmap Cell Coverage?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install broadbandmap-cell-coverage」即可一键安装,无需额外配置。

Broadbandmap Cell Coverage 是免费的吗?

是的,Broadbandmap Cell Coverage 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Broadbandmap Cell Coverage 支持哪些平台?

Broadbandmap Cell Coverage 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Broadbandmap Cell Coverage?

由 hobbesoccc(@hobbesoccc)开发并维护,当前版本 v0.1.2。

💬 留言讨论