Initial commit
This commit is contained in:
57
skills/plugin-builder/resources/command-template.md
Normal file
57
skills/plugin-builder/resources/command-template.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# Command Name
|
||||
|
||||
[Brief description of what this command does - 1-2 sentences]
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
/command-name [required-arg] [optional-arg]
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
- `required-arg`: Description of the required argument and what it should be
|
||||
- `optional-arg`: Description of optional argument (if any)
|
||||
|
||||
## Examples
|
||||
|
||||
### Example 1: Basic Usage
|
||||
```
|
||||
/command-name example-value
|
||||
```
|
||||
[Description of what happens]
|
||||
|
||||
### Example 2: Advanced Usage
|
||||
```
|
||||
/command-name example-value optional-value
|
||||
```
|
||||
[Description of what happens with optional argument]
|
||||
|
||||
## Instructions for Claude
|
||||
|
||||
When this command is invoked, you should:
|
||||
|
||||
1. [First action to take]
|
||||
2. [Second action]
|
||||
3. [Third action]
|
||||
4. [Final action]
|
||||
|
||||
### Validation
|
||||
|
||||
Before executing:
|
||||
- [Check this condition]
|
||||
- [Verify that requirement]
|
||||
|
||||
### Error Handling
|
||||
|
||||
If [error condition]:
|
||||
- [How to handle it]
|
||||
|
||||
If [another error]:
|
||||
- [Resolution steps]
|
||||
|
||||
## Notes
|
||||
|
||||
- [Important note about usage]
|
||||
- [Limitation or constraint]
|
||||
- [Related commands or skills]
|
||||
Reference in New Issue
Block a user