Bootstraps a new agent skill with SKILL.md in .agents/skills (local) or ~/.agents/skills (--global), symlinks to .claude/skills for Claude Code discovery.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin paulrberg-agent-skillsThis skill uses the workspace's default tool permissions.
Bootstrap a new agent skill, then symlink it into `.claude/skills/` so Claude Code can discover it.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Bootstrap a new agent skill, then symlink it into .claude/skills/ so Claude Code can discover it.
my-skill). Stop if missing or invalid.--global (optional): install under ~ instead of the current repo.| Mode | Skill source | Claude Code symlink |
|---|---|---|
| local (default) | .agents/skills/<name>/ | .claude/skills/<name> |
--global | ~/.agents/skills/<name>/ | ~/.claude/skills/<name> |
The symlink target is always the relative path ../../.agents/skills/<name> so it resolves correctly in both scopes.
Always fetch the latest spec before authoring frontmatter or content:
Use WebFetch to confirm the current SKILL.md frontmatter schema, naming rules, and conventions. Do not guess — the spec evolves.
<scope>/.agents/skills/<name>/ or <scope>/.claude/skills/<name> already exists.mkdir -p "<scope>/.agents/skills/<name>"
Write <scope>/.agents/skills/<name>/SKILL.md with:
description last.# Title.## Arguments (if any) and ## Workflow sections with concrete steps.Keep it minimal. Add scripts/ or references/ subdirectories only if the workflow needs them.
Always create a relative symlink so Claude Code picks the skill up from its own discovery path:
mkdir -p "<scope>/.claude/skills"
ln -s "../../.agents/skills/<name>" "<scope>/.claude/skills/<name>"
test -f "<scope>/.agents/skills/<name>/SKILL.md"readlink "<scope>/.claude/skills/<name>" resolves to the source directory.description last.