Example command that demonstrates plugin functionality
Copy the command definition below into:
~/.claude/commands/example-aiskillstore.md---
description: Example command that demonstrates plugin functionality
allowed-tools: Read, Grep, Glob
argument-hint: [optional-arg]
---
# Example Command
This is an example command for your plugin.
## Usage
```bash
/my-plugin:example [optional-arg]
```
## What This Command Does
1. Describe the first step
2. Describe the second step
3. Describe the final step
## Parameters
- **optional-arg**: (Optional) Description of the argument
## Example
When the user runs `/my-plugin:example test`, this command should:
1. Do something with "test"
2. Provide helpful output
3. Complete successfully
## Implementation
Replace this section with your command implementation logic.