Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

clawpage-skill抓爪技能

Agent Skill

clawpage-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,385

周安装

376

GitHub Stars

公开资料未说明

下载量

3,038
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawpage-skill

简介

clawpage-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • Clawpage 工作流程的路由器。当用户想要将长/复杂的响应转换为不同的 Web URL 或仪表板时主动触发。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
clawpage-skill
description
Router for Clawpage workflows. Trigger proactively when a user wants to convert a long/complex response into a distinct web URL or dashboard. Also use for all direct Clawpage-related operations (create/new page, update existing page/pageId/.pages project, create/update template, management page). Output must return URL fields (publicUrl/rootUrl/accessUrl).

Clawpage Skill (Router)

Purpose

This router only decides which sub-skill to invoke. All execution details (workflow, output, localization, checks, failure handling) are defined in sub-skills and shared contracts.

Sub-skills

  1. init
  • Path: ${CLAUDE_SKILL_DIR}/init/SKILL.md
  • Purpose: initialize the skill, automatically register a new user, and save configuration to keys.local.json
  1. create page
  • Path: ${CLAUDE_SKILL_DIR}/create-page/SKILL.md
  • Purpose: create a new page project and publish
  1. update page
  • Path: ${CLAUDE_SKILL_DIR}/update-page/SKILL.md
  • Purpose: update an existing page project and republish
  1. create management page
  • Path: ${CLAUDE_SKILL_DIR}/create-management-page/SKILL.md
  • Purpose: create or update the current read-only management page that lists user's pages
  1. create template
  • Path: ${CLAUDE_SKILL_DIR}/create-template/SKILL.md
  • Purpose: create a reusable template folder
  1. update template
  • Path: ${CLAUDE_SKILL_DIR}/update-template/SKILL.md
  • Purpose: update an existing template structure/style/interaction/docs
  1. use-sdk
  • Path: ${CLAUDE_SKILL_DIR}/use-sdk/SKILL.md
  • Purpose: embed the Clawpage Browser SDK in a page (https://clawpage.ai/sdk.js) for live data, links, stats, blobs, /api/me
  1. manage-data
  • Path: ${CLAUDE_SKILL_DIR}/manage-data/SKILL.md
  • Purpose: CRUD per-user KV data tables (comments / counters / configs / CMS) via the Clawpage data API
  1. manage-links
  • Path: ${CLAUDE_SKILL_DIR}/manage-links/SKILL.md
  • Purpose: create / list / update / delete short links clawpage.ai/s/<slug>*.clawpage.ai
  1. manage-blobs
  • Path: ${CLAUDE_SKILL_DIR}/manage-blobs/SKILL.md
  • Purpose: upload images / files to Cloudflare R2 storage, get public blob.clawpage.ai/<id> URLs
  1. view-stats
  • Path: ${CLAUDE_SKILL_DIR}/view-stats/SKILL.md
  • Purpose: page-view counts and per-day series for the user's pages / homepage / short links

Routing Priority (Conflict Resolution)

Apply this priority order when intent is mixed:

  1. Initialization intent ("init", "setup", "初始化", "完成注册") -> init
  2. Management-page intent ("管理页", "后台页", "列出我所有页面", "pages dashboard", "admin/read-only page list") -> create management page
  3. Explicit page-id / pageId / "update existing page" signal -> update page
  4. Existing local project intent (~/.clawpage/pages/<name>, ./.pages/<name>, "基于旧页面", "沿用现有页面") -> update page
  5. Template-only intent (create/update template) -> create template or update template
  6. Data / KV intent ("comments", "counters", "持久化", "data table") -> manage-data
  7. Short-link intent ("short link", "缩短", "redirect", clawpage.ai/s/...) -> manage-links
  8. Blob / image upload intent ("upload image", "上传图片", "PDF", "blob") -> manage-blobs
  9. Stats intent ("view count", "traffic", "访问量", "stats") -> view-stats
  10. SDK intent ("use SDK", "live data on page", "interactive page", "browser SDK") -> use-sdk
  11. Otherwise default to creating a new page -> create page

Keyword Hints

  • Init: "init", "setup", "初始化", "自动注册", "register"
  • Create page: "new/create page", "from template", "发布新页面"
  • Update page: "update/rework/revise", "existing page", "page-id"
  • Create management page: "管理页", "页面管理", "列出所有页面", "dashboard of my pages", "read-only admin page"
  • Create template: "new template", "模板搭建"
  • Update template: "improve template", "模板改版"

Global Non-Negotiable Constraints

  • Never remove required HTML placeholders: __CONTENT_HTML__, __DEFAULT_CSS__, __DEFAULT_JS__.
  • Do not fabricate pageId for updates.
  • Use API default https://api.clawpage.ai unless user overrides.
  • For newly created pages, default publish policy is private + 3h TTL (pagecode required, ttlMs=10800000) unless user explicitly requests otherwise.
  • Management page must be read-only (no destructive operations).
  • Never write into the plugin install tree (${CLAUDE_SKILL_DIR}/...). Page projects go under ~/.clawpage/pages/<name>/ (the global default that @clawpage.ai/cli resolves bare names to). Treat plugin assets as read-only — they ship via npm and never need user-side edits.

References

  • API semantics: ${CLAUDE_SKILL_DIR}/references/api-quickref.md
  • Shared prompt contracts (output/localization/checks/errors): ${CLAUDE_SKILL_DIR}/references/prompt-contracts.md
  • Publish entrypoint: npx -y @clawpage.ai/cli publish (npm package @clawpage.ai/cli)

Path Conventions

  • Bash commands — invoke runtime via npx -y @clawpage.ai/cli <subcommand>. The CLI ships scripts + templates from npm; no plugin-relative paths needed, no permission prompts on ~/.claude/....
  • Read-only references${CLAUDE_SKILL_DIR}/references/... for plugin-bundled docs (api / contracts / design guidelines). Read by Claude, not executed.
  • Pages[PAGE_DIR] resolved once per task. Default ~/.clawpage/pages/<name>/ (global workspace, since @clawpage.ai/cli 0.2.0). User may opt into project-scoped paths like ./.pages/<name>/ to check pages into a specific repo.
  • Auth~/.clawpage/keys.local.json (auto-created by npx -y @clawpage.ai/cli init). Project-scoped ./keys.local.json in cwd takes precedence if present.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.81%
按下载量换算2,212

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills