| name | skillhub |
| description | Search, browse, and install AI agent skills from the SkillHub marketplace using `npx @skill-hub/cli`. Supports trending, leaderboard, search, and install to various agents. |
SkillHub Marketplace
Use npx @skill-hub/cli to interact with the SkillHub skill marketplace.
Browse Popular Skills
Show trending skills:
npx @skill-hub/cli trending --limit 10 --json --no-select
Show all-time top skills (leaderboard):
npx @skill-hub/cli top --limit 10 --json --no-select
Show recently added skills:
npx @skill-hub/cli latest --limit 10 --json --no-select
Search Skills
Search by keyword:
npx @skill-hub/cli search "code review" --limit 10 --json --no-select
Search with category filter:
npx @skill-hub/cli search "testing" --category development --json --no-select
Install Skills
Install a skill for Claude:
npx @skill-hub/cli install SKILL_NAME --agent claude --yes
Supported agents: claude, cursor, codex, gemini, copilot, windsurf, cline, roo, opencode
After Install: Register to SkillForge
npx @skill-hub/cli install ... --agent claude only puts the skill into
SkillHub's local workspace. To make it visible to SkillForge (dashboard,
t_skill catalog, future agent turns), you MUST call:
ImportSkill({
sourcePath: "<absolute path to the SkillHub workspace dir containing SKILL.md>",
source: "skillhub"
})
Without this step, the skill stays in SkillHub's workspace only and SkillForge
cannot dispatch it on subsequent turns. Run ImportSkill immediately after a
successful install.
Important Notes
- Always use
--json flag for structured output
- Always use
--no-select to skip interactive prompts
- Use
trending or top to find popular skills — do NOT search with multiple keywords repeatedly