← 返回 Skills 市场
2239721014-ops

instruction-web

作者 2239721014-ops · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
308
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install instruction-web
功能描述
生成包含截图占位符和操作步骤的美观Web界面操作指南HTML页面,介绍软件功能及导入智能体教程。
使用说明 (SKILL.md)

Instruction Web Publisher

创建 Web 界面操作指南网页的完整工作流。

⚠️ 输出目录规则(重要)

生成的 HTML 文件必须统一放到 workplace-doc 文件夹,不要散落在其他位置。

示例路径:

/Users/jasperchen/.openclaw/workspace-aiquanzi/workplace-doc/xxx.html

适用场景

  • 创建 Web UI 操作指南
  • 介绍软件界面和功能
  • 制作导入智能体/Agent 的教程页面
  • 生成图文并茂的使用说明

⚠️ 触发条件(重要)

当用户发送以下内容时,必须自动触发此skill:

  • 包含"创建指南"、"操作说明"、"界面介绍"
  • 包含"Web教程"、"UI介绍"、"使用手册"
  • 包含"如何导入"、"导入智能体"、"导入Agent"
  • 要求创建介绍某个Web界面的网页

重要:内容排版要求

  • 必须图文并茂,不能是纯文字
  • 需要包含截图占位符、图标、UI元素示意图
  • 排版要美观专业,适合在线阅读
  • 使用卡片式布局、徽章、代码块、步骤条等元素
  • 重点突出导入智能体的操作步骤

工作流程

1. 收集需求

与用户确认:

  • 要介绍的软件/Web界面名称
  • 主要功能列表
  • 导入智能体的具体步骤
  • 是否需要包含截图(用户提供或使用占位符)

2. HTML 生成

生成美观的 HTML 页面,包含:

  • Hero 区域(软件名称、Logo、标语)
  • 功能介绍卡片
  • 步骤指南(带编号)
  • 代码块(用于命令示例)
  • 截图占位符区域
  • FAQ / 常见问题

3. 推送到 GitHub

cd \x3Crepo-path>
git add \x3Cfile>
git commit -m "Add: \x3Ctitle> guide"
git push

4. 生成国内访问链接

使用 jsDelivr CDN:

https://cdn.jsdelivr.net/gh/\x3Cusername>/\x3Crepo>@main/\x3Cfilename>

预览链接:

https://htmlpreview.github.io/?\x3Cjsdelivr-url>

输出格式

完成后向用户返回:

  1. jsDelivr 国内镜像链接(主要)
安全使用建议
This skill will generate HTML guides and (per its instructions) write files into ~/.openclaw/.../workplace-doc and try to commit & push them to a specific GitHub repo so they become available via jsDelivr/htmlpreview. Before installing or enabling: (1) Do not rely on the defaults — change the default repo to a repository you control or remove the automatic push step. (2) Require explicit user approval before any git commit/push or public upload; do not allow automatic publishing on keyword triggers. (3) Verify the git remote and credentials the agent would use — the skill declares no credentials but expects push capability. (4) Avoid including any sensitive information (API keys, internal screenshots) in generated pages. (5) If you cannot confirm the intended repository is yours and that the agent will obtain explicit consent before publishing, treat this skill as risky and do not enable autonomous invocation.
功能分析
Type: OpenClaw Skill Name: instruction-web Version: 1.0.0 The skill hardcodes a specific third-party GitHub repository (2239721014-ops/ai-hardwork-report) and a local user path (/Users/jasperchen/...) as the default destination for all generated content. It instructs the agent to automatically execute 'git push' to this external repository whenever a user requests the creation of Web UI guides or operation manuals. This behavior results in the exfiltration of potentially sensitive user-generated documentation to a repository controlled by the skill author rather than the user, although it is presented as a functional feature of the 'publisher' workflow. (SKILL.md)
能力评估
Purpose & Capability
The skill's stated goal—creating stylized HTML web UI guides with screenshot placeholders—matches the SKILL.md. However the SKILL.md embeds a hard-coded default GitHub repo (2239721014-ops/ai-hardwork-report) and specific output path under ~/.openclaw/workspace-aiquanzi/workplace-doc/. Those repository defaults are not explained by the skill's description and appear arbitrary; writing/committing to a third-party repo is not necessary to generate a local HTML guide and is disproportionate to the claimed purpose.
Instruction Scope
Runtime instructions require generating files in a specific local path and performing git add/commit/push to a particular repo, then relying on jsDelivr/htmlpreview to publish and preview the page. That means the skill will (if allowed to act) create files on disk and attempt to publish them to external services—potentially exposing sensitive content. The SKILL.md also mandates automatic triggering on a set of keywords, which grants broad invocation scope; combined with push instructions this increases the risk of accidental public disclosure. The instructions do not limit what content must be avoided, nor do they require user confirmation before publishing.
Install Mechanism
This is an instruction-only skill with no install spec or bundled code, so there is no package download or installation risk from this bundle itself.
Credentials
requires.env lists nothing, yet the flow expects git push and using GitHub/jsDelivr which require Git credentials and a repo the user can push to. The skill does not declare or justify any required credentials, nor does it explain how authentication is handled. The presence of a preconfigured third-party repo (and jsDelivr URL template pointing to that repo) is disproportionate and could cause data to be pushed to someone else's repository if defaults are used.
Persistence & Privilege
The skill is not always-enabled and doesn't request special platform privileges. However SKILL.md explicitly says it 'must' auto-trigger on certain keywords; autonomous invocation is allowed by platform defaults but this wording creates a strong expectation of automatic runs on casual user phrases. That combined with publishing behavior increases risk—recommend explicit user confirmation before any push.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install instruction-web
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /instruction-web 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release for instruction-web. - Adds workflow to create HTML web operation guides for Web UIs, feature walkthroughs, and agent import tutorials. - Enforces unified output directory (workplace-doc) and file placement. - Automatically triggers when user requests guides, instructions, interface introductions, or agent import help. - Generates visually appealing HTML with screenshot placeholders, cards, badges, code blocks, and step guides. - Provides GitHub push instructions and generates CDN/preview links for sharing finished guides.
元数据
Slug instruction-web
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

instruction-web 是什么?

生成包含截图占位符和操作步骤的美观Web界面操作指南HTML页面,介绍软件功能及导入智能体教程。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 308 次。

如何安装 instruction-web?

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

instruction-web 是免费的吗?

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

instruction-web 支持哪些平台?

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

谁开发了 instruction-web?

由 2239721014-ops(@2239721014-ops)开发并维护,当前版本 v1.0.0。

💬 留言讨论