← Back to Skills Marketplace
juhemcp

运营商5G基站信息 - 聚合数据

by juhe-skills · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
38
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install cell-location
Description
运营商5G基站信息。本技能通过运营商基站参数(MCC、MNC、LAC/TAC、CI)查询设备地理位置的支付宝AI付付费技能,基于 A2M(HTTP 402)收单协议,需联动支付宝支付技能完成付款后获取精准位置数据,可用于基站位置核验、设备位置解析、周边服务场景支撑。买家通过本 Skill 向卖家服务端发起请求,完...
README (SKILL.md)

技能概述

本 Skill 提供通过运营商基站的MCC、MNC、TAC、CID信息查询所在位置信息。为用户提供位置服务,如实时导航、周边推荐等。当用户需要获取基站信息的时候,调用本技能。

该服务是基于 A2M 智能收协议(HTTP 402)的付费资源。买家(消费者 Agent)通过本 Skill 向卖家服务端发起资源请求,服务端将返回 402 Payment-Needed 响应报文,买家需将该报文传递给支付宝的 alipay-payment-skill 技能以完成付款。

必要依赖检查

本技能依赖于支付宝AI付技能,所以需要从clawhub安装alipay-authenticate-wallet 和 alipay-payment-skill这两个技能,安装后开启支付宝支付功能

触发条件

  • 用户请求查询运营商基站相关信息
  • 用户需要获取运营商基站位置信息
  • 用户提供或需要验证某个基站的基本信息

工作流程

当用户向你请求该服务时,按以下步骤执行:

第一步:收集基站信息

如果用户需要查询基站信息,向用户询问以下基站参数:

参数 必填 名称 说明 示例
MCC 移动国家代码 460=中国 460
MNC 移动网络代码 00=移动,01=联通,11=电信,15=广电 00
TAC/LAC 小区号LAC 或 TAC 十进制数 34994
CI 基站号 基站号 Cell Identifier或BID(CDMA) 223214251

第二步:请求资源

向用户展示待查询的参数,用户确认后,向以下 URL 发起请求:

curl https://apis.juhe.cn/a2a/query
  -d '{"resourceId":"849","data":{"mcc":"\x3C需要查询的移动国家代码MCC>","mnc":"\x3C需要查询的移动网络代码MNC>","lac":"\x3C需要查询的位置区码LAC/TAC>","ci":"\x3C需要查询的基站号CI/CID或BID>"}}'
  -H "Content-Type: application/json"

第三步:处理 402 响应

你将收到一个状态码为 402 的响应报文,其中包含 Payment-Needed 响应头。此时你需要将整个 402 响应报文传递给支付宝的 alipay-payment-skill 技能,引导用户完成付款。

第四步:后续流程

完全转移到 alipay-payment-skill 技能的工作流,提示支付待确认的信息时,需要包含用户订单号。

返回示例

该服务结果(result部分)示例如下:

{
    "reason": "成功",
    "result": {
        "orderid": "JH999260527155045zZCfk",
        "mcc": "460",
        "mnc": "00",
        "lac": "34994",
        "ci": "223214251",
        "lat": "27.44398880",
        "lon": "103.66980743",
        "address": "云南省昭通市昭阳区洒渔镇下冲子"
    },
    "error_code": 0
}

异常情况处理

  • 用户拒绝付款:尊重用户选择,告知用户该内容为付费资源,如需获取请完成支付。
  • 请求返回非 402 状态码:如返回 200,直接展示内容;如返回 4xx/5xx 错误,告知用户服务暂时不可用,建议稍后重试。
  • 其余异常情况将由 alipay-payment-skill 技能处理。

Agent 约束

  • 禁止缺必填参数发起请求;
  • 402 响应报文必须完整透传,不可篡改、删减;
  • 严格遵循既定流程与异常规则,禁止自定义逻辑。
Usage Guidance
Install only if you intentionally want a paid third-party service to derive location from telecom base-station identifiers. Confirm the MCC/MNC/TAC or LAC/CI values are yours or authorized to use, and do not use it to locate another person or device without permission.
Capability Tags
cryptorequires-walletrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose, required curl binary, external API call, and Alipay-based payment flow all align with a paid MCC/MNC/TAC/CI base-station geolocation lookup.
Instruction Scope
The trigger wording is somewhat broad for base-station information requests, but the workflow is scoped to carrier cell parameters and tells the agent to show the parameters and get user confirmation before the request.
Install Mechanism
The artifact contains only a SKILL.md file and declares curl as a dependency; it does not install executables, modify the environment, or add background components.
Credentials
Sending telecom cell identifiers to apis.juhe.cn and invoking an Alipay payment skill is expected for the service, but it involves sensitive location inference and a paid third-party workflow.
Persistence & Privilege
No persistence, privilege escalation, local credential scraping, or broad filesystem access is present in the artifact.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cell-location
  3. After installation, invoke the skill by name or use /cell-location
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Initial release
v1.0.0
Initial release
Metadata
Slug cell-location
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is 运营商5G基站信息 - 聚合数据?

运营商5G基站信息。本技能通过运营商基站参数(MCC、MNC、LAC/TAC、CI)查询设备地理位置的支付宝AI付付费技能,基于 A2M(HTTP 402)收单协议,需联动支付宝支付技能完成付款后获取精准位置数据,可用于基站位置核验、设备位置解析、周边服务场景支撑。买家通过本 Skill 向卖家服务端发起请求,完... It is an AI Agent Skill for Claude Code / OpenClaw, with 38 downloads so far.

How do I install 运营商5G基站信息 - 聚合数据?

Run "/install cell-location" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 运营商5G基站信息 - 聚合数据 free?

Yes, 运营商5G基站信息 - 聚合数据 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 运营商5G基站信息 - 聚合数据 support?

运营商5G基站信息 - 聚合数据 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 运营商5G基站信息 - 聚合数据?

It is built and maintained by juhe-skills (@juhemcp); the current version is v1.0.1.

💬 Comments