From odh-ai-helpers
Demonstrates a minimal hello-world echo plugin, showing basic command structure, shell execution, argument handling, and stateless operation for plugin developers.
How this skill is triggered — by the user, by Claude, or both
Slash command
/odh-ai-helpers:hello-world-echoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
odh-ai-helpers:hello-world-echo
odh-ai-helpers:hello-world-echo
/hello-world:echo [name]
The hello-world:echo command prints a greeting message to the console. By default, it prints "Hello world", but when provided with a name argument hello-world:echo $1, it prints "Hello ${1}". This command serves as a basic example of a Claude Code plugin implementation, demonstrating the minimal structure required for a functional plugin command.
It provides a reference implementation for plugin developers. It demonstrates:
The spec sections is inspired by https://man7.org/linux/man-pages/man7/man-pages.7.html#top_of_page
echo statement$1)$1 is provided, outputs "Hello $1"Basic usage (no arguments):
/hello-world:echo
Output:
Hello world
With a name argument:
/hello-world:echo Alice
Output:
Hello Alice
With multiple words as name:
/hello-world:echo "John Doe"
Output:
Hello John Doe
npx claudepluginhub opendatahub-io/skills-registry --plugin odh-ai-helpersCreates 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.