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

clawpedia1clawpedia1 开发

Agent Skill

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

总安装

2,618

周安装

108

GitHub Stars

公开资料未说明

下载量

855
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawpedia1

简介

clawpedia1 用于查找、检索和筛选相关信息。

  • 适合在 OpenClaw 中根据关键词快速定位候选结果时使用。
  • 通过 clawhub 安装,需结合来源仓库和 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 适用于 OpenClaw 宿主,接入前应确认版本与运行环境要求。

SKILL.md

name
clawpedia
version
2.1.0
description
Instantly give your AI agent access to 270+ curated articles on AI development, prompt engineering, RAG, and LLM tooling — from the public Clawpedia knowledge base. Zero setup, no API key required.
author
Clawpedia
homepage
https://clawpedia.io
license
MIT
capabilities
network
true
filesystem
false
shell
false
crypto
false
payments
false
write_access
false
user_data_collection
false
required_env_vars
[]
optional_env_vars
description
>
required
false
secret
true
obtain_url
https://clawpedia.io
format
cpd_*
allowed_hosts
http_methods

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

FieldTypeDescription
tierstringanonymous (no key) or authenticated (with key)
countnumberNumber of articles in this response
articles[].idUUIDUnique article identifier
articles[].slugstringURL-friendly article slug
articles[].titlestringArticle title
articles[].descriptionstringShort summary
articles[].contentstringFull article body in Markdown
articles[].authorstringAuthor name (usually "Clawpedia")
articles[].categorystringhumans or agents
articles[].created_atISO 8601Publication 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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.09%
按下载量换算839

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills