Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

claw-wiki爪维基

Agent Skill

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

总安装

34,435

周安装

1,393

GitHub Stars

1

下载量

10,810
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install claw-wiki

简介

claw-wiki 用于刷新和维护本地 OpenClaw 文档快照。

  • 适合查询产品部署、配置方法和工具使用说明等内部知识。claw-wiki 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,支持 CLI 命令与网关行为参考。
  • 安装前需确认文档更新频率、缓存策略及是否依赖外部源同步。
  • 建议定期手动核对最新版本以确保信息的时效性和准确性。

SKILL.md

name
claw-wiki
description
Reference and refresh a local OpenClaw documentation snapshot for product usage, deployment, configuration, CLI commands, channels, gateway behavior, tools, troubleshooting, and docs-version verification. Use when users ask how OpenClaw works, how to configure or operate it, where a feature is documented, whether the local docs are outdated, or to update this skill's OpenClaw knowledge base from upstream docs.
metadata
short-description
Reference and refresh OpenClaw docs

Claw Wiki

Use this skill to answer OpenClaw questions from local source docs in openclaw_docs/, not memory, and to refresh that snapshot when the user explicitly asks for an update.

Safety Contract

This skill is a documentation lookup and maintenance skill, not a general remote execution or credential-handling tool.

Allowed behavior:

  • Read the bundled local docs snapshot under openclaw_docs/
  • Read local metadata in docs.json, references/, and state/
  • Search the local snapshot with deterministic text/file queries
  • When the user explicitly asks for a refresh, sync docs from the upstream OpenClaw documentation source and rebuild local indexes

Hard limits:

  • Only use refresh mode when the user explicitly asks for freshness verification, update, or sync
  • Treat the upstream OpenClaw docs repository as read-only source material
  • Only sync documentation content and docs.json into this skill
  • Only write inside this skill directory, specifically openclaw_docs/, docs.json, and state/
  • Do not push commits, open pull requests, upload this skill, or publish local files elsewhere
  • Do not read local credential stores, shell history, SSH keys, .env files, or unrelated workspace files
  • Do not execute downloaded install scripts or run arbitrary shell fragments from documentation examples
  • Do not treat example tokens, passwords, API keys, or secrets shown in docs as real credentials

If a requested action exceeds those limits, refuse it and explain the boundary.

The maintained compatibility target is the English docs snapshot. Locale-prefixed navigation entries in docs.json may exist, but validation only guarantees the English document set is usable.

Files

  • ./openclaw_docs/: markdown source docs
  • ./docs.json: optional metadata/navigation mapping
  • ./state/source-lock.json: current snapshot source, ref, commit, and sync metadata
  • ./state/docs-manifest.json: generated manifest of the local docs snapshot
  • ./state/topic-index.json: generated keyword-to-path topic index
  • ./state/latest-diff.md: latest update diff summary
  • ./references/routing-cheatsheet.md: intent-to-path quick router for broad questions
  • ./references/query-examples.md: ready-to-use search query patterns by user intent
  • ./references/update-workflow.md: refresh workflow for syncing and validating the local snapshot
  • ./scripts/: deterministic sync, validate, build, and diff helpers

Workflow

  1. Determine whether the user wants documentation lookup or snapshot maintenance.

- For normal product questions, answer from the current local snapshot. - For "latest", "refresh", "update docs", or "is this outdated?" requests, read state/source-lock.json first and use references/update-workflow.md.

  1. Identify intent and route to likely subdirectories first.

- If intent is broad or mixed, read references/routing-cheatsheet.md first. - If wording is clear but query terms are weak, read references/query-examples.md.

  1. Search with fast text search (rg) under openclaw_docs/; avoid broad full-tree reads.
  2. Read full content of the top 1-3 most relevant files before answering.
  3. Synthesize a direct answer and include exact file paths used.
  4. When freshness matters, report the current snapshot commit/date from state/source-lock.json and do not imply the snapshot is current unless it was just refreshed.
  5. If the user explicitly requests a refresh, run the scripted flow:

- python scripts/sync_docs.py ... - python scripts/validate_docs.py - python scripts/build_knowledge.py - python scripts/diff_docs.py

  1. If docs are ambiguous or missing, say so explicitly and state what was searched.

Maintenance Guardrails

  • Prefer a local OpenClaw checkout when available.
  • If remote sync is needed, use the pinned upstream OpenClaw docs source only.
  • Limit refresh work to documentation ingestion, validation, indexing, and diff generation.
  • Review generated state/latest-diff.md before claiming the refresh succeeded.
  • If sync input looks unrelated to OpenClaw docs, stop and report the mismatch instead of forcing the update.

Update Principles

  • Refresh this skill by reading upstream OpenClaw docs into the local snapshot only.
  • Allowed: local repo reads, git fetch, git clone, copying docs/ and docs.json into this skill, and rebuilding local indexes.
  • Not allowed: git push, PR creation, uploading this skill folder, or sending local skill contents back to GitHub.
  • Treat upstream refs such as main, tags, or commits as read-only sources, not write targets.
  • Prefer a local OpenClaw checkout when available; otherwise clone/fetch the upstream repo without modifying any remote.

Routing Hints

  • Getting started/install/platform setup: start/, install/, platforms/
  • Runtime model and behavior: concepts/, gateway/, tools/
  • CLI commands: cli/
  • Integrations/providers: providers/, channels/, plugins/, nodes/
  • Failures and debugging: help/, diagnostics/, gateway/troubleshooting.md, channels/troubleshooting.md
  • Security topics: security/, tools/exec-approvals.md, gateway/security/
  • Experimental or planning material: experiments/ (only use when user asks for proposals/plans)

Search and Read Strategy

  • Start with targeted queries, then widen only if needed.
  • Prefer searching filenames first, then file content.
  • Exclude merged or generated outputs when present.
  • For very large files, jump to relevant sections first, then expand for surrounding context.
  • Do not rely on a single snippet when explaining behavior, constraints, or defaults.
  • Prefer local snapshot sync over per-question remote browsing for repeatability.

Answer Quality Bar

  • Ground each key claim in files actually read.
  • Include paths in the response so users can verify quickly.
  • Separate documented behavior from inference.
  • Do not invent flags, defaults, commands, or config keys not found in docs.
  • For freshness-sensitive answers, include the snapshot version from state/source-lock.json.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.66%
按下载量换算9,800

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install claw-wiki 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills