Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

3gpp-scout3GPP 侦察兵

Agent Skill

3gpp-scout 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,820

周安装

113

GitHub Stars

1

下载量

913
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:3gpp-scout(3GPP 侦察兵)
来源仓库:https://github.com/chriscarrotlabs/3gpp-scout
安装命令:
openclaw skills install 3gpp-scout
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install 3gpp-scout

简介

对 3,200 多个 3GPP 技术规范(TS/TR 系列、Rel-15 和 Rel-19)进行语义搜索。在 904K+ 个向量中搜索文本、图表和图形。

SKILL.md

name
3gpp-scout
description
Semantic search over 3,200+ 3GPP technical specifications (TS/TR series, Rel-15 and Rel-19). Search text, diagrams, and figures across 904K+ vectors.
version
1.0.2
homepage
https://3gppscout.com
metadata
openclaw
requires
env
primaryEnv
SCOUT_API_KEY

3GPP Scout API — Agent Skill Guide

You have access to the 3GPP Scout API, a semantic search engine over 3GPP technical specifications. Use it to find specific information in 3GPP standards documents (TS and TR series).

Provider & Pricing

Provider: Carrot Labs Homepage: 3gppscout.com Dashboard: dashboard.3gppscout.com API Docs: api.3gppscout.com/docs Terms of Service: 3gppscout.com/terms Privacy Policy: 3gppscout.com/privacy

This is a paid API service. Each API call costs a small amount against your account's credit balance. New accounts receive free starter credits (worth a few hundred API calls) so you can evaluate the service before purchasing additional credits. You can view your balance, usage history, and buy additional credits at dashboard.3gppscout.com.

Base URL

https://api.3gppscout.com

Authentication

All search and document endpoints require a Bearer token (API key).

How to get an API key:

  1. Sign up or log in at dashboard.3gppscout.com
  2. Go to the API Keys page
  3. Create a new key — it will start with sk-

Set your API key via environment variable:

export SCOUT_API_KEY="sk-your-key-here"

Or set skills."3gpp-scout".apiKey / skills."3gpp-scout".env.SCOUT_API_KEY in ~/.openclaw/openclaw.json.

The key is included in every request as a Bearer token:

Authorization: Bearer $SCOUT_API_KEY

Available Endpoints

POST /search/text

Semantic search over specification text. This is your primary tool.

Request body (JSON):

ParameterTypeDefaultDescription
querystringRequired. Natural language search query
match_countint30Candidate matches before reranking (1–200)
match_thresholdfloat0.0Minimum similarity score (0–1)
rerankbooltrueRerank results for higher precision
rerank_top_kint10Results to keep after reranking (1–50)
include_section_textbooltrueInclude the full parent section text
filter_releasestringnulle.g. "Rel-19", "Rel-15"
filter_doc_typestringnull"TS" or "TR"
filter_doc_numberstringnulle.g. "38.331", "23.501"
filter_seriesstringnulle.g. "38" (NR/5G), "23" (system architecture)
filter_section_numberstringnulle.g. "5.3.3"

Response fields:

FieldTypeDescription
querystringEcho of the search query
resultsTextResult[]Matching text chunks
totalintNumber of results returned
rerankedboolWhether reranking was applied
elapsed_msfloatServer processing time in ms

Each TextResult contains:

  • doc_number, doc_type, version, release — document metadata
  • section_number, section_title — which section the chunk is from
  • content — the matched text chunk
  • similarity — semantic similarity score (0–1)
  • relevance_score — reranker score (0–1), present when reranked
  • section_text — full parent section text (when include_section_text=true)
  • section_token_count — token count of the parent section

POST /search/images

Semantic search over figures, diagrams, and tables in specifications.

Request body (JSON):

ParameterTypeDefaultDescription
querystringRequired. Natural language query
match_countint10Number of results (1–50)
match_thresholdfloat0.3Minimum similarity (0–1)
filter_releasestringnulle.g. "Rel-19"
filter_doc_numberstringnulle.g. "38.300"
filter_seriesstringnulle.g. "38"

Each ImageResult contains:

  • doc_number, doc_type, version, release — document metadata
  • section_number — which section the image is in
  • caption — figure/table caption
  • context_before, context_after — surrounding text
  • image_path — path to the image file
  • similarity — semantic similarity score

POST /search/combined

Text + image search in a single request. Useful for broad questions where both text passages and diagrams are relevant.

Request body (JSON):

