Search and install skills from skills.sh and GitHub repos. Use when users ask to find skills, install skills, download skills, add skills from GitHub, search for skills, browse skills, get a skill, or want new capabilities. Trigger phrases include "install skill", "find skill", "search skills", "add skill", "download skill", "get skill from github", "skills.sh", "browse skills", "what skills are available", "I need a skill for".
Searches for and installs Claude skills from skills.sh and GitHub repositories into your project.
npx claudepluginhub moazbuilds/claudeclawThis skill inherits all available tools. When active, it can use any tool Claude has access to.
install.mjssearch.mjsSearch for skills on skills.sh and install them into the project's skills/ directory. Always project level.
Two scripts are provided in this skill's directory:
search.mjsnode ${SKILL_DIR}/search.mjs "<query>"
Returns JSON array of matching skills:
[{"source": "owner/repo", "id": "skill-name", "name": "skill-name", "installs": 1234}]
install.mjsnode ${SKILL_DIR}/install.mjs <owner/repo> <skill-name> <project-skills-dir>
Downloads all skill files from the GitHub repo into <project-skills-dir>/<skill-name>/. Returns:
{"ok": true, "skill": "name", "source": "owner/repo", "path": "/full/path", "files": ["SKILL.md", ...]}
If the user gives a specific repo and skill name, skip to step 3.
Search: Run search.mjs with the user's query. Show the top results as a numbered list with name, repo, and install count. Ask which one they want.
Install: Run install.mjs with the chosen repo, skill name, and the project's skills/ directory path.
Confirm: Show what was installed — skill name, source, files downloaded, and path.
Replace ${SKILL_DIR} with the actual path to this skill's directory when running the scripts.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.