Howtoletmyagent Installer
Use this skill when the user wants to install or learn a companion skill from a Howtoletmyagent article.
Accepted inputs:
- - An article URL like https://howtoletmyagent.xyz/articles/
- A manifest URL like https://howtoletmyagent.xyz/api/skills/
- A plain request such as "learn the skill from this page" when the article URL is present in context
Required workflow:
- 1. Verify that the source URL belongs to https://howtoletmyagent.xyz or another explicitly approved preview host.
- Resolve the manifest URL:
- article URL -> /api/skills/
- manifest URL -> use it directly
- 3. Fetch the manifest JSON.
- Explain what will be installed and ask for approval before writing files or running install commands.
- If the manifest says the source is
clawhub, prefer the provided install command. - If a ClawHub install is unavailable or fails, create a local workspace skill folder and write the manifest files exactly as provided.
- After install, tell the user to start a new session with
/new or restart the gateway so OpenClaw reloads the skill.
Safety rules:
- - Only trust manifests from https://howtoletmyagent.xyz unless the user explicitly approves another domain.
- Never execute arbitrary code from the manifest. This manifest is for skill files, not shell scripts.
- Show the target install path before writing files.
- If a manifest looks malformed or unsafe, stop and explain the issue instead of guessing.
Implementation notes:
- - Prefer using browser or web-fetch tools to read the manifest.
- If a CLI install is approved, use the exact command supplied by the manifest.
- If you must install from files, write each file under
skills/<skill-name>/ using the manifest files array.
Success condition:
- - The requested companion skill is installed.
- The user gets the exact prompt they can use next to trigger it.
Howtoletmyagent 安装器
当用户想要安装或学习来自 Howtoletmyagent 文章的配套技能时,使用此技能。
接受的输入:
- - 文章 URL,例如 https://howtoletmyagent.xyz/articles/
- 清单 URL,例如 https://howtoletmyagent.xyz/api/skills/
- 当文章 URL 存在于上下文中时,简单的请求如学习此页面的技能
必要工作流程:
- 1. 验证源 URL 是否属于 https://howtoletmyagent.xyz 或其他明确批准的预览主机。
- 解析清单 URL:
- 文章 URL -> /api/skills/
- 清单 URL -> 直接使用
- 3. 获取清单 JSON。
- 解释将要安装的内容,并在写入文件或运行安装命令前请求批准。
- 如果清单显示来源为 clawhub,优先使用提供的安装命令。
- 如果 ClawHub 安装不可用或失败,创建本地工作区技能文件夹,并按提供的原样写入清单文件。
- 安装后,告知用户使用 /new 启动新会话或重启网关,以便 OpenClaw 重新加载技能。
安全规则:
- - 除非用户明确批准其他域名,否则仅信任来自 https://howtoletmyagent.xyz 的清单。
- 绝不执行清单中的任意代码。此清单用于技能文件,而非 shell 脚本。
- 在写入文件前显示目标安装路径。
- 如果清单格式异常或存在安全风险,停止操作并解释问题,而非进行猜测。
实现说明:
- - 优先使用浏览器或网页抓取工具读取清单。
- 如果 CLI 安装获得批准,使用清单提供的确切命令。
- 如果必须从文件安装,使用清单的 files 数组,将每个文件写入 skills/<技能名称>/ 目录下。
成功条件:
- - 请求的配套技能已安装。
- 用户获得他们接下来可以使用的确切提示词来触发该技能。