ParameterTypeDefaultDescription
querystringRequired. Natural language query
text_match_countint30Text candidates before reranking (1–200)
text_match_thresholdfloat0.0Text similarity threshold (0–1)
rerankbooltrueRerank text results
rerank_top_kint10Text results after reranking (1–50)
include_section_textbooltrueInclude full parent section text
image_match_countint5Image results to return (1–50)
image_match_thresholdfloat0.0Image similarity threshold (0–1)
filter_releasestringnullFilter both searches by release
filter_doc_typestringnullFilter text search by doc type
filter_doc_numberstringnullFilter both searches by document
filter_seriesstringnullFilter both searches by series
filter_section_numberstringnullFilter text search by section

Response has text_results (TextResult[]) and image_results (ImageResult[]).

GET /documents

List available 3GPP documents with metadata. Use filters to check if a specific document or release is indexed — this is fast (1-2 lookups). Without filters returns all ~3,200 documents which is slower.

Query parameters:

ParameterTypeDefaultDescription
doc_numberstringnullFilter by document number, e.g. "38.811". Recommended.
releasestringnullFilter by release, e.g. "Rel-19"
seriesstringnullFilter by series, e.g. "38"
doc_typestringnullFilter by type: "TS" or "TR"

Example: Check if TR 38.811 has a Rel-19 version:

GET /documents?doc_number=38.811&release=Rel-19

GET /documents/{document_id}

Get a single document by its numeric ID.

GET /sections

Fetch full section text by section number.

Query parameters:

ParameterTypeDefaultDescription
section_numberstringRequired. e.g. "5.3.3"
doc_numberstringnullDocument number — always provide this
versionstringnulle.g. "19.1.0"
releasestringnulle.g. "Rel-19"
prefixboolfalseMatch sub-sections too (e.g. "5.4" gets "5.4.1")

GET /sections/toc

Table of contents for a document — section numbers and titles without full text.

Query parameters:

ParameterTypeDefaultDescription
doc_numberstringRequired. e.g. "38.321"
versionstringnulle.g. "19.1.0"

GET /images/{doc_number}/{version}/{image_index}

Fetch an extracted image (PNG) from a specification. No authentication required.

The image_path field in image search results (e.g. /images/38.300/19.1.0/5) maps directly to this endpoint. Construct the full URL as:

https://api.3gppscout.com/images/{doc_number}/{version}/{image_index}

Returns image/png on success, 404 if the image doesn't exist.

Corpus Coverage

The index currently covers:

  • Rel-15 — 1,493 documents, 195K sections
  • Rel-19 — 1,789 documents, 291K sections
  • Total — 3,282 documents, 486K sections

Series 38 = NR/5G, 23 = system architecture, 24 = signaling protocols, 36 = LTE, 33 = security, 29 = core network protocols.

Recommended Workflows

Finding specific technical details

  1. Use POST /search/text with a focused query and rerank_top_k: 5
  2. Read the content field for the matched chunk
  3. Read section_text for the full section context
  4. If you need the broader document structure, call GET /sections/toc

with the doc_number from the result

Exploring a specific document

  1. Get the table of contents: GET /sections/toc?doc_number=38.331
  2. Fetch a specific section: GET /sections?section_number=5.3.3&doc_number=38.331
  3. Use prefix=true to get a section and all its sub-sections

Broad topic research

  1. Use POST /search/combined to get both text and diagrams
  2. Use filter_series to narrow to a domain (e.g. "38" for NR)
  3. Increase rerank_top_k to 15–20 for more diverse results

Comparing across releases

  1. Search with filter_release: "Rel-15" for the original version
  2. Search again with filter_release: "Rel-19" for the latest
  3. Compare the section text to see what changed

Tips for Best Results

  • Always use reranking (enabled by default). The relevance_score from

the reranker is a much better quality signal than raw similarity.

  • Use filters to narrow scope. If you know which spec you're looking for,

filter_doc_number dramatically improves result quality.

  • Use include_section_text: true (the default) to get the full parent

section. The content field is a chunk (~400-800 tokens), while section_text gives the complete section for full context.

  • Cite results precisely. When presenting results to users, always include

the document number, section number, and release. For example: "According to TS 38.331 Section 5.3.3 (Rel-19)..."

  • Use the TOC endpoint before diving deep into a document. It helps you

understand the document structure and find the right section numbers.

  • Prefer /search/text over /search/combined when you only need text.

Combined search is slower because it queries both indexes.

  • Don't set match_threshold too high. The default of 0.0 with reranking

gives the best results. The reranker handles quality filtering.

  • Render images from search results. Image search results include

image_path (e.g. /images/38.300/19.1.0/5). Construct the full URL: https://api.3gppscout.com{image_path}. No authentication required.

Data & Privacy

Queries you send to this API are processed by the 3GPP Scout service to perform vector search. The API does not store your queries beyond transient usage logs for billing. The corpus consists entirely of publicly available 3GPP specifications — no proprietary or user-supplied data is stored in the search index. See 3gppscout.com/privacy for the full privacy policy.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.12%
按下载量换算649

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills