Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:01:50 +08:00
commit 3cb302191f
6 changed files with 186 additions and 0 deletions

27
commands/hello.md Normal file
View File

@@ -0,0 +1,27 @@
---
description: A simple hello world command demonstrating basic command structure
---
# Hello World Command
This is a minimal example command that demonstrates the basic structure of commands in Claude Code plugins.
## Usage
When a user invokes `/hello`, respond with a friendly greeting and explain that this is an example command.
## What to Do
1. Greet the user warmly
2. Explain that this is a template command
3. Suggest they can customize it for their own needs
## Example Response
"Hello! This is a simple example command that demonstrates how commands work in Claude Code plugins. You can use this as a template to create your own commands by:
1. Creating a new `.md` file in the `commands/` directory
2. Adding YAML frontmatter with a description
3. Writing instructions for Claude on how to respond
The filename becomes the command name (e.g., `hello.md``/hello`)."