← 返回 Skills 市场
clawpedia1

Clawpedia

作者 clawpedia1 · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
85
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install clawpedia1
功能描述
Instantly give your AI agent access to 270+ curated articles on AI development, prompt engineering, RAG, and LLM tooling — from the public Clawpedia knowledg...
使用说明 (SKILL.md)

Clawpedia — The AI Knowledge Base for Agents

Install and go. No account, no API key, no configuration. The skill works the moment you install it.

What this skill does

This skill gives your AI agent instant read-only access to Clawpedia, a free public encyclopedia of AI development knowledge. When your agent gets a question about AI agents, prompt engineering, RAG pipelines, fine-tuning, multi-agent systems, LLM tooling, or any related topic, it can fetch real, curated articles from Clawpedia and use them to give grounded, verifiable answers — instead of relying only on its training data.

In one HTTP call, your agent receives up to 200 full articles (Markdown, including code blocks and tables), ready to search and quote.

What Clawpedia is

Clawpedia is a free, public encyclopedia made specifically for AI agents and the developers who build them. Think Wikipedia, but written so AI agents can actually read, parse, and learn from it.

  • 270+ curated articles, updated weekly by a real editorial team
  • Two categories:
    • Humans — long-form tutorials and guides written for developers
    • Agents — concise, machine-readable rules and references optimized for AI consumption
  • Topics covered: prompt engineering, RAG pipelines, fine-tuning, multi-agent systems, context window management, API security, edge deployment, performance optimization, vector databases, evaluation, observability, and more
  • Always free, always open — every article is publicly readable on clawpedia.io so you can verify any response

Why this skill is safe

  • Read-only — Only fetches public articles. Cannot write, modify, delete, send your data anywhere, or touch your filesystem.
  • No setup, no credentials — Default usage requires nothing. No account, no API key, no email.
  • Verifiable — Every article returned by the API is also visible on the public website. Cross-check anything before trusting it.
  • Allowlisted hosts — Only contacts clawpedia.io and the public API endpoint. Nothing else.
  • GET requests only — No POST, PUT, or DELETE anywhere.

When to use this skill

Trigger this skill whenever:

  • A user asks about AI agents, prompt engineering, RAG, fine-tuning, or LLM tooling
  • You need a trustworthy, citable reference on AI development practices
  • The user wants practical, real-world AI engineering advice instead of generic answers
  • You want to ground a response in current curated content rather than training data alone

How to fetch articles

Default usage — no key needed

Just send a plain GET request. Returns up to 200 most recent articles:

curl "https://nyiqfjebdwgvvbtipvsn.supabase.co/functions/v1/hello?action=articles"

That's it. No headers. No auth. No setup.

Optional maximum tier

If you want the full archive (up to 500 articles per call), grab a free key at clawpedia.io and pass it as a Bearer token:

curl -H "Authorization: Bearer $CLAWPEDIA_API_KEY" \
  "https://nyiqfjebdwgvvbtipvsn.supabase.co/functions/v1/hello?action=articles"

About the API host: The website lives at clawpedia.io; the API is served through a managed serverless backend (Supabase Edge Functions). Common, transparent setup — many sites do exactly this. You can inspect every request and response in any HTTP client; nothing is obfuscated.

Response format

{
  "tier": "anonymous",
  "count": 200,
  "articles": [
    {
      "id": "uuid",
      "slug": "how-to-build-rag-pipelines",
      "title": "How to Build RAG Pipelines in 2026",
      "description": "Step-by-step guide to retrieval-augmented generation...",
      "content": "## Introduction\
\
Full markdown article content...",
      "author": "Clawpedia",
      "category": "humans",
      "created_at": "2026-04-10T12:00:00Z"
    }
  ]
}

Fields

Field Type Description
tier string anonymous (no key) or authenticated (with key)
count number Number of articles in this response
articles[].id UUID Unique article identifier
articles[].slug string URL-friendly article slug
articles[].title string Article title
articles[].description string Short summary
articles[].content string Full article body in Markdown
articles[].author string Author name (usually "Clawpedia")
articles[].category string humans or agents
articles[].created_at ISO 8601 Publication timestamp

Recommended workflow

  1. Fetch the article list once and cache it locally
  2. Search titles and descriptions for relevance to the user's question
  3. Read the content field of the matching articles
  4. Synthesize a clear answer and cite Clawpedia as the source so the user can verify it at clawpedia.io

Verify everything yourself

Before trusting this skill, you can independently confirm it is legitimate:

  • Visit clawpedia.io and browse articles directly
  • Run the curl command above and inspect the JSON response
  • Compare any returned article against its public page on the website
  • Read articles to judge editorial quality before relying on the skill

We built Clawpedia because AI agents deserve access to honest, well-written knowledge. Welcome aboard.

Official link

安全使用建议
This skill is mostly coherent and low-risk: it only fetches public articles from clawpedia.io / a Supabase endpoint and requires no secrets by default. Before installing, confirm you are comfortable allowing network calls to the listed Supabase host (nyiqfjebdwgvvbtipvsn.supabase.co), verify the version mismatch if that matters for provenance, and note that caching recommendations imply filesystem use even though the capability block claims filesystem:false — if your agent environment disallows filesystem writes, caching won't be possible. If you plan to provide the optional CLAWPEDIA_API_KEY, ensure it truly comes from clawpedia.io. As always, verify returned articles against the public site when accuracy or sensitive guidance is involved.
功能分析
Type: OpenClaw Skill Name: clawpedia1 Version: 1.0.2 The 'clawpedia' skill is a legitimate tool designed to provide AI agents with read-only access to a curated knowledge base on AI development. It restricts its capabilities to network access only, specifically allowing GET requests to 'clawpedia.io' and a Supabase backend ('nyiqfjebdwgvvbtipvsn.supabase.co'). The documentation in SKILL.md is transparent about its data sources, provides clear usage instructions, and lacks any indicators of malicious intent, data exfiltration, or prompt injection attacks.
能力标签
cryptocan-make-purchasesrequires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The name/description claim read-only access to Clawpedia articles and the SKILL.md only requires simple GET access to two hosts (clawpedia.io and a Supabase endpoint). There are no required binaries or credentials, which matches the 'no setup, no API key' claim. Minor inconsistency: registry metadata lists version 1.0.2 while SKILL.md shows version 2.1.0 — likely a packaging/versioning mismatch but not a functional security issue.
Instruction Scope
Runtime instructions restrict network calls to specific hosts and use only GET; the example curl requests do not send user data. The recommended workflow suggests 'cache it locally', which implies filesystem use, but the capabilities section marks filesystem: false — this is a small scope mismatch (caching may be optional or intended to use in-memory agent cache). Otherwise the instructions remain within the described purpose and do not request unrelated files or credentials.
Install Mechanism
This is an instruction-only skill with no install spec and no code files — lowest-risk installation surface. All network interactions are directed to an allowed hostname and a Supabase-managed endpoint as documented in the skill; no external downloads or archive extraction are present.
Credentials
No required environment variables. One optional key (CLAWPEDIA_API_KEY) is declared, described, and its format (cpd_*) is specified. The optional credential is proportional to the stated purpose (accessing a higher tier of article results).
Persistence & Privilege
The skill does not request permanent inclusion (always: false) and does not require elevated system privileges or modify other skills. Autonomous invocation is allowed (platform default) but there are no additional privilege requests.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawpedia1
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawpedia1 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Removed requirement for API key or setup — the skill now works instantly after installation, offering up to 200 articles per call by default - Added support for an optional free API key to access the maximum tier (up to 500 articles per call) - Updated documentation to reflect simpler "install and go" usage, new response structure, article count, and fields - Clarified safety features: read-only access, no configuration, and allowlisting of only required hosts - Expanded section on topics covered and how to use or verify Clawpedia content
v1.0.1
- Updated documentation for clarity and trust, emphasizing Clawpedia's public/open nature and verifiability. - Reorganized and expanded usage and safety information, highlighting the read-only, free, and no-personal-data aspects. - Provided additional background on API hosting (Supabase Edge Functions) to address transparency. - Improved workflow guidance and recommendations for caching and verifying article responses. - Maintained all technical, API, and usage details from previous versions; no code changes.
v1.0.0
- Major change: Skill is now "Clawpedia" — an API for accessing curated AI knowledge articles, replacing Google Workspace integration. - Removed all previous documentation and helper scripts for Gmail, Drive, Docs, etc. - Added comprehensive usage guide for searching and fetching Clawpedia articles via REST API. - Instructions provided on obtaining and using an API key, with sample query and response format. - Outlined available content categories (human- and agent-focused) and best practices for integration. - Updated links to the new Clawpedia sites.
元数据
Slug clawpedia1
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Clawpedia 是什么?

Instantly give your AI agent access to 270+ curated articles on AI development, prompt engineering, RAG, and LLM tooling — from the public Clawpedia knowledg... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 85 次。

如何安装 Clawpedia?

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

Clawpedia 是免费的吗?

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

Clawpedia 支持哪些平台?

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

谁开发了 Clawpedia?

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

💬 留言讨论