60 lines
1.1 KiB
Markdown
60 lines
1.1 KiB
Markdown
---
|
|
name: Example Skill
|
|
description: Demonstrates how to create a task-specific skill for complex operations
|
|
---
|
|
|
|
# Example Skill
|
|
|
|
This skill provides detailed implementation guidance for a specific complex task.
|
|
|
|
## When to Use This Skill
|
|
|
|
Use this skill when you need to perform multi-step operations that require:
|
|
- Careful sequencing
|
|
- Error handling
|
|
- Domain-specific knowledge
|
|
|
|
## Prerequisites
|
|
|
|
- Required tools or dependencies
|
|
- Environment setup
|
|
- Access permissions
|
|
|
|
## Implementation Steps
|
|
|
|
### Step 1: Initialize
|
|
|
|
Set up the necessary environment and validate prerequisites.
|
|
|
|
```bash
|
|
# Example initialization
|
|
echo "Initializing..."
|
|
```
|
|
|
|
### Step 2: Execute Main Task
|
|
|
|
Perform the core operation with proper error handling.
|
|
|
|
### Step 3: Cleanup
|
|
|
|
Clean up temporary resources and verify completion.
|
|
|
|
## Error Handling
|
|
|
|
- **Error Type 1**: How to handle and recover
|
|
- **Error Type 2**: Alternative approaches
|
|
|
|
## Examples
|
|
|
|
### Example 1: Basic Usage
|
|
|
|
Demonstrates simple case...
|
|
|
|
### Example 2: Advanced Usage
|
|
|
|
Shows complex scenario...
|
|
|
|
## Notes
|
|
|
|
Additional considerations and best practices.
|