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]
|
||||
5
skills/plugin-builder/resources/marketplace-entry.json
Normal file
5
skills/plugin-builder/resources/marketplace-entry.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "plugin-name",
|
||||
"source": "./plugins/category/plugin-name",
|
||||
"description": "Brief description of what the plugin does for marketplace listing"
|
||||
}
|
||||
9
skills/plugin-builder/resources/plugin-template.json
Normal file
9
skills/plugin-builder/resources/plugin-template.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "plugin-name",
|
||||
"description": "Clear, concise description of plugin functionality (1-2 sentences)",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Author Name",
|
||||
"email": "author@example.com"
|
||||
}
|
||||
}
|
||||
86
skills/plugin-builder/resources/skill-template.md
Normal file
86
skills/plugin-builder/resources/skill-template.md
Normal file
@@ -0,0 +1,86 @@
|
||||
# Skill Name
|
||||
|
||||
## Purpose
|
||||
|
||||
[1-2 sentences describing what this skill does and its main value proposition]
|
||||
|
||||
## When to Use
|
||||
|
||||
Use this skill when:
|
||||
- [Specific scenario 1]
|
||||
- [Specific scenario 2]
|
||||
- [Specific scenario 3]
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- [Required tool, library, or dependency]
|
||||
- [Necessary permission or access]
|
||||
- [Context or information needed]
|
||||
|
||||
## Instructions
|
||||
|
||||
### Step 1: [First Major Task]
|
||||
|
||||
[Detailed step-by-step instructions for the first major task]
|
||||
|
||||
1. [Specific action]
|
||||
2. [Next action]
|
||||
3. [Final action]
|
||||
|
||||
### Step 2: [Second Major Task]
|
||||
|
||||
[Detailed instructions for the second task]
|
||||
|
||||
1. [Action]
|
||||
2. [Action]
|
||||
|
||||
[Continue with additional steps as needed...]
|
||||
|
||||
## Examples
|
||||
|
||||
### Example 1: [Concrete Use Case Name]
|
||||
|
||||
**Scenario:** [Brief description of the scenario]
|
||||
|
||||
**Input:**
|
||||
```
|
||||
[Example input data/code]
|
||||
```
|
||||
|
||||
**Steps:**
|
||||
1. [What to do]
|
||||
2. [Next step]
|
||||
|
||||
**Output:**
|
||||
```
|
||||
[Expected output]
|
||||
```
|
||||
|
||||
### Example 2: [Another Use Case]
|
||||
|
||||
[Another complete example showing different aspect of the skill]
|
||||
|
||||
## Best Practices
|
||||
|
||||
- [Specific practice related to this skill]
|
||||
- [Another important practice]
|
||||
- [Third practice]
|
||||
- [Fourth practice]
|
||||
|
||||
## Common Issues
|
||||
|
||||
### Issue 1: [Problem Description]
|
||||
**Problem:** [Detailed description of the issue]
|
||||
|
||||
**Solution:** [How to resolve it]
|
||||
|
||||
### Issue 2: [Another Problem]
|
||||
**Problem:** [Description]
|
||||
|
||||
**Solution:** [Resolution steps]
|
||||
|
||||
## Additional Resources
|
||||
|
||||
- [Link to related documentation]
|
||||
- [Reference to related skills]
|
||||
- [External resources if applicable]
|
||||
Reference in New Issue
Block a user