← 返回 Skills 市场
chriscarrotlabs

3GPP Scout

作者 chriscarrotlabs · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
88
总下载
1
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install 3gpp-scout
功能描述
Semantic search over 3,200+ 3GPP technical specifications (TS/TR series, Rel-15 and Rel-19). Search text, diagrams, and figures across 904K+ vectors.
使用说明 (SKILL.md)

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):

Parameter Type Default Description
query string Required. Natural language search query
match_count int 30 Candidate matches before reranking (1–200)
match_threshold float 0.0 Minimum similarity score (0–1)
rerank bool true Rerank results for higher precision
rerank_top_k int 10 Results to keep after reranking (1–50)
include_section_text bool true Include the full parent section text
filter_release string null e.g. "Rel-19", "Rel-15"
filter_doc_type string null "TS" or "TR"
filter_doc_number string null e.g. "38.331", "23.501"
filter_series string null e.g. "38" (NR/5G), "23" (system architecture)
filter_section_number string null e.g. "5.3.3"

Response fields:

Field Type Description
query string Echo of the search query
results TextResult[] Matching text chunks
total int Number of results returned
reranked bool Whether reranking was applied
elapsed_ms float Server 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):

Parameter Type Default Description
query string Required. Natural language query
match_count int 10 Number of results (1–50)
match_threshold float 0.3 Minimum similarity (0–1)
filter_release string null e.g. "Rel-19"
filter_doc_number string null e.g. "38.300"
filter_series string null e.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):

Parameter Type Default Description
query string Required. Natural language query
text_match_count int 30 Text candidates before reranking (1–200)
text_match_threshold float 0.0 Text similarity threshold (0–1)
rerank bool true Rerank text results
rerank_top_k int 10 Text results after reranking (1–50)
include_section_text bool true Include full parent section text
image_match_count int 5 Image results to return (1–50)
image_match_threshold float 0.0 Image similarity threshold (0–1)
filter_release string null Filter both searches by release
filter_doc_type string null Filter text search by doc type
filter_doc_number string null Filter both searches by document
filter_series string null Filter both searches by series
filter_section_number string null Filter 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:

Parameter Type Default Description
doc_number string null Filter by document number, e.g. "38.811". Recommended.
release string null Filter by release, e.g. "Rel-19"
series string null Filter by series, e.g. "38"
doc_type string null Filter 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:

Parameter Type Default Description
section_number string Required. e.g. "5.3.3"
doc_number string null Document number — always provide this
version string null e.g. "19.1.0"
release string null e.g. "Rel-19"
prefix bool false Match 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:

Parameter Type Default Description
doc_number string Required. e.g. "38.321"
version string null e.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.

安全使用建议
This skill appears to do what it says: it sends your search queries to api.3gppscout.com and returns matching spec text and images. Before installing: (1) Understand that queries and returned section text are sent to and processed by a third party — avoid submitting proprietary or secret content. (2) The service is paid per call; monitor usage and billing. (3) Protect the SCOUT_API_KEY (prefer env vars or secret storage over plaintext config files) and rotate/revoke it if exposed. (4) Review the provider's privacy/billing/retention policies at the linked pages if you need to ensure compliance.
功能分析
Type: OpenClaw Skill Name: 3gpp-scout Version: 1.0.2 The 3gpp-scout skill is a legitimate tool for performing semantic searches across 3GPP technical specifications via the 3GPP Scout API (api.3gppscout.com). The SKILL.md file provides clear documentation for various search and document retrieval endpoints, requires a standard API key (SCOUT_API_KEY), and contains no evidence of malicious instructions, data exfiltration, or unauthorized execution.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
Name, description, and runtime instructions all describe a paid semantic-search API over 3GPP specs. The only required secret is SCOUT_API_KEY (a Bearer token), which is consistent with calling a third‑party API.
Instruction Scope
SKILL.md directs the agent to send queries and receive document text/images from https://api.3gppscout.com, which is expected. Caution: user queries and any text you include will be transmitted to the third party and may be stored/processed by them; the guide explicitly returns full section text when requested, which could expose sensitive content if you query with proprietary text.
Install Mechanism
Instruction-only skill with no install spec and no code files, so nothing is written to disk or installed at runtime by the skill itself.
Credentials
Only SCOUT_API_KEY is required (declared as primaryEnv). This is proportional to the stated purpose. The docs also suggest storing the key in ~/.openclaw/openclaw.json — storing long-lived secrets in a config file increases local risk; consider using environment variables or rotating keys.
Persistence & Privilege
always is false and the skill doesn't request system-level changes or access to other skills/configs. Autonomous invocation is allowed (default), which is normal for skills and not by itself suspicious.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install 3gpp-scout
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /3gpp-scout 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
Version 1.0.2 - Updated environment variable for API key from THREEGPP_SCOUT_API_KEY to SCOUT_API_KEY. - Added OpenClaw skill metadata specifying required environment variable and its preferred usage. - Updated authentication instructions to include methods for setting the API key via environment variable or OpenClaw config. - No functional or endpoint changes detected.
v1.0.1
- Added full provider disclosure (Carrot Labs), pricing transparency (paid API with free starter credits for new accounts), declared credential (THREEGPP_SCOUT_API_KEY env var), and links to homepage, terms, and privacy policy - Synced endpoint docs with latest API (added text_match_threshold, image_match_threshold, section_token_count) and added a Data & Privacy section
v1.0.0
Initial release of 3gpp-scout agent skill. - Provides semantic search over 3GPP technical specifications via the 3GPP Scout API. - Supports text, image, and combined (text + image) search endpoints. - Enables filtering by release, document number, series, document type, and section. - Additional endpoints to list documents, fetch section contents, retrieve document TOCs, and access extracted images. - Corpus includes major 3GPP releases such as Rel-15 and Rel-19.
元数据
Slug 3gpp-scout
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

3GPP Scout 是什么?

Semantic search over 3,200+ 3GPP technical specifications (TS/TR series, Rel-15 and Rel-19). Search text, diagrams, and figures across 904K+ vectors. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。

如何安装 3GPP Scout?

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

3GPP Scout 是免费的吗?

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

3GPP Scout 支持哪些平台?

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

谁开发了 3GPP Scout?

由 chriscarrotlabs(@chriscarrotlabs)开发并维护,当前版本 v1.0.2。

💬 留言讨论