Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:28:20 +08:00
commit 9e41b7cc0d
8 changed files with 745 additions and 0 deletions

View 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]

View File

@@ -0,0 +1,5 @@
{
"name": "plugin-name",
"source": "./plugins/category/plugin-name",
"description": "Brief description of what the plugin does for marketplace listing"
}

View 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"
}
}

View 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]