This skill should be used when the user asks to "demonstrate advanced skill structure", "show comprehensive skill patterns", "create skill with references", or needs a complete skill example with bundled resources. Showcases progressive disclosure and resource organization.
Demonstrates comprehensive skill structure with progressive disclosure and organized resources.
npx claudepluginhub karchtho/my-claude-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/basic-usage.shreferences/detailed-patterns.mdThis skill demonstrates a comprehensive skill structure with all optional components: references, examples, and scripts.
Showcase best practices for organizing complex skills:
Keep SKILL.md lean by moving detailed content to references:
Organize skill resources by purpose:
For detailed guidance, consult:
references/detailed-patterns.md - Comprehensive implementation patternsreferences/advanced-techniques.md - Advanced techniques and edge casesreferences/api-reference.md - Complete API documentationWorking examples in examples/:
examples/basic-usage.sh - Basic usage exampleexamples/advanced-config.json - Advanced configuration exampleHelper scripts in scripts/:
scripts/validate.sh - Validation utilityscripts/generate.py - Code generation scriptUse this comprehensive pattern when:
This pattern ensures minimal context bloat while making detailed information discoverable when needed.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
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.