con un clic
clawhub
Search and install agent skills from ClawHub, the public skill registry.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Search and install agent skills from ClawHub, the public skill registry.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Schedule reminders and recurring tasks. Actions: add, list, remove or set_context.
Periodic wake-up service that checks HEARTBEAT.md for pending tasks and executes them automatically. Use this skill to write or update HEARTBEAT.md.
Private knowledge base for indexing multimodal files or folders into a knowledge graph, supporting multi-hop graph retrieval
Generate wiki docs + Mermaid diagrams for any codebase. Use when the user asks to document a codebase, generate architecture diagrams, or create a structured wiki for a repo.
Parse an image from a file path to obtain a description, enabling non-multimodal LLMs to have vision capabilities.
When the user needs to transcribe video (such as .mp4, .mkv, .avi) into text, use the python_repl tool to generate text.
| name | clawhub |
| description | Search and install agent skills from ClawHub, the public skill registry. |
Public skill registry for AI agents. Search by natural language (vector search). homepage: https://skillhub.tencent.com mirror: https://clawhub.ai
Use this skill when the user asks any of:
npx --yes clawhub@latest search "web scraping" --limit 5
Use the Python helper to resolve the project root path automatically:
from skills.builtin.core.clawhub.scripts import run_clawhub_command
result = run_clawhub_command(["install", "<slug>", "--workdir", "{{ROOT_DIR}}", "--dir", "plugins"])
Replace <slug> with the skill name from search results. This places the skill into {{ROOT_DIR}}/skills/plugins/, keeping third-party skills separate from built-in ones.
Note: The
--dir pluginsflag ensures third-party skills go intoskills/plugins/instead of the rootskills/.
from skills.builtin.core.clawhub.scripts import run_clawhub_command
result = run_clawhub_command(["update", "--all", "--workdir", "{{ROOT_DIR}}", "--dir", "plugins"])
from skills.builtin.core.clawhub.scripts import run_clawhub_command
result = run_clawhub_command(["list", "--workdir", "{{ROOT_DIR}}", "--dir", "plugins"])
npx comes with it).npx --yes clawhub@latest login) is only required for publishing.{{ROOT_DIR}} is automatically replaced with the actual project root path by the Python helper.--dir plugins flag is passed automatically in all documented commands to install third-party skills under skills/plugins/ instead of the flat skills/.