From hello-world
A comprehensive example of a Claude Code skill demonstrating input handling, progressive disclosure, and clear behavioral instructions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hello-world:advanced-greetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A comprehensive example of a Claude Code skill demonstrating input handling, progressive disclosure, and clear behavioral instructions.
A comprehensive example of a Claude Code skill demonstrating input handling, progressive disclosure, and clear behavioral instructions.
Greets a specified target with high warmth and professional courtesy. Use this as a reference for implementing your own skills.
$ARGUMENTS: The primary input string. Can contain the name of the person or entity to greet.target: (Optional) Explicitly named parameter if invoked via agent tool-use.Input Resolution:
target parameter was provided by the agent.$ARGUMENTS to find a greeting target.world.Tone Selection:
Greeting Execution:
Hello, [target]! Welcome to the Claude Code plugin ecosystem.For more advanced usage and internal details, see the following:
README.md: Project-level documentation.examples/: Additional usage patterns (if available)./hello-world Alice -> "Hello, Alice! Welcome to the Claude Code plugin ecosystem."/hello-world -> "Hello, world! Welcome to the Claude Code plugin ecosystem."npx claudepluginhub yu-iskw/claude-code-plugin-template --plugin hello-world2plugins reuse this skill
First indexed Mar 21, 2026
Demonstrates a minimal hello-world echo plugin, showing basic command structure, shell execution, argument handling, and stateless operation for plugin developers.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.