From hello-world
Prints a greeting message to the console. Accepts an optional name argument to customize the output, serving as a minimal example of a plugin command implementation.
How this command is triggered — by the user, by Claude, or both
Slash command
/hello-world:echo [name]The summary Claude sees in its command listing — used to decide when to auto-load this command
## Name
hello-world:echo
## Synopsis
## Description
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:
- Basic command structure
- Shell command execution within a plugin
- Handling arguments
- Minimal configurat...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"Implementation logic:
if [ -n "$1" ]; then
echo "Hello $1"
else
echo "Hello world"
fi
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
$1: The name to be printed "Hello ${1}"24plugins reuse this command
First indexed Feb 15, 2026
Showing the 6 earliest of 24 plugins
npx claudepluginhub rausingh-rh/ai-helpers --plugin hello-world/helloGreets the user with a personalized or generic message and explains Claude Code's plugin capabilities as a demonstration.