- Added `date_added` field to all skills in frontmatter. - Updated Home page to display skill addition date alongside risk level. - Enhanced Skill Detail page to show date added in a badge format. - Created scripts for managing skill dates, including adding missing dates and generating reports. - Updated validators to enforce date format compliance. - Added comprehensive documentation on date tracking implementation and usage. - Introduced a new skill template including the `date_added` field.
63 lines
1010 B
Markdown
63 lines
1010 B
Markdown
---
|
|
name: your-skill-name
|
|
description: "Brief one-sentence description of what this skill does (under 200 characters)"
|
|
category: your-category
|
|
risk: safe
|
|
source: community
|
|
date_added: "YYYY-MM-DD"
|
|
---
|
|
|
|
# Skill Title
|
|
|
|
## Overview
|
|
|
|
A brief explanation of what this skill does and why it exists.
|
|
2-4 sentences is perfect.
|
|
|
|
## When to Use This Skill
|
|
|
|
- Use when you need to [scenario 1]
|
|
- Use when working with [scenario 2]
|
|
- Use when the user asks about [scenario 3]
|
|
|
|
## How It Works
|
|
|
|
### Step 1: [Action]
|
|
|
|
Detailed instructions...
|
|
|
|
### Step 2: [Action]
|
|
|
|
More instructions...
|
|
|
|
## Examples
|
|
|
|
### Example 1: [Use Case]
|
|
|
|
\`\`\`javascript
|
|
// Example code
|
|
\`\`\`
|
|
|
|
### Example 2: [Another Use Case]
|
|
|
|
\`\`\`javascript
|
|
// More code
|
|
\`\`\`
|
|
|
|
## Best Practices
|
|
|
|
- ✅ Do this
|
|
- ✅ Also do this
|
|
- ❌ Don't do this
|
|
- ❌ Avoid this
|
|
|
|
## Common Pitfalls
|
|
|
|
- **Problem:** Description
|
|
**Solution:** How to fix it
|
|
|
|
## Related Skills
|
|
|
|
- `@other-skill` - When to use this instead
|
|
- `@complementary-skill` - How this works together
|