Skills howtoletmyagent_installer
Install companion OpenClaw skills from howtoletmyagent.xyz article URLs or skill manifests.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bullkis1/howtoletmyagent-installer" ~/.claude/skills/clawdbot-skills-howtoletmyagent-installer && rm -rf "$T"
manifest:
skills/bullkis1/howtoletmyagent-installer/SKILL.mdsource content
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/<slug>
- A manifest URL like https://howtoletmyagent.xyz/api/skills/<slug>
- A plain request such as "learn the skill from this page" when the article URL is present in context
Required workflow:
- Verify that the source URL belongs to https://howtoletmyagent.xyz or another explicitly approved preview host.
- Resolve the manifest URL:
- article URL -> /api/skills/<slug>
- manifest URL -> use it directly
- 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
, prefer the provided install command.clawhub - 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
or restart the gateway so OpenClaw reloads the skill./new
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
using the manifestskills/<skill-name>/
array.files
Success condition:
- The requested companion skill is installed.
- The user gets the exact prompt they can use next to trigger it.