npx claudepluginhub bloknayrb/claudestuff --plugin example-pluginThis skill uses the workspace's default tool permissions.
This is an example skill that demonstrates how to package specialized knowledge and capabilities.
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.
This is an example skill that demonstrates how to package specialized knowledge and capabilities.
This skill provides guidance on writing clean, maintainable Python code following PEP 8 standards.
Naming Conventions:
snake_case for functions and variablesPascalCase for class namesUPPER_CASE for constantsFunction Design:
Documentation:
# Good: Clear, single responsibility
def calculate_total_price(items: list[dict]) -> float:
"""Calculate the total price of items including tax."""
subtotal = sum(item['price'] for item in items)
tax = subtotal * 0.08
return subtotal + tax
# Bad: Multiple responsibilities, unclear name
def process(data):
total = 0
for item in data:
total += item['price']
tax = total * 0.08
print(f"Total: {total + tax}")
return total + tax
When this skill is active, apply these principles when: