원클릭으로
clawhub
Search and install agent skills from ClawHub, the public skill registry.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Search and install agent skills from ClawHub, the public skill registry.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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/.