← 返回 Skills 市场
cutthemustard

Docs Lookup

作者 CutTheMustard · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
339
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install docs-lookup
功能描述
Search pre-indexed developer documentation across 10 platforms — Cloudflare, Stripe, Anthropic, OpenAI, Next.js, and more.
使用说明 (SKILL.md)

docs-lookup

When you need framework or API documentation, search across 10 pre-indexed platforms using semantic vector search. Returns relevant documentation chunks with source URLs — no web scraping needed.

When to Activate

Use this skill when:

  • You need to look up how a specific API or framework feature works
  • A user asks about Cloudflare Workers, Stripe, Anthropic, OpenAI, or other indexed platform APIs
  • You are writing code that uses an indexed platform and need accurate, current docs
  • You need the exact parameter names, types, or behavior for an API call
  • A user references a framework feature you are uncertain about

Do NOT use for: platforms not in the indexed list, general programming questions unrelated to specific APIs, or topics covered by your training data with high confidence.

Indexed Platforms

Platform ID What's covered
Cloudflare Workers cloudflare-workers Workers API, KV, D1, Durable Objects, R2, Queues
Stripe API stripe-api Payment intents, subscriptions, webhooks, Connect
Anthropic API anthropic-api Messages API, tool use, streaming, vision
OpenAI API openai-api Chat completions, assistants, embeddings, function calling
Next.js nextjs App router, server components, data fetching, middleware
Tailwind CSS tailwindcss Utility classes, configuration, plugins, responsive design
HTMX htmx Attributes, extensions, events, server-side patterns
Shopify Admin GraphQL shopify-admin-graphql Products, orders, customers, metafields, bulk operations
x402 Protocol x402 Payment flow, EIP-3009, facilitators, discovery
Jesse jesse Trading strategies, indicators, backtesting, live trading

Workflow

Step 1: Identify the platform

Match the user's question to one of the 10 indexed platforms. If the platform isn't indexed, say so and fall back to your training knowledge.

Step 2: Semantic search

HTTP:

curl -X POST https://docs.agentutil.net/v1/query \
  -H "Content-Type: application/json" \
  -d '{"platform": "cloudflare-workers", "query": "how to bind a KV namespace"}'

Optional parameters:

  • category — filter by doc section (e.g., "api-reference", "guides")
  • max_chunks — number of results (default 5, max 20)

Step 3: Direct page lookup (if you know the page)

curl -X POST https://docs.agentutil.net/v1/lookup \
  -H "Content-Type: application/json" \
  -d '{"platform": "stripe-api", "page": "create-payment-intent"}'

Step 4: Use the results

  • Cite source URLs — each result includes the original documentation URL
  • Use relevance_score — results above 0.85 are strong matches; below 0.7, treat as supplementary
  • Combine chunks — multiple results may cover different aspects of the same topic
  • Fall back gracefully — if no good results, say "I couldn't find specific docs on this" rather than guessing

Response Format

{
  "platform": "cloudflare-workers",
  "results": [
    {
      "content": "To bind a KV namespace to your Worker...",
      "source_url": "https://developers.cloudflare.com/workers/runtime-apis/kv/",
      "page_title": "KV Bindings",
      "relevance_score": 0.92
    }
  ],
  "chunks_returned": 3,
  "request_id": "abc-123",
  "service": "https://docs.agentutil.net"
}

Browsing available platforms

curl https://docs.agentutil.net/platforms

Request new platform indexing

curl -X POST https://docs.agentutil.net/v1/request \
  -H "Content-Type: application/json" \
  -d '{"platform": "fastapi", "reason": "Popular Python framework"}'

Data Handling

This skill sends search queries (short text strings) to an external API. No documents, file contents, or user data are transmitted. Queries are not stored beyond the immediate response.

Pricing

  • Free tier: GET /platforms, GET /schema (platform listing)
  • Paid tier: $0.003/query, $0.002/lookup via x402 protocol (USDC on Base)

Privacy

No authentication required for free endpoints. Query content is not stored. Rate limiting uses IP hashing only.

安全使用建议
This skill appears to do what it says (query an external docs API), but you should: (1) verify the service operator (docs.agentutil.net) and read its privacy/retention policy; (2) avoid sending secrets, credentials, or private code/config in queries — the SKILL.md's claim that 'no user data is transmitted' is not enforceable here; (3) test with benign queries first to confirm behavior and response quality; (4) if you must look up sensitive internal docs, prefer an on-prem or vendor-hosted docs source you control; and (5) be cautious about the paid lookup pathway (x402/USDC) — confirm billing and what information is attached to payment requests.
功能分析
Type: OpenClaw Skill Name: docs-lookup Version: 1.0.1 The docs-lookup skill is a legitimate tool designed to provide semantic search capabilities for developer documentation across various platforms (e.g., Cloudflare, Stripe, OpenAI) via an external API (docs.agentutil.net). The SKILL.md file provides clear instructions for the AI agent to use standard curl commands for querying and looking up documentation chunks. There is no evidence of data exfiltration, malicious code execution, or prompt injection attempts; the skill's behavior is consistent with its stated purpose.
能力评估
Purpose & Capability
Name/description (search pre-indexed docs) lines up with the runtime instructions: all examples call docs.agentutil.net endpoints for query, lookup, and platforms. No unrelated binaries, env vars, or installs are requested.
Instruction Scope
Instructions direct the agent to send user queries (free-form text) to an external API. The SKILL.md also asserts 'No documents, file contents, or user data are transmitted' and 'Queries are not stored' — but it does not define what qualifies as 'user data' or instruct the agent to redact secrets/PII before querying. That is a gap: user-provided code snippets or config could contain sensitive data and would be sent to the external service unless explicitly scrubbed.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest local footprint; nothing is written to disk by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. The skill does not ask for unrelated secrets or system access.
Persistence & Privilege
always:false and no special privileges requested. The skill can be invoked autonomously by the agent (default), but that is normal and not by itself a red flag.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install docs-lookup
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /docs-lookup 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Fix display name
v1.0.0
Semantic docs search across 10 pre-indexed platforms
元数据
Slug docs-lookup
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Docs Lookup 是什么?

Search pre-indexed developer documentation across 10 platforms — Cloudflare, Stripe, Anthropic, OpenAI, Next.js, and more. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 339 次。

如何安装 Docs Lookup?

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

Docs Lookup 是免费的吗?

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

Docs Lookup 支持哪些平台?

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

谁开发了 Docs Lookup?

由 CutTheMustard(@cutthemustard)开发并维护,当前版本 v1.0.1。

💬 留言讨论