diff --git a/README.md b/README.md index 96651c9f..75a7fc41 100644 --- a/README.md +++ b/README.md @@ -369,8 +369,9 @@ We welcome contributions from the community! To add a new skill: 1. **Fork** the repository. 2. **Create a new directory** inside `skills/` for your skill. 3. **Add a `SKILL.md`** with the required frontmatter (name, description, risk, source). See [docs/SKILL_ANATOMY.md](docs/SKILL_ANATOMY.md) and [docs/QUALITY_BAR.md](docs/QUALITY_BAR.md). -4. **Run validation**: `npm run validate` (or `npm run validate:strict` for CI). Optionally run `python3 scripts/validate_references.py` if you touch workflows or bundles. -5. **Submit a Pull Request**. +4. **Add date tracking** (optional): Include `date_added: "YYYY-MM-DD"` in frontmatter. See [docs/SKILLS_DATE_TRACKING.md](docs/SKILLS_DATE_TRACKING.md) for details. +5. **Run validation**: `npm run validate` (or `npm run validate:strict` for CI). Optionally run `python3 scripts/validate_references.py` if you touch workflows or bundles. +6. **Submit a Pull Request**. Please ensure your skill follows the Antigravity/Claude Code best practices. Maintainers: see [docs/AUDIT.md](docs/AUDIT.md) for coherence checks and [.github/MAINTENANCE.md](.github/MAINTENANCE.md) for the full validation chain. diff --git a/docs/DATE_TRACKING_IMPLEMENTATION.md b/docs/DATE_TRACKING_IMPLEMENTATION.md new file mode 100644 index 00000000..7eaf7d94 --- /dev/null +++ b/docs/DATE_TRACKING_IMPLEMENTATION.md @@ -0,0 +1,156 @@ +# Date Tracking Implementation Summary + +## āœ… What Was Implemented + +### 1. **Frontmatter Template Update** +All 946 skills now have the `date_added: "2025-02-26"` field in their `SKILL.md` frontmatter: + +```yaml +--- +name: skill-name +description: "Description" +date_added: "2025-02-26" +--- +``` + +### 2. **Web App Integration** + +#### **Home Page (Skill List Cards)** +- Each skill card now displays a small date badge: `šŸ“… YYYY-MM-DD` +- Shows alongside the risk level +- Clean, compact format in the bottom metadata section + +Example card now shows: +``` +Risk: safe šŸ“… 2025-02-26 +``` + +#### **Skill Detail Page** +- Date appears as a green badge near the top with other metadata +- Format: `šŸ“… Added YYYY-MM-DD` +- Shown alongside Category, Source, and Star buttons + +### 3. **Validators Updated** +Both validators now accept and validate the `date_added` field: + +- **validate-skills.js**: Added to `ALLOWED_FIELDS` +- **validate_skills.py**: Added YYYY-MM-DD format validation + - Warns (dev mode) or fails (strict mode) on missing dates + - Validates format strictly + +### 4. **Index Generation** +- **generate_index.py** updated to include `date_added` in `skills.json` +- All 946 skills now have dates in the web app index +- Dates are properly exported to web app's `/public/skills.json` + +### 5. **Documentation** +- **SKILL_TEMPLATE.md**: New template for creating skills with date field included +- **SKILLS_DATE_TRACKING.md**: Complete usage guide for date management +- **SKILL_ANATOMY.md**: Updated with date_added field documentation +- **README.md**: Updated contribution guide to mention date tracking + +### 6. **Script Tools** +āœ… All scripts handle UTF-8 encoding on Windows: + +- **manage_skill_dates.py**: Add, update, list skill dates +- **generate_skills_report.py**: Generate JSON report with dates +- Both handle emoji output correctly on Windows + +## šŸ“Š Current Status + +- āœ… **946/946 skills** have `date_added: "2025-02-26"` +- āœ… **100% coverage** of date tracking +- āœ… **Web app displays dates** on all skill cards +- āœ… **Validators enforce format** (YYYY-MM-DD) +- āœ… **Reports available** via CLI tools + +## šŸŽØ UI Changes + +### Skill Card (Home Page) +Before: +``` +Risk: safe +``` + +After: +``` +Risk: safe šŸ“… 2025-02-26 +``` + +### Skill Detail Page +Before: +``` +[Category] [Source] [Stars] +``` + +After: +``` +[Category] [Source] [šŸ“… Added 2025-02-26] [Stars] +``` + +## šŸ“ Using the Date Field + +### For New Skills +Create with template: +```bash +cp docs/SKILL_TEMPLATE.md skills/my-new-skill/SKILL.md +# Edit the template and set date_added to today's date +``` + +### For Existing Skills +Use the management script: +```bash +# Add missing dates +python scripts/manage_skill_dates.py add-missing --date 2025-02-26 + +# Update a single skill +python scripts/manage_skill_dates.py update skill-name 2025-02-26 + +# List all with dates +python scripts/manage_skill_dates.py list + +# Generate report +python scripts/generate_skills_report.py --output report.json +``` + +## šŸ”§ Technical Details + +### Files Modified +1. `scripts/generate_index.py` - Added date_added parsing +2. `scripts/validate-skills.js` - Added to allowed fields +3. `scripts/validate_skills.py` - Added format validation +4. `web-app/src/pages/Home.jsx` - Display date in cards +5. `web-app/src/pages/SkillDetail.jsx` - Display date in detail +6. `README.md` - Updated contribution guide +7. `docs/SKILL_ANATOMY.md` - Documented date_added field + +### New Files Created +1. `docs/SKILL_TEMPLATE.md` - Skill creation template +2. `docs/SKILLS_DATE_TRACKING.md` - Comprehensive guide +3. `scripts/manage_skill_dates.py` - Date management CLI +4. `scripts/generate_skills_report.py` - Report generation + +## šŸš€ Next Steps + +1. **In Web App**: Skills now show creation dates automatically +2. **For Analytics**: Use report script to track skill growth over time +3. **For Contributions**: Include date_added in new skill PRs +4. **For Maintenance**: Run validators to ensure date format compliance + +## šŸ“ˆ Reporting Examples + +Get a JSON report sorted by date: +```bash +python scripts/generate_skills_report.py --output skills_by_date.json +``` + +Output includes: +- Total skills count +- Skills with/without dates +- Coverage percentage +- Full skill metadata with dates +- Sortable by date or name + +--- + +**Date Feature Ready!** šŸŽ‰ All skills now track when they were added to the collection. diff --git a/docs/SKILLS_DATE_TRACKING.md b/docs/SKILLS_DATE_TRACKING.md new file mode 100644 index 00000000..880f228e --- /dev/null +++ b/docs/SKILLS_DATE_TRACKING.md @@ -0,0 +1,221 @@ +# Skills Date Tracking Guide + +This guide explains how to use the new `date_added` feature for tracking when skills were created or added to the collection. + +## Overview + +The `date_added` field in skill frontmatter allows you to track when each skill was created. This is useful for: + +- **Versioning**: Understanding skill age and maturity +- **Changelog generation**: Tracking new skills over time +- **Reporting**: Analyzing skill collection growth +- **Organization**: Grouping skills by creation date + +## Format + +The `date_added` field uses ISO 8601 date format: **YYYY-MM-DD** + +```yaml +--- +name: my-skill-name +description: "Brief description" +date_added: "2024-01-15" +--- +``` + +## Quick Start + +### 1. View All Skills with Their Dates + +```bash +python scripts/manage_skill_dates.py list +``` + +Output example: +``` +šŸ“… Skills with Date Added (245): +============================================================ + 2025-02-26 │ recent-skill + 2025-02-20 │ another-new-skill + 2024-12-15 │ older-skill + ... + +ā³ Skills without Date Added (5): +============================================================ + some-legacy-skill + undated-skill + ... + +šŸ“Š Coverage: 245/250 (98.0%) +``` + +### 2. Add Missing Dates + +Add today's date to all skills that don't have a `date_added` field: + +```bash +python scripts/manage_skill_dates.py add-missing +``` + +Or specify a custom date: + +```bash +python scripts/manage_skill_dates.py add-missing --date 2024-01-15 +``` + +### 3. Add/Update All Skills + +Set a date for all skills at once: + +```bash +python scripts/manage_skill_dates.py add-all --date 2024-01-01 +``` + +### 4. Update a Single Skill + +Update a specific skill's date: + +```bash +python scripts/manage_skill_dates.py update my-skill-name 2024-06-15 +``` + +### 5. Generate a Report + +Generate a JSON report of all skills with their metadata: + +```bash +python scripts/generate_skills_report.py +``` + +Save to file: + +```bash +python scripts/generate_skills_report.py --output skills_report.json +``` + +Sort by name: + +```bash +python scripts/generate_skills_report.py --sort name --output sorted_skills.json +``` + +## Usage in Your Workflow + +### When Creating a New Skill + +Add the `date_added` field to your SKILL.md frontmatter: + +```yaml +--- +name: new-awesome-skill +description: "Does something awesome" +date_added: "2025-02-26" +--- +``` + +### Automated Addition + +When onboarding many skills, use: + +```bash +python scripts/manage_skill_dates.py add-missing --date 2025-02-26 +``` + +This adds today's date to all skills that are missing the field. + +### Validation + +The validators now check `date_added` format: + +```bash +# Run Python validator (strict mode) +python scripts/validate_skills.py --strict + +# Run JavaScript validator +npm run validate +``` + +Both will flag invalid dates (must be YYYY-MM-DD format). + +## Generated Reports + +The `generate_skills_report.py` script produces a JSON report with statistics: + +```json +{ + "generated_at": "2025-02-26T10:30:00.123456", + "total_skills": 250, + "skills_with_dates": 245, + "skills_without_dates": 5, + "coverage_percentage": 98.0, + "sorted_by": "date", + "skills": [ + { + "id": "recent-skill", + "name": "recent-skill", + "description": "A newly added skill", + "date_added": "2025-02-26", + "source": "community", + "risk": "safe", + "category": "recent" + }, + ... + ] +} +``` + +Use this for: +- Dashboard displays +- Growth metrics +- Automated reports +- Analytics + +## Integration with CI/CD + +Add to your pipeline: + +```bash +# In pre-commit or CI pipeline +python scripts/validate_skills.py --strict + +# Generate stats report +python scripts/generate_skills_report.py --output reports/skills_report.json +``` + +## Best Practices + +1. **Use consistent format**: Always use `YYYY-MM-DD` +2. **Use real dates**: Reflect actual skill creation dates when possible +3. **Update on creation**: Add the date when creating new skills +4. **Validate regularly**: Run validators to catch format errors +5. **Review reports**: Use generated reports to understand collection trends + +## Troubleshooting + +### "Invalid date_added format" + +Make sure the date is in `YYYY-MM-DD` format: +- āœ… Correct: `2024-01-15` +- āŒ Wrong: `01/15/2024` or `2024-1-15` + +### Script not found + +Make sure you're running from the project root: +```bash +cd path/to/antigravity-awesome-skills +python scripts/manage_skill_dates.py list +``` + +### Python not found + +Install Python 3.x from [python.org](https://python.org/) + +## Related Documentation + +- [SKILL_ANATOMY.md](docs/SKILL_ANATOMY.md) - Complete skill structure guide +- [SKILLS_UPDATE_GUIDE.md](SKILLS_UPDATE_GUIDE.md) - How to update the skill collection +- [EXAMPLES.md](docs/EXAMPLES.md) - Example skills + +## Questions or Issues? + +See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines. diff --git a/docs/SKILL_ANATOMY.md b/docs/SKILL_ANATOMY.md index cce332b4..28701cfe 100644 --- a/docs/SKILL_ANATOMY.md +++ b/docs/SKILL_ANATOMY.md @@ -76,9 +76,19 @@ description: "Brief description" risk: "safe" # none | safe | critical | offensive (see QUALITY_BAR.md) source: "community" tags: ["react", "typescript"] +date_added: "2024-01-15" --- ``` +#### `date_added` + +- **What it is:** The date when the skill was created or added to the collection +- **Format:** `YYYY-MM-DD` (ISO 8601 date format) +- **Purpose:** Helps track skill versioning and community contributions +- **Required:** No (optional, but recommended) +- **Example:** `date_added: "2024-01-15"` +- **Note:** Can be managed automatically with the `scripts/manage_skill_dates.py` script + --- ## Part 2: Content diff --git a/docs/SKILL_TEMPLATE.md b/docs/SKILL_TEMPLATE.md new file mode 100644 index 00000000..c215e572 --- /dev/null +++ b/docs/SKILL_TEMPLATE.md @@ -0,0 +1,62 @@ +--- +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 diff --git a/scripts/generate_index.py b/scripts/generate_index.py index 84762535..1107e09d 100644 --- a/scripts/generate_index.py +++ b/scripts/generate_index.py @@ -1,9 +1,16 @@ import os import json import re +import sys import yaml +# Ensure UTF-8 output for Windows compatibility +if sys.platform == 'win32': + import io + sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') + sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding='utf-8') + def parse_frontmatter(content): """ Parses YAML frontmatter, sanitizing unquoted values containing @. @@ -59,7 +66,8 @@ def generate_index(skills_dir, output_file): "name": dir_name.replace("-", " ").title(), "description": "", "risk": "unknown", - "source": "unknown" + "source": "unknown", + "date_added": None } try: @@ -77,6 +85,7 @@ def generate_index(skills_dir, output_file): if "description" in metadata: skill_info["description"] = metadata["description"] if "risk" in metadata: skill_info["risk"] = metadata["risk"] if "source" in metadata: skill_info["source"] = metadata["source"] + if "date_added" in metadata: skill_info["date_added"] = metadata["date_added"] # Fallback for description if missing in frontmatter (legacy support) if not skill_info["description"]: diff --git a/scripts/generate_skills_report.py b/scripts/generate_skills_report.py new file mode 100644 index 00000000..bccd03ae --- /dev/null +++ b/scripts/generate_skills_report.py @@ -0,0 +1,127 @@ +#!/usr/bin/env python3 +""" +Generate a report of skills with their date_added metadata in JSON format. + +Usage: + python generate_skills_report.py [--output report.json] [--sort date|name] +""" + +import os +import re +import json +import sys +import argparse +from datetime import datetime +from pathlib import Path + +def get_project_root(): + """Get the project root directory.""" + return os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +def parse_frontmatter(content): + """Parse frontmatter from SKILL.md content.""" + fm_match = re.search(r'^---\s*\n(.*?)\n---', content, re.DOTALL) + if not fm_match: + return None + + fm_text = fm_match.group(1) + metadata = {} + for line in fm_text.split('\n'): + if ':' in line and not line.strip().startswith('#'): + key, val = line.split(':', 1) + metadata[key.strip()] = val.strip().strip('"').strip("'") + + return metadata + +def generate_skills_report(output_file=None, sort_by='date'): + """Generate a report of all skills with their metadata.""" + skills_dir = os.path.join(get_project_root(), 'skills') + skills_data = [] + + for root, dirs, files in os.walk(skills_dir): + # Skip hidden/disabled directories + dirs[:] = [d for d in dirs if not d.startswith('.')] + + if "SKILL.md" in files: + skill_name = os.path.basename(root) + skill_path = os.path.join(root, "SKILL.md") + + try: + with open(skill_path, 'r', encoding='utf-8') as f: + content = f.read() + + metadata = parse_frontmatter(content) + if metadata is None: + continue + + skill_info = { + 'id': metadata.get('id', skill_name), + 'name': metadata.get('name', skill_name), + 'description': metadata.get('description', ''), + 'date_added': metadata.get('date_added', None), + 'source': metadata.get('source', 'unknown'), + 'risk': metadata.get('risk', 'unknown'), + 'category': metadata.get('category', metadata.get('id', '').split('-')[0] if '-' in metadata.get('id', '') else 'other'), + } + + skills_data.append(skill_info) + except Exception as e: + print(f"āš ļø Error reading {skill_path}: {str(e)}", file=sys.stderr) + + # Sort data + if sort_by == 'date': + # Sort by date_added (newest first), then by name + skills_data.sort(key=lambda x: (x['date_added'] or '0000-00-00', x['name']), reverse=True) + elif sort_by == 'name': + skills_data.sort(key=lambda x: x['name']) + + # Prepare report + report = { + 'generated_at': datetime.now().isoformat(), + 'total_skills': len(skills_data), + 'skills_with_dates': sum(1 for s in skills_data if s['date_added']), + 'skills_without_dates': sum(1 for s in skills_data if not s['date_added']), + 'coverage_percentage': round( + sum(1 for s in skills_data if s['date_added']) / len(skills_data) * 100 if skills_data else 0, + 1 + ), + 'sorted_by': sort_by, + 'skills': skills_data + } + + # Output + if output_file: + try: + with open(output_file, 'w', encoding='utf-8') as f: + json.dump(report, f, indent=2, ensure_ascii=False) + print(f"āœ… Report saved to: {output_file}") + except Exception as e: + print(f"āŒ Error saving report: {str(e)}") + return None + else: + # Print to stdout + print(json.dumps(report, indent=2, ensure_ascii=False)) + + return report + +def main(): + parser = argparse.ArgumentParser( + description="Generate a skills report with date_added metadata", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + python generate_skills_report.py + python generate_skills_report.py --output skills_report.json + python generate_skills_report.py --sort name --output sorted_skills.json + """ + ) + + parser.add_argument('--output', '-o', help='Output file (JSON). If not specified, prints to stdout') + parser.add_argument('--sort', choices=['date', 'name'], default='date', help='Sort order (default: date)') + + args = parser.parse_args() + + generate_skills_report(output_file=args.output, sort_by=args.sort) + +if __name__ == '__main__': + main() diff --git a/scripts/manage_skill_dates.py b/scripts/manage_skill_dates.py new file mode 100644 index 00000000..4b9cfdcd --- /dev/null +++ b/scripts/manage_skill_dates.py @@ -0,0 +1,306 @@ +#!/usr/bin/env python3 +""" +Manage skill date_added metadata. + +Usage: + python manage_skill_dates.py list # List all skills with their dates + python manage_skill_dates.py add-missing [--date YYYY-MM-DD] # Add dates to skills without them + python manage_skill_dates.py add-all [--date YYYY-MM-DD] # Add/update dates for all skills + python manage_skill_dates.py update YYYY-MM-DD # Update a specific skill's date +""" + +import os +import re +import sys +import argparse +from datetime import datetime +from pathlib import Path + +# Ensure UTF-8 output for Windows compatibility +if sys.platform == 'win32': + import io + sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') + sys.stderr = io.TextIOWrapper(sys.stderr.buffer, encoding='utf-8') + +def get_project_root(): + """Get the project root directory.""" + return os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +def parse_frontmatter(content): + """Parse frontmatter from SKILL.md content.""" + fm_match = re.search(r'^---\s*\n(.*?)\n---', content, re.DOTALL) + if not fm_match: + return None, content + + fm_text = fm_match.group(1) + metadata = {} + for line in fm_text.split('\n'): + if ':' in line and not line.strip().startswith('#'): + key, val = line.split(':', 1) + metadata[key.strip()] = val.strip().strip('"').strip("'") + + return metadata, content + +def reconstruct_frontmatter(metadata): + """Reconstruct frontmatter from metadata dict.""" + lines = ["---"] + + # Order: id, name, description, category, risk, source, tags, date_added + priority_keys = ['id', 'name', 'description', 'category', 'risk', 'source', 'tags'] + + for key in priority_keys: + if key in metadata: + val = metadata[key] + if isinstance(val, list): + # Handle list fields like tags + lines.append(f'{key}: {val}') + elif ' ' in str(val) or any(c in str(val) for c in ':#"'): + lines.append(f'{key}: "{val}"') + else: + lines.append(f'{key}: {val}') + + # Add date_added at the end + if 'date_added' in metadata: + lines.append(f'date_added: "{metadata["date_added"]}"') + + lines.append("---") + return '\n'.join(lines) + +def update_skill_frontmatter(skill_path, metadata): + """Update a skill's frontmatter with new metadata.""" + try: + with open(skill_path, 'r', encoding='utf-8') as f: + content = f.read() + + old_metadata, body_content = parse_frontmatter(content) + if old_metadata is None: + print(f"āŒ {skill_path}: Could not parse frontmatter") + return False + + # Merge metadata + old_metadata.update(metadata) + + # Reconstruct content + new_frontmatter = reconstruct_frontmatter(old_metadata) + + # Find where the frontmatter ends in the original content + fm_end = content.find('---', 3) # Skip first --- + if fm_end == -1: + print(f"āŒ {skill_path}: Could not locate frontmatter boundary") + return False + + body_start = fm_end + 3 + body = content[body_start:] + + new_content = new_frontmatter + body + + with open(skill_path, 'w', encoding='utf-8') as f: + f.write(new_content) + + return True + except Exception as e: + print(f"āŒ Error updating {skill_path}: {str(e)}") + return False + +def list_skills(): + """List all skills with their date_added values.""" + skills_dir = os.path.join(get_project_root(), 'skills') + skills_with_dates = [] + skills_without_dates = [] + + for root, dirs, files in os.walk(skills_dir): + # Skip hidden/disabled directories + dirs[:] = [d for d in dirs if not d.startswith('.')] + + if "SKILL.md" in files: + skill_name = os.path.basename(root) + skill_path = os.path.join(root, "SKILL.md") + + try: + with open(skill_path, 'r', encoding='utf-8') as f: + content = f.read() + + metadata, _ = parse_frontmatter(content) + if metadata is None: + continue + + date_added = metadata.get('date_added', 'N/A') + + if date_added == 'N/A': + skills_without_dates.append(skill_name) + else: + skills_with_dates.append((skill_name, date_added)) + except Exception as e: + print(f"āš ļø Error reading {skill_path}: {str(e)}", file=sys.stderr) + + # Sort by date + skills_with_dates.sort(key=lambda x: x[1], reverse=True) + + print(f"\nšŸ“… Skills with Date Added ({len(skills_with_dates)}):") + print("=" * 60) + + if skills_with_dates: + for skill_name, date in skills_with_dates: + print(f" {date} │ {skill_name}") + else: + print(" (none)") + + print(f"\nā³ Skills without Date Added ({len(skills_without_dates)}):") + print("=" * 60) + + if skills_without_dates: + for skill_name in sorted(skills_without_dates): + print(f" {skill_name}") + else: + print(" (none)") + + total = len(skills_with_dates) + len(skills_without_dates) + percentage = (len(skills_with_dates) / total * 100) if total > 0 else 0 + print(f"\nšŸ“Š Coverage: {len(skills_with_dates)}/{total} ({percentage:.1f}%)") + +def add_missing_dates(date_str=None): + """Add date_added to skills that don't have it.""" + if date_str is None: + date_str = datetime.now().strftime('%Y-%m-%d') + + # Validate date format + if not re.match(r'^\d{4}-\d{2}-\d{2}$', date_str): + print(f"āŒ Invalid date format: {date_str}. Use YYYY-MM-DD.") + return False + + skills_dir = os.path.join(get_project_root(), 'skills') + updated_count = 0 + skipped_count = 0 + + for root, dirs, files in os.walk(skills_dir): + dirs[:] = [d for d in dirs if not d.startswith('.')] + + if "SKILL.md" in files: + skill_name = os.path.basename(root) + skill_path = os.path.join(root, "SKILL.md") + + try: + with open(skill_path, 'r', encoding='utf-8') as f: + content = f.read() + + metadata, _ = parse_frontmatter(content) + if metadata is None: + print(f"āš ļø {skill_name}: Could not parse frontmatter, skipping") + continue + + if 'date_added' not in metadata: + if update_skill_frontmatter(skill_path, {'date_added': date_str}): + print(f"āœ… {skill_name}: Added date_added: {date_str}") + updated_count += 1 + else: + print(f"āŒ {skill_name}: Failed to update") + else: + skipped_count += 1 + except Exception as e: + print(f"āŒ Error processing {skill_name}: {str(e)}") + + print(f"\n✨ Updated {updated_count} skills, skipped {skipped_count} that already had dates") + return True + +def add_all_dates(date_str=None): + """Add/update date_added for all skills.""" + if date_str is None: + date_str = datetime.now().strftime('%Y-%m-%d') + + # Validate date format + if not re.match(r'^\d{4}-\d{2}-\d{2}$', date_str): + print(f"āŒ Invalid date format: {date_str}. Use YYYY-MM-DD.") + return False + + skills_dir = os.path.join(get_project_root(), 'skills') + updated_count = 0 + + for root, dirs, files in os.walk(skills_dir): + dirs[:] = [d for d in dirs if not d.startswith('.')] + + if "SKILL.md" in files: + skill_name = os.path.basename(root) + skill_path = os.path.join(root, "SKILL.md") + + try: + if update_skill_frontmatter(skill_path, {'date_added': date_str}): + print(f"āœ… {skill_name}: Set date_added: {date_str}") + updated_count += 1 + else: + print(f"āŒ {skill_name}: Failed to update") + except Exception as e: + print(f"āŒ Error processing {skill_name}: {str(e)}") + + print(f"\n✨ Updated {updated_count} skills") + return True + +def update_skill_date(skill_name, date_str): + """Update a specific skill's date_added.""" + # Validate date format + if not re.match(r'^\d{4}-\d{2}-\d{2}$', date_str): + print(f"āŒ Invalid date format: {date_str}. Use YYYY-MM-DD.") + return False + + skills_dir = os.path.join(get_project_root(), 'skills') + skill_path = os.path.join(skills_dir, skill_name, 'SKILL.md') + + if not os.path.exists(skill_path): + print(f"āŒ Skill not found: {skill_name}") + return False + + if update_skill_frontmatter(skill_path, {'date_added': date_str}): + print(f"āœ… {skill_name}: Updated date_added to {date_str}") + return True + else: + print(f"āŒ {skill_name}: Failed to update") + return False + +def main(): + parser = argparse.ArgumentParser( + description="Manage skill date_added metadata", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + python manage_skill_dates.py list + python manage_skill_dates.py add-missing + python manage_skill_dates.py add-missing --date 2024-01-15 + python manage_skill_dates.py add-all --date 2025-01-01 + python manage_skill_dates.py update my-skill-name 2024-06-01 + """ + ) + + subparsers = parser.add_subparsers(dest='command', help='Command to execute') + + # list command + subparsers.add_parser('list', help='List all skills with their date_added values') + + # add-missing command + add_missing_parser = subparsers.add_parser('add-missing', help='Add date_added to skills without it') + add_missing_parser.add_argument('--date', help='Date to use (YYYY-MM-DD), defaults to today') + + # add-all command + add_all_parser = subparsers.add_parser('add-all', help='Add/update date_added for all skills') + add_all_parser.add_argument('--date', help='Date to use (YYYY-MM-DD), defaults to today') + + # update command + update_parser = subparsers.add_parser('update', help='Update a specific skill date') + update_parser.add_argument('skill_name', help='Name of the skill') + update_parser.add_argument('date', help='Date to set (YYYY-MM-DD)') + + args = parser.parse_args() + + if not args.command: + parser.print_help() + return + + if args.command == 'list': + list_skills() + elif args.command == 'add-missing': + add_missing_dates(args.date) + elif args.command == 'add-all': + add_all_dates(args.date) + elif args.command == 'update': + update_skill_date(args.skill_name, args.date) + +if __name__ == '__main__': + main() diff --git a/scripts/validate-skills.js b/scripts/validate-skills.js index 606a4867..d7938ac3 100644 --- a/scripts/validate-skills.js +++ b/scripts/validate-skills.js @@ -41,6 +41,7 @@ const ALLOWED_FIELDS = new Set([ "metadata", "allowed-tools", "package", + "date_added", ]); const USE_SECTION_PATTERNS = [ diff --git a/scripts/validate_skills.py b/scripts/validate_skills.py index 635a45a9..acceb6f9 100644 --- a/scripts/validate_skills.py +++ b/scripts/validate_skills.py @@ -41,6 +41,7 @@ def validate_skills(skills_dir, strict_mode=False): security_disclaimer_pattern = re.compile(r"AUTHORIZED USE ONLY", re.IGNORECASE) valid_risk_levels = ["none", "safe", "critical", "offensive", "unknown"] + date_pattern = re.compile(r'^\d{4}-\d{2}-\d{2}$') # YYYY-MM-DD format for root, dirs, files in os.walk(skills_dir): # Skip .disabled or hidden directories @@ -91,6 +92,15 @@ def validate_skills(skills_dir, strict_mode=False): if strict_mode: errors.append(msg.replace("āš ļø", "āŒ")) else: warnings.append(msg) + # Date Added Validation (optional field) + if "date_added" in metadata: + if not date_pattern.match(metadata["date_added"]): + errors.append(f"āŒ {rel_path}: Invalid 'date_added' format. Must be YYYY-MM-DD (e.g., '2024-01-15'), got '{metadata['date_added']}'") + else: + msg = f"ā„¹ļø {rel_path}: Missing 'date_added' field (optional, but recommended)" + if strict_mode: warnings.append(msg) + # In normal mode, we just silently skip this + # 3. Content Checks (Triggers) if not has_when_to_use_section(content): msg = f"āš ļø {rel_path}: Missing '## When to Use' section" diff --git a/skills_index.json b/skills_index.json index c0ffd8e0..e947d6fd 100644 --- a/skills_index.json +++ b/skills_index.json @@ -6,7 +6,8 @@ "name": "00-andruia-consultant", "description": "Arquitecto de Soluciones Principal y Consultor Tecnol\u00f3gico de Andru.ia. Diagnostica y traza la hoja de ruta \u00f3ptima para proyectos de IA en espa\u00f1ol.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "20-andruia-niche-intelligence", @@ -15,7 +16,8 @@ "name": "20-andruia-niche-intelligence", "description": "Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho espec\u00edfico de un proyecto para inyectar conocimientos, regulaciones y est\u00e1ndares \u00fanicos del sector. Act\u00edvalo tras definir el nicho.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "2d-games", @@ -24,7 +26,8 @@ "name": "2d-games", "description": "2D game development principles. Sprites, tilemaps, physics, camera.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "3d-games", @@ -33,7 +36,8 @@ "name": "3d-games", "description": "3D game development principles. Rendering, shaders, physics, cameras.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "3d-web-experience", @@ -42,7 +46,8 @@ "name": "3d-web-experience", "description": "Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "ab-test-setup", @@ -51,7 +56,8 @@ "name": "ab-test-setup", "description": "Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "accessibility-compliance-accessibility-audit", @@ -60,7 +66,8 @@ "name": "accessibility-compliance-accessibility-audit", "description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "active-directory-attacks", @@ -69,7 +76,8 @@ "name": "active-directory-attacks", "description": "This skill should be used when the user asks to \"attack Active Directory\", \"exploit AD\", \"Kerberoasting\", \"DCSync\", \"pass-the-hash\", \"BloodHound enumeration\", \"Golden Ticket\", ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "activecampaign-automation", @@ -78,7 +86,8 @@ "name": "activecampaign-automation", "description": "Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags, list subscriptions, automation enrollment, and tasks. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "address-github-comments", @@ -87,7 +96,8 @@ "name": "address-github-comments", "description": "Use when you need to address review or issue comments on an open GitHub Pull Request using the gh CLI.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-evaluation", @@ -96,7 +106,8 @@ "name": "agent-evaluation", "description": "Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring\u2014where even top agents achieve less than 50% on re...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "agent-framework-azure-ai-py", @@ -105,7 +116,8 @@ "name": "agent-framework-azure-ai-py", "description": "Build Azure AI Foundry agents using the Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Use when creating persistent agents with AzureAIAgentsProvider, using hosted tools (code int...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-manager-skill", @@ -114,7 +126,8 @@ "name": "agent-manager-skill", "description": "Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-memory-mcp", @@ -123,7 +136,8 @@ "name": "agent-memory-mcp", "description": "A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-memory-systems", @@ -132,7 +146,8 @@ "name": "agent-memory-systems", "description": "Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector s...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "agent-orchestration-improve-agent", @@ -141,7 +156,8 @@ "name": "agent-orchestration-improve-agent", "description": "Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-orchestration-multi-agent-optimize", @@ -150,7 +166,8 @@ "name": "agent-orchestration-multi-agent-optimize", "description": "Optimize multi-agent systems with coordinated profiling, workload distribution, and cost-aware orchestration. Use when improving agent performance, throughput, or reliability.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-tool-builder", @@ -159,7 +176,8 @@ "name": "agent-tool-builder", "description": "Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessar...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "agentfolio", @@ -168,7 +186,8 @@ "name": "agentfolio", "description": "Skill for discovering and researching autonomous AI agents, tools, and ecosystems using the AgentFolio directory.", "risk": "unknown", - "source": "agentfolio.io" + "source": "agentfolio.io", + "date_added": "2025-02-26" }, { "id": "agents-v2-py", @@ -177,7 +196,8 @@ "name": "agents-v2-py", "description": "Build container-based Foundry Agents with Azure AI Projects SDK (ImageBasedHostedAgentDefinition). Use when creating hosted agents with custom container images in Azure AI Foundry.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ai-agent-development", @@ -186,7 +206,8 @@ "name": "ai-agent-development", "description": "AI agent development workflow for building autonomous agents, multi-agent systems, and agent orchestration with CrewAI, LangGraph, and custom agents.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "ai-agents-architect", @@ -195,16 +216,18 @@ "name": "ai-agents-architect", "description": "Expert in designing and building autonomous AI agents. Masters tool use, memory systems, planning strategies, and multi-agent orchestration. Use when: build agent, AI agent, autonomous agent, tool ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "ai-engineer", "path": "skills\\ai-engineer", "category": "uncategorized", "name": "ai-engineer", - "description": "Build production-ready LLM applications, advanced RAG systems, and\nintelligent agents. Implements vector search, multimodal AI, agent\norchestration, and enterprise AI integrations. Use PROACTIVELY for LLM\nfeatures, chatbots, AI agents, or AI-powered applications.\n", + "description": "You are an AI engineer specializing in production-grade LLM applications, generative AI systems, and intelligent agent architectures.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ai-ml", @@ -213,7 +236,8 @@ "name": "ai-ml", "description": "AI and machine learning workflow covering LLM application development, RAG implementation, agent architecture, ML pipelines, and AI-powered features.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "ai-product", @@ -222,7 +246,8 @@ "name": "ai-product", "description": "Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production. This skill covers LLM integration patterns, RAG architecture, prompt ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "ai-wrapper-product", @@ -231,7 +256,8 @@ "name": "ai-wrapper-product", "description": "Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into focused tools people will pay for. Not just 'ChatGPT but different' - products that solve specific problems with AI. Cov...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "airflow-dag-patterns", @@ -240,7 +266,8 @@ "name": "airflow-dag-patterns", "description": "Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when creating data pipelines, orchestrating workflows, or scheduling batch jobs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "airtable-automation", @@ -249,7 +276,8 @@ "name": "airtable-automation", "description": "Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fields, views. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "algolia-search", @@ -258,7 +286,8 @@ "name": "algolia-search", "description": "Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning Use when: adding search to, algolia, instantsearch, search api, search functionality.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "algorithmic-art", @@ -267,7 +296,8 @@ "name": "algorithmic-art", "description": "Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "amplitude-automation", @@ -276,16 +306,18 @@ "name": "amplitude-automation", "description": "Automate Amplitude tasks via Rube MCP (Composio): events, user activity, cohorts, user identification. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "analytics-tracking", "path": "skills\\analytics-tracking", "category": "uncategorized", "name": "analytics-tracking", - "description": "Design, audit, and improve analytics tracking systems that produce reliable, decision-ready data. Use when the user wants to set up, fix, or evaluate analytics tracking (GA4, GTM, product analytics, events, conversions, UTMs). This skill focuses on measurement strategy, signal quality, and validation\u2014 not just firing events.\n", + "description": "You are an expert in **analytics implementation and measurement design**. Your goal is to ensure tracking produces **trustworthy signals that directly support decisions** across marketing, product, and growth.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "android-jetpack-compose-expert", @@ -294,16 +326,18 @@ "name": "android-jetpack-compose-expert", "description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "angular", "path": "skills\\angular", "category": "uncategorized", "name": "angular", - "description": "Modern Angular (v20+) expert with deep knowledge of Signals, Standalone Components, Zoneless applications, SSR/Hydration, and reactive patterns. Use PROACTIVELY for Angular development, component architecture, state management, performance optimization, and migration to modern patterns.", + "description": "Master modern Angular development with Signals, Standalone Components, Zoneless applications, SSR/Hydration, and the latest reactive patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "angular-best-practices", @@ -312,7 +346,8 @@ "name": "angular-best-practices", "description": "Angular performance optimization and best practices guide. Use when writing, reviewing, or refactoring Angular code for optimal performance, bundle size, and rendering efficiency.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "angular-migration", @@ -321,7 +356,8 @@ "name": "angular-migration", "description": "Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates. Use when upgrading AngularJS applications, planning framework migrations, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "angular-state-management", @@ -330,7 +366,8 @@ "name": "angular-state-management", "description": "Master modern Angular state management with Signals, NgRx, and RxJS. Use when setting up global state, managing component stores, choosing between state solutions, or migrating from legacy patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "angular-ui-patterns", @@ -339,7 +376,8 @@ "name": "angular-ui-patterns", "description": "Modern Angular UI patterns for loading states, error handling, and data display. Use when building UI components, handling async data, or managing component states.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "anti-reversing-techniques", @@ -348,7 +386,8 @@ "name": "anti-reversing-techniques", "description": "Understand anti-reversing, obfuscation, and protection techniques encountered during software analysis. Use when analyzing protected binaries, bypassing anti-debugging for authorized analysis, or u...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "antigravity-workflows", @@ -357,7 +396,8 @@ "name": "antigravity-workflows", "description": "Orchestrate multiple Antigravity skills through guided workflows for SaaS MVP delivery, security audits, AI agent builds, and browser QA.", "risk": "none", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "api-design-principles", @@ -366,7 +406,8 @@ "name": "api-design-principles", "description": "Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-documentation", @@ -375,7 +416,8 @@ "name": "api-documentation", "description": "API documentation workflow for generating OpenAPI specs, creating developer guides, and maintaining comprehensive API documentation.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "api-documentation-generator", @@ -384,16 +426,18 @@ "name": "api-documentation-generator", "description": "Generate comprehensive, developer-friendly API documentation from code, including endpoints, parameters, examples, and best practices", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-documenter", "path": "skills\\api-documenter", "category": "uncategorized", "name": "api-documenter", - "description": "Master API documentation with OpenAPI 3.1, AI-powered tools, and\nmodern developer experience practices. Create interactive docs, generate SDKs,\nand build comprehensive developer portals. Use PROACTIVELY for API\ndocumentation or developer portal creation.\n", + "description": "You are an expert API documentation specialist mastering modern developer experience through comprehensive, interactive, and AI-enhanced documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-fuzzing-bug-bounty", @@ -402,7 +446,8 @@ "name": "api-fuzzing-bug-bounty", "description": "This skill should be used when the user asks to \"test API security\", \"fuzz APIs\", \"find IDOR vulnerabilities\", \"test REST API\", \"test GraphQL\", \"API penetration testing\", \"bug b...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-patterns", @@ -411,7 +456,8 @@ "name": "api-patterns", "description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-security-best-practices", @@ -420,7 +466,8 @@ "name": "api-security-best-practices", "description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-security-testing", @@ -429,7 +476,8 @@ "name": "api-security-testing", "description": "API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "api-testing-observability-api-mock", @@ -438,7 +486,8 @@ "name": "api-testing-observability-api-mock", "description": "You are an API mocking expert specializing in realistic mock services for development, testing, and demos. Design mocks that simulate real API behavior and enable parallel development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "app-builder", @@ -447,7 +496,8 @@ "name": "app-builder", "description": "Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "app-store-optimization", @@ -456,7 +506,8 @@ "name": "app-store-optimization", "description": "Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "appdeploy", @@ -465,7 +516,8 @@ "name": "appdeploy", "description": "Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.", "risk": "safe", - "source": "AppDeploy (MIT)" + "source": "AppDeploy (MIT)", + "date_added": "2025-02-26" }, { "id": "application-performance-performance-optimization", @@ -474,16 +526,18 @@ "name": "application-performance-performance-optimization", "description": "Optimize end-to-end application performance with profiling, observability, and backend/frontend tuning. Use when coordinating performance optimization across the stack.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architect-review", "path": "skills\\architect-review", "category": "uncategorized", "name": "architect-review", - "description": "Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions.", + "description": "Master software architect specializing in modern architecture", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architecture", @@ -492,7 +546,8 @@ "name": "architecture", "description": "Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architecture-decision-records", @@ -501,7 +556,8 @@ "name": "architecture-decision-records", "description": "Write and maintain Architecture Decision Records (ADRs) following best practices for technical decision documentation. Use when documenting significant technical decisions, reviewing past architect...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architecture-patterns", @@ -510,16 +566,18 @@ "name": "architecture-patterns", "description": "Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "arm-cortex-expert", "path": "skills\\arm-cortex-expert", "category": "uncategorized", "name": "arm-cortex-expert", - "description": "Senior embedded software engineer specializing in firmware and driver development for ARM Cortex-M microcontrollers (Teensy, STM32, nRF52, SAMD). Decades of experience writing reliable, optimized, and maintainable embedded code with deep expertise in memory barriers, DMA/cache coherency, interrupt-driven I/O, and peripheral drivers.\n", + "description": "- Working on @arm-cortex-expert tasks or workflows - Needing guidance, best practices, or checklists for @arm-cortex-expert", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "asana-automation", @@ -528,7 +586,8 @@ "name": "asana-automation", "description": "Automate Asana tasks via Rube MCP (Composio): tasks, projects, sections, teams, workspaces. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "async-python-patterns", @@ -537,7 +596,8 @@ "name": "async-python-patterns", "description": "Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "attack-tree-construction", @@ -546,7 +606,8 @@ "name": "attack-tree-construction", "description": "Build comprehensive attack trees to visualize threat paths. Use when mapping attack scenarios, identifying defense gaps, or communicating security risks to stakeholders.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "audio-transcriber", @@ -555,7 +616,8 @@ "name": "audio-transcriber", "description": "Transform audio recordings into professional Markdown documentation with intelligent summaries using LLM integration", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "auth-implementation-patterns", @@ -564,7 +626,8 @@ "name": "auth-implementation-patterns", "description": "Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing A...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "automate-whatsapp", @@ -573,7 +636,8 @@ "name": "automate-whatsapp", "description": "Build WhatsApp automations with Kapso workflows: configure WhatsApp triggers, edit workflow graphs, manage executions, deploy functions, and use databases/integrations for state. Use when automatin...", "risk": "safe", - "source": "https://github.com/gokapso/agent-skills/tree/master/skills/automate-whatsapp" + "source": "https://github.com/gokapso/agent-skills/tree/master/skills/automate-whatsapp", + "date_added": "2025-02-26" }, { "id": "autonomous-agent-patterns", @@ -582,7 +646,8 @@ "name": "autonomous-agent-patterns", "description": "Design patterns for building autonomous coding agents. Covers tool integration, permission systems, browser automation, and human-in-the-loop workflows. Use when building AI agents, designing tool ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "autonomous-agents", @@ -591,7 +656,8 @@ "name": "autonomous-agents", "description": "Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it'...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "avalonia-layout-zafiro", @@ -600,7 +666,8 @@ "name": "avalonia-layout-zafiro", "description": "Guidelines for modern Avalonia UI layout using Zafiro.Avalonia, emphasizing shared styles, generic components, and avoiding XAML redundancy.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "avalonia-viewmodels-zafiro", @@ -609,7 +676,8 @@ "name": "avalonia-viewmodels-zafiro", "description": "Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ReactiveUI.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "avalonia-zafiro-development", @@ -618,7 +686,8 @@ "name": "avalonia-zafiro-development", "description": "Mandatory skills, conventions, and behavioral rules for Avalonia UI development using the Zafiro toolkit.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-compliance-checker", @@ -627,7 +696,8 @@ "name": "aws-compliance-checker", "description": "Automated compliance checking against CIS, PCI-DSS, HIPAA, and SOC 2 benchmarks", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-cost-cleanup", @@ -636,7 +706,8 @@ "name": "aws-cost-cleanup", "description": "Automated cleanup of unused AWS resources to reduce costs", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-cost-optimizer", @@ -645,7 +716,8 @@ "name": "aws-cost-optimizer", "description": "Comprehensive AWS cost analysis and optimization recommendations using AWS CLI and Cost Explorer", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-iam-best-practices", @@ -654,7 +726,8 @@ "name": "aws-iam-best-practices", "description": "IAM policy review, hardening, and least privilege implementation", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-penetration-testing", @@ -663,7 +736,8 @@ "name": "aws-penetration-testing", "description": "This skill should be used when the user asks to \"pentest AWS\", \"test AWS security\", \"enumerate IAM\", \"exploit cloud infrastructure\", \"AWS privilege escalation\", \"S3 bucket testing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-secrets-rotation", @@ -672,7 +746,8 @@ "name": "aws-secrets-rotation", "description": "Automate AWS secrets rotation for RDS, API keys, and credentials", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-security-audit", @@ -681,7 +756,8 @@ "name": "aws-security-audit", "description": "Comprehensive AWS security posture assessment using AWS CLI and security best practices", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-serverless", @@ -690,7 +766,8 @@ "name": "aws-serverless", "description": "Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start opt...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "aws-skills", @@ -699,7 +776,8 @@ "name": "aws-skills", "description": "AWS development with infrastructure automation and cloud architecture patterns", "risk": "safe", - "source": "https://github.com/zxkane/aws-skills" + "source": "https://github.com/zxkane/aws-skills", + "date_added": "2025-02-26" }, { "id": "azd-deployment", @@ -708,25 +786,28 @@ "name": "azd-deployment", "description": "Deploy containerized applications to Azure Container Apps using Azure Developer CLI (azd). Use when setting up azd projects, writing azure.yaml configuration, creating Bicep infrastructure for Cont...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-agents-persistent-dotnet", "path": "skills\\azure-ai-agents-persistent-dotnet", "category": "uncategorized", "name": "azure-ai-agents-persistent-dotnet", - "description": "Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n", + "description": "Low-level SDK for creating and managing persistent AI agents with threads, messages, runs, and tools.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-agents-persistent-java", "path": "skills\\azure-ai-agents-persistent-java", "category": "uncategorized", "name": "azure-ai-agents-persistent-java", - "description": "Azure AI Agents Persistent SDK for Java. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools.\nTriggers: \"PersistentAgentsClient\", \"persistent agents java\", \"agent threads java\", \"agent runs java\", \"streaming agents java\".\n", + "description": "Low-level SDK for creating and managing persistent AI agents with threads, messages, runs, and tools.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-anomalydetector-java", @@ -735,7 +816,8 @@ "name": "azure-ai-anomalydetector-java", "description": "Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentsafety-java", @@ -744,16 +826,18 @@ "name": "azure-ai-contentsafety-java", "description": "Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual conten...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentsafety-py", "path": "skills\\azure-ai-contentsafety-py", "category": "uncategorized", "name": "azure-ai-contentsafety-py", - "description": "Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n", + "description": "Detect harmful user-generated and AI-generated content in applications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentsafety-ts", @@ -762,25 +846,28 @@ "name": "azure-ai-contentsafety-ts", "description": "Analyze text and images for harmful content using Azure AI Content Safety (@azure-rest/ai-content-safety). Use when moderating user-generated content, detecting hate speech, violence, sexual conten...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentunderstanding-py", "path": "skills\\azure-ai-contentunderstanding-py", "category": "uncategorized", "name": "azure-ai-contentunderstanding-py", - "description": "Azure AI Content Understanding SDK for Python. Use for multimodal content extraction from documents, images, audio, and video.\nTriggers: \"azure-ai-contentunderstanding\", \"ContentUnderstandingClient\", \"multimodal analysis\", \"document extraction\", \"video analysis\", \"audio transcription\".\n", + "description": "Multimodal AI service that extracts semantic content from documents, video, audio, and image files for RAG and automated workflows.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-document-intelligence-dotnet", "path": "skills\\azure-ai-document-intelligence-dotnet", "category": "uncategorized", "name": "azure-ai-document-intelligence-dotnet", - "description": "Azure AI Document Intelligence SDK for .NET. Extract text, tables, and structured data from documents using prebuilt and custom models. Use for invoice processing, receipt extraction, ID document analysis, and custom document models. Triggers: \"Document Intelligence\", \"DocumentIntelligenceClient\", \"form recognizer\", \"invoice extraction\", \"receipt OCR\", \"document analysis .NET\".\n", + "description": "Extract text, tables, and structured data from documents using prebuilt and custom models.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-document-intelligence-ts", @@ -789,7 +876,8 @@ "name": "azure-ai-document-intelligence-ts", "description": "Extract text, tables, and structured data from documents using Azure Document Intelligence (@azure-rest/ai-document-intelligence). Use when processing invoices, receipts, IDs, forms, or building cu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-formrecognizer-java", @@ -798,43 +886,48 @@ "name": "azure-ai-formrecognizer-java", "description": "Build document analysis applications with Azure Document Intelligence (Form Recognizer) SDK for Java. Use when extracting text, tables, key-value pairs from documents, receipts, invoices, or buildi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-ml-py", "path": "skills\\azure-ai-ml-py", "category": "uncategorized", "name": "azure-ai-ml-py", - "description": "Azure Machine Learning SDK v2 for Python. Use for ML workspaces, jobs, models, datasets, compute, and pipelines.\nTriggers: \"azure-ai-ml\", \"MLClient\", \"workspace\", \"model registry\", \"training jobs\", \"datasets\".\n", + "description": "Client library for managing Azure ML resources: workspaces, jobs, models, data, and compute.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-openai-dotnet", "path": "skills\\azure-ai-openai-dotnet", "category": "uncategorized", "name": "azure-ai-openai-dotnet", - "description": "Azure OpenAI SDK for .NET. Client library for Azure OpenAI and OpenAI services. Use for chat completions, embeddings, image generation, audio transcription, and assistants. Triggers: \"Azure OpenAI\", \"AzureOpenAIClient\", \"ChatClient\", \"chat completions .NET\", \"GPT-4\", \"embeddings\", \"DALL-E\", \"Whisper\", \"OpenAI .NET\".\n", + "description": "Client library for Azure OpenAI Service providing access to OpenAI models including GPT-4, GPT-4o, embeddings, DALL-E, and Whisper.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-dotnet", "path": "skills\\azure-ai-projects-dotnet", "category": "uncategorized", "name": "azure-ai-projects-dotnet", - "description": "Azure AI Projects SDK for .NET. High-level client for Azure AI Foundry projects including agents, connections, datasets, deployments, evaluations, and indexes. Use for AI Foundry project management, versioned agents, and orchestration. Triggers: \"AI Projects\", \"AIProjectClient\", \"Foundry project\", \"versioned agents\", \"evaluations\", \"datasets\", \"connections\", \"deployments .NET\".\n", + "description": "High-level SDK for Azure AI Foundry project operations including agents, connections, datasets, deployments, evaluations, and indexes.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-java", "path": "skills\\azure-ai-projects-java", "category": "uncategorized", "name": "azure-ai-projects-java", - "description": "Azure AI Projects SDK for Java. High-level SDK for Azure AI Foundry project management including connections, datasets, indexes, and evaluations.\nTriggers: \"AIProjectClient java\", \"azure ai projects java\", \"Foundry project java\", \"ConnectionsClient\", \"DatasetsClient\", \"IndexesClient\".\n", + "description": "High-level SDK for Azure AI Foundry project management with access to connections, datasets, indexes, and evaluations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-py", @@ -843,7 +936,8 @@ "name": "azure-ai-projects-py", "description": "Build AI applications using the Azure AI Projects Python SDK (azure-ai-projects). Use when working with Foundry project clients, creating versioned agents with PromptAgentDefinition, running evalua...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-ts", @@ -852,43 +946,48 @@ "name": "azure-ai-projects-ts", "description": "Build AI applications using Azure AI Projects SDK for JavaScript (@azure/ai-projects). Use when working with Foundry project clients, agents, connections, deployments, datasets, indexes, evaluation...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-textanalytics-py", "path": "skills\\azure-ai-textanalytics-py", "category": "uncategorized", "name": "azure-ai-textanalytics-py", - "description": "Azure AI Text Analytics SDK for sentiment analysis, entity recognition, key phrases, language detection, PII, and healthcare NLP. Use for natural language processing on text.\nTriggers: \"text analytics\", \"sentiment analysis\", \"entity recognition\", \"key phrase\", \"PII detection\", \"TextAnalyticsClient\".\n", + "description": "Client library for Azure AI Language service NLP capabilities including sentiment, entities, key phrases, and more.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-transcription-py", "path": "skills\\azure-ai-transcription-py", "category": "uncategorized", "name": "azure-ai-transcription-py", - "description": "Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.\nTriggers: \"transcription\", \"speech to text\", \"Azure AI Transcription\", \"TranscriptionClient\".\n", + "description": "Client library for Azure AI Transcription (speech-to-text) with real-time and batch transcription.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-translation-document-py", "path": "skills\\azure-ai-translation-document-py", "category": "uncategorized", "name": "azure-ai-translation-document-py", - "description": "Azure AI Document Translation SDK for batch translation of documents with format preservation. Use for translating Word, PDF, Excel, PowerPoint, and other document formats at scale.\nTriggers: \"document translation\", \"batch translation\", \"translate documents\", \"DocumentTranslationClient\".\n", + "description": "Client library for Azure AI Translator document translation service for batch document translation with format preservation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-translation-text-py", "path": "skills\\azure-ai-translation-text-py", "category": "uncategorized", "name": "azure-ai-translation-text-py", - "description": "Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n", + "description": "Client library for Azure AI Translator text translation service for real-time text translation, transliteration, and language operations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-translation-ts", @@ -897,7 +996,8 @@ "name": "azure-ai-translation-ts", "description": "Build translation applications using Azure Translation SDKs for JavaScript (@azure-rest/ai-translation-text, @azure-rest/ai-translation-document). Use when implementing text translation, transliter...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-vision-imageanalysis-java", @@ -906,34 +1006,38 @@ "name": "azure-ai-vision-imageanalysis-java", "description": "Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-vision-imageanalysis-py", "path": "skills\\azure-ai-vision-imageanalysis-py", "category": "uncategorized", "name": "azure-ai-vision-imageanalysis-py", - "description": "Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n", + "description": "Client library for Azure AI Vision 4.0 image analysis including captions, tags, objects, OCR, and more.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-dotnet", "path": "skills\\azure-ai-voicelive-dotnet", "category": "uncategorized", "name": "azure-ai-voicelive-dotnet", - "description": "Azure AI Voice Live SDK for .NET. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant .NET\", \"bidirectional audio\", \"speech-to-speech\".\n", + "description": "Real-time voice AI SDK for building bidirectional voice assistants with Azure AI.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-java", "path": "skills\\azure-ai-voicelive-java", "category": "uncategorized", "name": "azure-ai-voicelive-java", - "description": "Azure AI VoiceLive SDK for Java. Real-time bidirectional voice conversations with AI assistants using WebSocket.\nTriggers: \"VoiceLiveClient java\", \"voice assistant java\", \"real-time voice java\", \"audio streaming java\", \"voice activity detection java\".\n", + "description": "Real-time, bidirectional voice conversations with AI assistants using WebSocket technology.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-py", @@ -942,34 +1046,38 @@ "name": "azure-ai-voicelive-py", "description": "Build real-time voice AI applications using Azure AI Voice Live SDK (azure-ai-voicelive). Use this skill when creating Python applications that need real-time bidirectional audio communication with...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-ts", "path": "skills\\azure-ai-voicelive-ts", "category": "uncategorized", "name": "azure-ai-voicelive-ts", - "description": "Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots in Node.js or browser environments. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant TypeScript\", \"bidirectional audio\", \"speech-to-speech JavaScript\".\n", + "description": "Real-time voice AI SDK for building bidirectional voice assistants with Azure AI in Node.js and browser environments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-appconfiguration-java", "path": "skills\\azure-appconfiguration-java", "category": "uncategorized", "name": "azure-appconfiguration-java", - "description": "Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n", + "description": "Client library for Azure App Configuration, a managed service for centralizing application configurations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-appconfiguration-py", "path": "skills\\azure-appconfiguration-py", "category": "uncategorized", "name": "azure-appconfiguration-py", - "description": "Azure App Configuration SDK for Python. Use for centralized configuration management, feature flags, and dynamic settings.\nTriggers: \"azure-appconfiguration\", \"AzureAppConfigurationClient\", \"feature flags\", \"configuration\", \"key-value settings\".\n", + "description": "Centralized configuration management with feature flags and dynamic settings.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-appconfiguration-ts", @@ -978,7 +1086,8 @@ "name": "azure-appconfiguration-ts", "description": "Build applications using Azure App Configuration SDK for JavaScript (@azure/app-configuration). Use when working with configuration settings, feature flags, Key Vault references, dynamic refresh, o...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-callautomation-java", @@ -987,7 +1096,8 @@ "name": "azure-communication-callautomation-java", "description": "Build call automation workflows with Azure Communication Services Call Automation Java SDK. Use when implementing IVR systems, call routing, call recording, DTMF recognition, text-to-speech, or AI-...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-callingserver-java", @@ -996,7 +1106,8 @@ "name": "azure-communication-callingserver-java", "description": "Azure Communication Services CallingServer (legacy) Java SDK. Note - This SDK is deprecated. Use azure-communication-callautomation instead for new projects. Only use this skill when maintaining le...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-chat-java", @@ -1005,7 +1116,8 @@ "name": "azure-communication-chat-java", "description": "Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time cha...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-common-java", @@ -1014,7 +1126,8 @@ "name": "azure-communication-common-java", "description": "Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-sms-java", @@ -1023,25 +1136,28 @@ "name": "azure-communication-sms-java", "description": "Send SMS messages with Azure Communication Services SMS Java SDK. Use when implementing SMS notifications, alerts, OTP delivery, bulk messaging, or delivery reports.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-compute-batch-java", "path": "skills\\azure-compute-batch-java", "category": "uncategorized", "name": "azure-compute-batch-java", - "description": "Azure Batch SDK for Java. Run large-scale parallel and HPC batch jobs with pools, jobs, tasks, and compute nodes.\nTriggers: \"BatchClient java\", \"azure batch java\", \"batch pool java\", \"batch job java\", \"HPC java\", \"parallel computing java\".\n", + "description": "Client library for running large-scale parallel and high-performance computing (HPC) batch jobs in Azure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-containerregistry-py", "path": "skills\\azure-containerregistry-py", "category": "uncategorized", "name": "azure-containerregistry-py", - "description": "Azure Container Registry SDK for Python. Use for managing container images, artifacts, and repositories.\nTriggers: \"azure-containerregistry\", \"ContainerRegistryClient\", \"container images\", \"docker registry\", \"ACR\".\n", + "description": "Manage container images, artifacts, and repositories in Azure Container Registry.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-db-py", @@ -1050,43 +1166,48 @@ "name": "azure-cosmos-db-py", "description": "Build Azure Cosmos DB NoSQL services with Python/FastAPI following production-grade patterns. Use when implementing database client setup with dual auth (DefaultAzureCredential + emulator), service...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-java", "path": "skills\\azure-cosmos-java", "category": "uncategorized", "name": "azure-cosmos-java", - "description": "Azure Cosmos DB SDK for Java. NoSQL database operations with global distribution, multi-model support, and reactive patterns.\nTriggers: \"CosmosClient java\", \"CosmosAsyncClient\", \"cosmos database java\", \"cosmosdb java\", \"document database java\".\n", + "description": "Client library for Azure Cosmos DB NoSQL API with global distribution and reactive patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-py", "path": "skills\\azure-cosmos-py", "category": "uncategorized", "name": "azure-cosmos-py", - "description": "Azure Cosmos DB SDK for Python (NoSQL API). Use for document CRUD, queries, containers, and globally distributed data.\nTriggers: \"cosmos db\", \"CosmosClient\", \"container\", \"document\", \"NoSQL\", \"partition key\".\n", + "description": "Client library for Azure Cosmos DB NoSQL API \u2014 globally distributed, multi-model database.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-rust", "path": "skills\\azure-cosmos-rust", "category": "uncategorized", "name": "azure-cosmos-rust", - "description": "Azure Cosmos DB SDK for Rust (NoSQL API). Use for document CRUD, queries, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"container\", \"document rust\", \"NoSQL rust\", \"partition key\".\n", + "description": "Client library for Azure Cosmos DB NoSQL API \u2014 globally distributed, multi-model database.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-ts", "path": "skills\\azure-cosmos-ts", "category": "uncategorized", "name": "azure-cosmos-ts", - "description": "Azure Cosmos DB JavaScript/TypeScript SDK (@azure/cosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure/cosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n", + "description": "Data plane SDK for Azure Cosmos DB NoSQL API operations \u2014 CRUD on documents, queries, bulk operations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-data-tables-java", @@ -1095,25 +1216,28 @@ "name": "azure-data-tables-java", "description": "Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-data-tables-py", "path": "skills\\azure-data-tables-py", "category": "uncategorized", "name": "azure-data-tables-py", - "description": "Azure Tables SDK for Python (Storage and Cosmos DB). Use for NoSQL key-value storage, entity CRUD, and batch operations.\nTriggers: \"table storage\", \"TableServiceClient\", \"TableClient\", \"entities\", \"PartitionKey\", \"RowKey\".\n", + "description": "NoSQL key-value store for structured data (Azure Storage Tables or Cosmos DB Table API).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventgrid-dotnet", "path": "skills\\azure-eventgrid-dotnet", "category": "uncategorized", "name": "azure-eventgrid-dotnet", - "description": "Azure Event Grid SDK for .NET. Client library for publishing and consuming events with Azure Event Grid. Use for event-driven architectures, pub/sub messaging, CloudEvents, and EventGridEvents. Triggers: \"Event Grid\", \"EventGridPublisherClient\", \"CloudEvent\", \"EventGridEvent\", \"publish events .NET\", \"event-driven\", \"pub/sub\".\n", + "description": "Client library for publishing events to Azure Event Grid topics, domains, and namespaces.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventgrid-java", @@ -1122,25 +1246,28 @@ "name": "azure-eventgrid-java", "description": "Build event-driven applications with Azure Event Grid SDK for Java. Use when publishing events, implementing pub/sub patterns, or integrating with Azure services via events.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventgrid-py", "path": "skills\\azure-eventgrid-py", "category": "uncategorized", "name": "azure-eventgrid-py", - "description": "Azure Event Grid SDK for Python. Use for publishing events, handling CloudEvents, and event-driven architectures.\nTriggers: \"event grid\", \"EventGridPublisherClient\", \"CloudEvent\", \"EventGridEvent\", \"publish events\".\n", + "description": "Event routing service for building event-driven applications with pub/sub semantics.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-dotnet", "path": "skills\\azure-eventhub-dotnet", "category": "uncategorized", "name": "azure-eventhub-dotnet", - "description": "Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: \"Event Hubs\", \"event streaming\", \"EventHubProducerClient\", \"EventProcessorClient\", \"send events\", \"receive events\", \"checkpointing\", \"partition\".\n", + "description": "High-throughput event streaming SDK for sending and receiving events via Azure Event Hubs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-java", @@ -1149,25 +1276,28 @@ "name": "azure-eventhub-java", "description": "Build real-time streaming applications with Azure Event Hubs SDK for Java. Use when implementing event streaming, high-throughput data ingestion, or building event-driven architectures.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-py", "path": "skills\\azure-eventhub-py", "category": "uncategorized", "name": "azure-eventhub-py", - "description": "Azure Event Hubs SDK for Python streaming. Use for high-throughput event ingestion, producers, consumers, and checkpointing.\nTriggers: \"event hubs\", \"EventHubProducerClient\", \"EventHubConsumerClient\", \"streaming\", \"partitions\".\n", + "description": "Big data streaming platform for high-throughput event ingestion.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-rust", "path": "skills\\azure-eventhub-rust", "category": "uncategorized", "name": "azure-eventhub-rust", - "description": "Azure Event Hubs SDK for Rust. Use for sending and receiving events, streaming data ingestion.\nTriggers: \"event hubs rust\", \"ProducerClient rust\", \"ConsumerClient rust\", \"send event rust\", \"streaming rust\".\n", + "description": "Client library for Azure Event Hubs \u2014 big data streaming platform and event ingestion service.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-ts", @@ -1176,7 +1306,8 @@ "name": "azure-eventhub-ts", "description": "Build event streaming applications using Azure Event Hubs SDK for JavaScript (@azure/event-hubs). Use when implementing high-throughput event ingestion, real-time analytics, IoT telemetry, or event...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-functions", @@ -1185,16 +1316,18 @@ "name": "azure-functions", "description": "Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "azure-identity-dotnet", "path": "skills\\azure-identity-dotnet", "category": "uncategorized", "name": "azure-identity-dotnet", - "description": "Azure Identity SDK for .NET. Authentication library for Azure SDK clients using Microsoft Entra ID. Use for DefaultAzureCredential, managed identity, service principals, and developer credentials. Triggers: \"Azure Identity\", \"DefaultAzureCredential\", \"ManagedIdentityCredential\", \"ClientSecretCredential\", \"authentication .NET\", \"Azure auth\", \"credential chain\".\n", + "description": "Authentication library for Azure SDK clients using Microsoft Entra ID (formerly Azure AD).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-java", @@ -1203,25 +1336,28 @@ "name": "azure-identity-java", "description": "Azure Identity Java SDK for authentication with Azure services. Use when implementing DefaultAzureCredential, managed identity, service principal, or any Azure authentication pattern in Java applic...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-py", "path": "skills\\azure-identity-py", "category": "uncategorized", "name": "azure-identity-py", - "description": "Azure Identity SDK for Python authentication. Use for DefaultAzureCredential, managed identity, service principals, and token caching.\nTriggers: \"azure-identity\", \"DefaultAzureCredential\", \"authentication\", \"managed identity\", \"service principal\", \"credential\".\n", + "description": "Authentication library for Azure SDK clients using Microsoft Entra ID (formerly Azure AD).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-rust", "path": "skills\\azure-identity-rust", "category": "uncategorized", "name": "azure-identity-rust", - "description": "Azure Identity SDK for Rust authentication. Use for DeveloperToolsCredential, ManagedIdentityCredential, ClientSecretCredential, and token-based authentication.\nTriggers: \"azure-identity\", \"DeveloperToolsCredential\", \"authentication rust\", \"managed identity rust\", \"credential rust\".\n", + "description": "Authentication library for Azure SDK clients using Microsoft Entra ID (formerly Azure AD).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-ts", @@ -1230,25 +1366,28 @@ "name": "azure-identity-ts", "description": "Authenticate to Azure services using Azure Identity SDK for JavaScript (@azure/identity). Use when configuring authentication with DefaultAzureCredential, managed identity, service principals, or i...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-certificates-rust", "path": "skills\\azure-keyvault-certificates-rust", "category": "uncategorized", "name": "azure-keyvault-certificates-rust", - "description": "Azure Key Vault Certificates SDK for Rust. Use for creating, importing, and managing certificates.\nTriggers: \"keyvault certificates rust\", \"CertificateClient rust\", \"create certificate rust\", \"import certificate rust\".\n", + "description": "Client library for Azure Key Vault Certificates \u2014 secure storage and management of certificates.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-keys-rust", "path": "skills\\azure-keyvault-keys-rust", "category": "uncategorized", "name": "azure-keyvault-keys-rust", - "description": "Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys.\nTriggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".\n", + "description": "Client library for Azure Key Vault Keys \u2014 secure storage and management of cryptographic keys.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-keys-ts", @@ -1257,25 +1396,28 @@ "name": "azure-keyvault-keys-ts", "description": "Manage cryptographic keys using Azure Key Vault Keys SDK for JavaScript (@azure/keyvault-keys). Use when creating, encrypting/decrypting, signing, or rotating keys.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-py", "path": "skills\\azure-keyvault-py", "category": "uncategorized", "name": "azure-keyvault-py", - "description": "Azure Key Vault SDK for Python. Use for secrets, keys, and certificates management with secure storage.\nTriggers: \"key vault\", \"SecretClient\", \"KeyClient\", \"CertificateClient\", \"secrets\", \"encryption keys\".\n", + "description": "Secure storage and management for secrets, cryptographic keys, and certificates.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-secrets-rust", "path": "skills\\azure-keyvault-secrets-rust", "category": "uncategorized", "name": "azure-keyvault-secrets-rust", - "description": "Azure Key Vault Secrets SDK for Rust. Use for storing and retrieving secrets, passwords, and API keys.\nTriggers: \"keyvault secrets rust\", \"SecretClient rust\", \"get secret rust\", \"set secret rust\".\n", + "description": "Client library for Azure Key Vault Secrets \u2014 secure storage for passwords, API keys, and other secrets.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-secrets-ts", @@ -1284,16 +1426,18 @@ "name": "azure-keyvault-secrets-ts", "description": "Manage secrets using Azure Key Vault Secrets SDK for JavaScript (@azure/keyvault-secrets). Use when storing and retrieving application secrets or configuration values.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-maps-search-dotnet", "path": "skills\\azure-maps-search-dotnet", "category": "uncategorized", "name": "azure-maps-search-dotnet", - "description": "Azure Maps SDK for .NET. Location-based services including geocoding, routing, rendering, geolocation, and weather. Use for address search, directions, map tiles, IP geolocation, and weather data. Triggers: \"Azure Maps\", \"MapsSearchClient\", \"MapsRoutingClient\", \"MapsRenderingClient\", \"geocoding .NET\", \"route directions\", \"map tiles\", \"geolocation\".\n", + "description": "Azure Maps SDK for .NET providing location-based services: geocoding, routing, rendering, geolocation, and weather.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-messaging-webpubsub-java", @@ -1302,106 +1446,118 @@ "name": "azure-messaging-webpubsub-java", "description": "Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-messaging-webpubsubservice-py", "path": "skills\\azure-messaging-webpubsubservice-py", "category": "uncategorized", "name": "azure-messaging-webpubsubservice-py", - "description": "Azure Web PubSub Service SDK for Python. Use for real-time messaging, WebSocket connections, and pub/sub patterns.\nTriggers: \"azure-messaging-webpubsubservice\", \"WebPubSubServiceClient\", \"real-time\", \"WebSocket\", \"pub/sub\".\n", + "description": "Real-time messaging with WebSocket connections at scale.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apicenter-dotnet", "path": "skills\\azure-mgmt-apicenter-dotnet", "category": "uncategorized", "name": "azure-mgmt-apicenter-dotnet", - "description": "Azure API Center SDK for .NET. Centralized API inventory management with governance, versioning, and discovery. Use for creating API services, workspaces, APIs, versions, definitions, environments, deployments, and metadata schemas. Triggers: \"API Center\", \"ApiCenterService\", \"ApiCenterWorkspace\", \"ApiCenterApi\", \"API inventory\", \"API governance\", \"API versioning\", \"API catalog\", \"API discovery\".\n", + "description": "Centralized API inventory and governance SDK for managing APIs across your organization.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apicenter-py", "path": "skills\\azure-mgmt-apicenter-py", "category": "uncategorized", "name": "azure-mgmt-apicenter-py", - "description": "Azure API Center Management SDK for Python. Use for managing API inventory, metadata, and governance across your organization.\nTriggers: \"azure-mgmt-apicenter\", \"ApiCenterMgmtClient\", \"API Center\", \"API inventory\", \"API governance\".\n", + "description": "Manage API inventory, metadata, and governance in Azure API Center.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apimanagement-dotnet", "path": "skills\\azure-mgmt-apimanagement-dotnet", "category": "uncategorized", "name": "azure-mgmt-apimanagement-dotnet", - "description": "Azure Resource Manager SDK for API Management in .NET. Use for MANAGEMENT PLANE operations: creating/managing APIM services, APIs, products, subscriptions, policies, users, groups, gateways, and backends via Azure Resource Manager. Triggers: \"API Management\", \"APIM service\", \"create APIM\", \"manage APIs\", \"ApiManagementServiceResource\", \"API policies\", \"APIM products\", \"APIM subscriptions\".\n", + "description": "Management plane SDK for provisioning and managing Azure API Management resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apimanagement-py", "path": "skills\\azure-mgmt-apimanagement-py", "category": "uncategorized", "name": "azure-mgmt-apimanagement-py", - "description": "Azure API Management SDK for Python. Use for managing APIM services, APIs, products, subscriptions, and policies.\nTriggers: \"azure-mgmt-apimanagement\", \"ApiManagementClient\", \"APIM\", \"API gateway\", \"API Management\".\n", + "description": "Manage Azure API Management services, APIs, products, and policies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-applicationinsights-dotnet", "path": "skills\\azure-mgmt-applicationinsights-dotnet", "category": "uncategorized", "name": "azure-mgmt-applicationinsights-dotnet", - "description": "Azure Application Insights SDK for .NET. Application performance monitoring and observability resource management. Use for creating Application Insights components, web tests, workbooks, analytics items, and API keys. Triggers: \"Application Insights\", \"ApplicationInsights\", \"App Insights\", \"APM\", \"application monitoring\", \"web tests\", \"availability tests\", \"workbooks\".\n", + "description": "Azure Resource Manager SDK for managing Application Insights resources for application performance monitoring.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-arizeaiobservabilityeval-dotnet", "path": "skills\\azure-mgmt-arizeaiobservabilityeval-dotnet", "category": "uncategorized", "name": "azure-mgmt-arizeaiobservabilityeval-dotnet", - "description": "Azure Resource Manager SDK for Arize AI Observability and Evaluation (.NET). Use when managing Arize AI organizations \non Azure via Azure Marketplace, creating/updating/deleting Arize resources, or integrating Arize ML observability \ninto .NET applications. Triggers: \"Arize AI\", \"ML observability\", \"ArizeAIObservabilityEval\", \"Arize organization\".\n", + "description": ".NET SDK for managing Arize AI Observability and Evaluation resources on Azure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-botservice-dotnet", "path": "skills\\azure-mgmt-botservice-dotnet", "category": "uncategorized", "name": "azure-mgmt-botservice-dotnet", - "description": "Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: \"Bot Service\", \"BotResource\", \"Azure Bot\", \"DirectLine channel\", \"Teams channel\", \"bot management .NET\", \"create bot\".\n", + "description": "Management plane SDK for provisioning and managing Azure Bot Service resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-botservice-py", "path": "skills\\azure-mgmt-botservice-py", "category": "uncategorized", "name": "azure-mgmt-botservice-py", - "description": "Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources.\nTriggers: \"azure-mgmt-botservice\", \"AzureBotService\", \"bot management\", \"conversational AI\", \"bot channels\".\n", + "description": "Manage Azure Bot Service resources including bots, channels, and connections.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-fabric-dotnet", "path": "skills\\azure-mgmt-fabric-dotnet", "category": "uncategorized", "name": "azure-mgmt-fabric-dotnet", - "description": "Azure Resource Manager SDK for Fabric in .NET. Use for MANAGEMENT PLANE operations: provisioning, scaling, suspending/resuming Microsoft Fabric capacities, checking name availability, and listing SKUs via Azure Resource Manager. Triggers: \"Fabric capacity\", \"create capacity\", \"suspend capacity\", \"resume capacity\", \"Fabric SKU\", \"provision Fabric\", \"ARM Fabric\", \"FabricCapacityResource\".\n", + "description": "Management plane SDK for provisioning and managing Microsoft Fabric capacity resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-fabric-py", "path": "skills\\azure-mgmt-fabric-py", "category": "uncategorized", "name": "azure-mgmt-fabric-py", - "description": "Azure Fabric Management SDK for Python. Use for managing Microsoft Fabric capacities and resources.\nTriggers: \"azure-mgmt-fabric\", \"FabricMgmtClient\", \"Fabric capacity\", \"Microsoft Fabric\", \"Power BI capacity\".\n", + "description": "Manage Microsoft Fabric capacities and resources programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-mongodbatlas-dotnet", @@ -1410,16 +1566,18 @@ "name": "azure-mgmt-mongodbatlas-dotnet", "description": "Manage MongoDB Atlas Organizations as Azure ARM resources using Azure.ResourceManager.MongoDBAtlas SDK. Use when creating, updating, listing, or deleting MongoDB Atlas organizations through Azure M...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-weightsandbiases-dotnet", "path": "skills\\azure-mgmt-weightsandbiases-dotnet", "category": "uncategorized", "name": "azure-mgmt-weightsandbiases-dotnet", - "description": "Azure Weights & Biases SDK for .NET. ML experiment tracking and model management via Azure Marketplace. Use for creating W&B instances, managing SSO, marketplace integration, and ML observability. Triggers: \"Weights and Biases\", \"W&B\", \"WeightsAndBiases\", \"ML experiment tracking\", \"model registry\", \"experiment management\", \"wandb\".\n", + "description": "Azure Resource Manager SDK for deploying and managing Weights & Biases ML experiment tracking instances via Azure Marketplace.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-microsoft-playwright-testing-ts", @@ -1428,52 +1586,58 @@ "name": "azure-microsoft-playwright-testing-ts", "description": "Run Playwright tests at scale using Azure Playwright Workspaces (formerly Microsoft Playwright Testing). Use when scaling browser tests across cloud-hosted browsers, integrating with CI/CD pipeline...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-ingestion-java", "path": "skills\\azure-monitor-ingestion-java", "category": "uncategorized", "name": "azure-monitor-ingestion-java", - "description": "Azure Monitor Ingestion SDK for Java. Send custom logs to Azure Monitor via Data Collection Rules (DCR) and Data Collection Endpoints (DCE).\nTriggers: \"LogsIngestionClient java\", \"azure monitor ingestion java\", \"custom logs java\", \"DCR java\", \"data collection rule java\".\n", + "description": "Client library for sending custom logs to Azure Monitor using the Logs Ingestion API via Data Collection Rules.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-ingestion-py", "path": "skills\\azure-monitor-ingestion-py", "category": "uncategorized", "name": "azure-monitor-ingestion-py", - "description": "Azure Monitor Ingestion SDK for Python. Use for sending custom logs to Log Analytics workspace via Logs Ingestion API.\nTriggers: \"azure-monitor-ingestion\", \"LogsIngestionClient\", \"custom logs\", \"DCR\", \"data collection rule\", \"Log Analytics\".\n", + "description": "Send custom logs to Azure Monitor Log Analytics workspace using the Logs Ingestion API.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-exporter-java", "path": "skills\\azure-monitor-opentelemetry-exporter-java", "category": "uncategorized", "name": "azure-monitor-opentelemetry-exporter-java", - "description": "Azure Monitor OpenTelemetry Exporter for Java. Export OpenTelemetry traces, metrics, and logs to Azure Monitor/Application Insights.\nTriggers: \"AzureMonitorExporter java\", \"opentelemetry azure java\", \"application insights java otel\", \"azure monitor tracing java\".\nNote: This package is DEPRECATED. Migrate to azure-monitor-opentelemetry-autoconfigure.\n", + "description": "> **\u26a0\ufe0f DEPRECATION NOTICE**: This package is deprecated. Migrate to `azure-monitor-opentelemetry-autoconfigure`. > > See [Migration Guide](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/monitor/azure-monitor-opentelemetry-exporter/MIGRATIO", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-exporter-py", "path": "skills\\azure-monitor-opentelemetry-exporter-py", "category": "uncategorized", "name": "azure-monitor-opentelemetry-exporter-py", - "description": "Azure Monitor OpenTelemetry Exporter for Python. Use for low-level OpenTelemetry export to Application Insights.\nTriggers: \"azure-monitor-opentelemetry-exporter\", \"AzureMonitorTraceExporter\", \"AzureMonitorMetricExporter\", \"AzureMonitorLogExporter\".\n", + "description": "Low-level exporter for sending OpenTelemetry traces, metrics, and logs to Application Insights.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-py", "path": "skills\\azure-monitor-opentelemetry-py", "category": "uncategorized", "name": "azure-monitor-opentelemetry-py", - "description": "Azure Monitor OpenTelemetry Distro for Python. Use for one-line Application Insights setup with auto-instrumentation.\nTriggers: \"azure-monitor-opentelemetry\", \"configure_azure_monitor\", \"Application Insights\", \"OpenTelemetry distro\", \"auto-instrumentation\".\n", + "description": "One-line setup for Application Insights with OpenTelemetry auto-instrumentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-ts", @@ -1482,115 +1646,128 @@ "name": "azure-monitor-opentelemetry-ts", "description": "Instrument applications with Azure Monitor and OpenTelemetry for JavaScript (@azure/monitor-opentelemetry). Use when adding distributed tracing, metrics, and logs to Node.js applications with Appli...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-query-java", "path": "skills\\azure-monitor-query-java", "category": "uncategorized", "name": "azure-monitor-query-java", - "description": "Azure Monitor Query SDK for Java. Execute Kusto queries against Log Analytics workspaces and query metrics from Azure resources.\nTriggers: \"LogsQueryClient java\", \"MetricsQueryClient java\", \"kusto query java\", \"log analytics java\", \"azure monitor query java\".\nNote: This package is deprecated. Migrate to azure-monitor-query-logs and azure-monitor-query-metrics.\n", + "description": "> **DEPRECATION NOTICE**: This package is deprecated in favor of: > - `azure-monitor-query-logs` \u2014 For Log Analytics queries > - `azure-monitor-query-metrics` \u2014 For metrics queries > > See migration guides: [Logs Migration](https://github.com/Azure/a", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-query-py", "path": "skills\\azure-monitor-query-py", "category": "uncategorized", "name": "azure-monitor-query-py", - "description": "Azure Monitor Query SDK for Python. Use for querying Log Analytics workspaces and Azure Monitor metrics.\nTriggers: \"azure-monitor-query\", \"LogsQueryClient\", \"MetricsQueryClient\", \"Log Analytics\", \"Kusto queries\", \"Azure metrics\".\n", + "description": "Query logs and metrics from Azure Monitor and Log Analytics workspaces.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-postgres-ts", "path": "skills\\azure-postgres-ts", "category": "uncategorized", "name": "azure-postgres-ts", - "description": "Connect to Azure Database for PostgreSQL Flexible Server from Node.js/TypeScript using the pg (node-postgres) package. Use for PostgreSQL queries, connection pooling, transactions, and Microsoft Entra ID (passwordless) authentication. Triggers: \"PostgreSQL\", \"postgres\", \"pg client\", \"node-postgres\", \"Azure PostgreSQL connection\", \"PostgreSQL TypeScript\", \"pg Pool\", \"passwordless postgres\".\n", + "description": "Connect to Azure Database for PostgreSQL Flexible Server using the `pg` (node-postgres) package with support for password and Microsoft Entra ID (passwordless) authentication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-cosmosdb-dotnet", "path": "skills\\azure-resource-manager-cosmosdb-dotnet", "category": "uncategorized", "name": "azure-resource-manager-cosmosdb-dotnet", - "description": "Azure Resource Manager SDK for Cosmos DB in .NET. Use for MANAGEMENT PLANE operations: creating/managing Cosmos DB accounts, databases, containers, throughput settings, and RBAC via Azure Resource Manager. NOT for data plane operations (CRUD on documents) - use Microsoft.Azure.Cosmos for that. Triggers: \"Cosmos DB account\", \"create Cosmos account\", \"manage Cosmos resources\", \"ARM Cosmos\", \"CosmosDBAccountResource\", \"provision Cosmos DB\".\n", + "description": "Management plane SDK for provisioning and managing Azure Cosmos DB resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-durabletask-dotnet", "path": "skills\\azure-resource-manager-durabletask-dotnet", "category": "uncategorized", "name": "azure-resource-manager-durabletask-dotnet", - "description": "Azure Resource Manager SDK for Durable Task Scheduler in .NET. Use for MANAGEMENT PLANE operations: creating/managing Durable Task Schedulers, Task Hubs, and retention policies via Azure Resource Manager. Triggers: \"Durable Task Scheduler\", \"create scheduler\", \"task hub\", \"DurableTaskSchedulerResource\", \"provision Durable Task\", \"orchestration scheduler\".\n", + "description": "Management plane SDK for provisioning and managing Azure Durable Task Scheduler resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-mysql-dotnet", "path": "skills\\azure-resource-manager-mysql-dotnet", "category": "uncategorized", "name": "azure-resource-manager-mysql-dotnet", - "description": "Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: \"MySQL\", \"MySqlFlexibleServer\", \"MySQL Flexible Server\", \"Azure Database for MySQL\", \"MySQL database management\", \"MySQL firewall\", \"MySQL backup\".\n", + "description": "Azure Resource Manager SDK for managing MySQL Flexible Server deployments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-playwright-dotnet", "path": "skills\\azure-resource-manager-playwright-dotnet", "category": "uncategorized", "name": "azure-resource-manager-playwright-dotnet", - "description": "Azure Resource Manager SDK for Microsoft Playwright Testing in .NET. Use for MANAGEMENT PLANE operations: creating/managing Playwright Testing workspaces, checking name availability, and managing workspace quotas via Azure Resource Manager. NOT for running Playwright tests - use Azure.Developer.MicrosoftPlaywrightTesting.NUnit for that. Triggers: \"Playwright workspace\", \"create Playwright Testing workspace\", \"manage Playwright resources\", \"ARM Playwright\", \"PlaywrightWorkspaceResource\", \"provision Playwright Testing\".\n", + "description": "Management plane SDK for provisioning and managing Microsoft Playwright Testing workspaces via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-postgresql-dotnet", "path": "skills\\azure-resource-manager-postgresql-dotnet", "category": "uncategorized", "name": "azure-resource-manager-postgresql-dotnet", - "description": "Azure PostgreSQL Flexible Server SDK for .NET. Database management for PostgreSQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: \"PostgreSQL\", \"PostgreSqlFlexibleServer\", \"PostgreSQL Flexible Server\", \"Azure Database for PostgreSQL\", \"PostgreSQL database management\", \"PostgreSQL firewall\", \"PostgreSQL backup\", \"Postgres\".\n", + "description": "Azure Resource Manager SDK for managing PostgreSQL Flexible Server deployments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-redis-dotnet", "path": "skills\\azure-resource-manager-redis-dotnet", "category": "uncategorized", "name": "azure-resource-manager-redis-dotnet", - "description": "Azure Resource Manager SDK for Redis in .NET. Use for MANAGEMENT PLANE operations: creating/managing Azure Cache for Redis instances, firewall rules, access keys, patch schedules, linked servers (geo-replication), and private endpoints via Azure Resource Manager. NOT for data plane operations (get/set keys, pub/sub) - use StackExchange.Redis for that. Triggers: \"Redis cache\", \"create Redis\", \"manage Redis\", \"ARM Redis\", \"RedisResource\", \"provision Redis\", \"Azure Cache for Redis\".\n", + "description": "Management plane SDK for provisioning and managing Azure Cache for Redis resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-sql-dotnet", "path": "skills\\azure-resource-manager-sql-dotnet", "category": "uncategorized", "name": "azure-resource-manager-sql-dotnet", - "description": "Azure Resource Manager SDK for Azure SQL in .NET. Use for MANAGEMENT PLANE operations: creating/managing SQL servers, databases, elastic pools, firewall rules, and failover groups via Azure Resource Manager. NOT for data plane operations (executing queries) - use Microsoft.Data.SqlClient for that. Triggers: \"SQL server\", \"create SQL database\", \"manage SQL resources\", \"ARM SQL\", \"SqlServerResource\", \"provision Azure SQL\", \"elastic pool\", \"firewall rule\".\n", + "description": "Management plane SDK for provisioning and managing Azure SQL resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-search-documents-dotnet", "path": "skills\\azure-search-documents-dotnet", "category": "uncategorized", "name": "azure-search-documents-dotnet", - "description": "Azure AI Search SDK for .NET (Azure.Search.Documents). Use for building search applications with full-text, vector, semantic, and hybrid search. Covers SearchClient (queries, document CRUD), SearchIndexClient (index management), and SearchIndexerClient (indexers, skillsets). Triggers: \"Azure Search .NET\", \"SearchClient\", \"SearchIndexClient\", \"vector search C#\", \"semantic search .NET\", \"hybrid search\", \"Azure.Search.Documents\".\n", + "description": "Build search applications with full-text, vector, semantic, and hybrid search capabilities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-search-documents-py", "path": "skills\\azure-search-documents-py", "category": "uncategorized", "name": "azure-search-documents-py", - "description": "Azure AI Search SDK for Python. Use for vector search, hybrid search, semantic ranking, indexing, and skillsets.\nTriggers: \"azure-search-documents\", \"SearchClient\", \"SearchIndexClient\", \"vector search\", \"hybrid search\", \"semantic search\".\n", + "description": "Full-text, vector, and hybrid search with AI enrichment capabilities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-search-documents-ts", @@ -1599,16 +1776,18 @@ "name": "azure-search-documents-ts", "description": "Build search applications using Azure AI Search SDK for JavaScript (@azure/search-documents). Use when creating/managing indexes, implementing vector/hybrid search, semantic ranking, or building ag...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-security-keyvault-keys-dotnet", "path": "skills\\azure-security-keyvault-keys-dotnet", "category": "uncategorized", "name": "azure-security-keyvault-keys-dotnet", - "description": "Azure Key Vault Keys SDK for .NET. Client library for managing cryptographic keys in Azure Key Vault and Managed HSM. Use for key creation, rotation, encryption, decryption, signing, and verification. Triggers: \"Key Vault keys\", \"KeyClient\", \"CryptographyClient\", \"RSA key\", \"EC key\", \"encrypt decrypt .NET\", \"key rotation\", \"HSM\".\n", + "description": "Client library for managing cryptographic keys in Azure Key Vault and Managed HSM.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-security-keyvault-keys-java", @@ -1617,7 +1796,8 @@ "name": "azure-security-keyvault-keys-java", "description": "Azure Key Vault Keys Java SDK for cryptographic key management. Use when creating, managing, or using RSA/EC keys, performing encrypt/decrypt/sign/verify operations, or working with HSM-backed keys.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-security-keyvault-secrets-java", @@ -1626,25 +1806,28 @@ "name": "azure-security-keyvault-secrets-java", "description": "Azure Key Vault Secrets Java SDK for secret management. Use when storing, retrieving, or managing passwords, API keys, connection strings, or other sensitive configuration data.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-servicebus-dotnet", "path": "skills\\azure-servicebus-dotnet", "category": "uncategorized", "name": "azure-servicebus-dotnet", - "description": "Azure Service Bus SDK for .NET. Enterprise messaging with queues, topics, subscriptions, and sessions. Use for reliable message delivery, pub/sub patterns, dead letter handling, and background processing. Triggers: \"Service Bus\", \"ServiceBusClient\", \"ServiceBusSender\", \"ServiceBusReceiver\", \"ServiceBusProcessor\", \"message queue\", \"pub/sub .NET\", \"dead letter queue\".\n", + "description": "Enterprise messaging SDK for reliable message delivery with queues, topics, subscriptions, and sessions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-servicebus-py", "path": "skills\\azure-servicebus-py", "category": "uncategorized", "name": "azure-servicebus-py", - "description": "Azure Service Bus SDK for Python messaging. Use for queues, topics, subscriptions, and enterprise messaging patterns.\nTriggers: \"service bus\", \"ServiceBusClient\", \"queue\", \"topic\", \"subscription\", \"message broker\".\n", + "description": "Enterprise messaging for reliable cloud communication with queues and pub/sub topics.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-servicebus-ts", @@ -1653,16 +1836,18 @@ "name": "azure-servicebus-ts", "description": "Build messaging applications using Azure Service Bus SDK for JavaScript (@azure/service-bus). Use when implementing queues, topics/subscriptions, message sessions, dead-letter handling, or enterpri...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-speech-to-text-rest-py", "path": "skills\\azure-speech-to-text-rest-py", "category": "uncategorized", "name": "azure-speech-to-text-rest-py", - "description": "Azure Speech to Text REST API for short audio (Python). Use for simple speech recognition of audio files up to 60 seconds without the Speech SDK.\nTriggers: \"speech to text REST\", \"short audio transcription\", \"speech recognition REST API\", \"STT REST\", \"recognize speech REST\".\nDO NOT USE FOR: Long audio (>60 seconds), real-time streaming, batch transcription, custom speech models, speech translation. Use Speech SDK or Batch Transcription API instead.\n", + "description": "Simple REST API for speech-to-text transcription of short audio files (up to 60 seconds). No SDK required - just HTTP requests.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-java", @@ -1671,79 +1856,88 @@ "name": "azure-storage-blob-java", "description": "Build blob storage applications with Azure Storage Blob SDK for Java. Use when uploading, downloading, or managing files in Azure Blob Storage, working with containers, or implementing streaming da...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-py", "path": "skills\\azure-storage-blob-py", "category": "uncategorized", "name": "azure-storage-blob-py", - "description": "Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.\nTriggers: \"blob storage\", \"BlobServiceClient\", \"ContainerClient\", \"BlobClient\", \"upload blob\", \"download blob\".\n", + "description": "Client library for Azure Blob Storage \u2014 object storage for unstructured data.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-rust", "path": "skills\\azure-storage-blob-rust", "category": "uncategorized", "name": "azure-storage-blob-rust", - "description": "Azure Blob Storage SDK for Rust. Use for uploading, downloading, and managing blobs and containers.\nTriggers: \"blob storage rust\", \"BlobClient rust\", \"upload blob rust\", \"download blob rust\", \"container rust\".\n", + "description": "Client library for Azure Blob Storage \u2014 Microsoft's object storage solution for the cloud.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-ts", "path": "skills\\azure-storage-blob-ts", "category": "uncategorized", "name": "azure-storage-blob-ts", - "description": "Azure Blob Storage JavaScript/TypeScript SDK (@azure/storage-blob) for blob operations. Use for uploading, downloading, listing, and managing blobs and containers. Supports block blobs, append blobs, page blobs, SAS tokens, and streaming. Triggers: \"blob storage\", \"@azure/storage-blob\", \"BlobServiceClient\", \"ContainerClient\", \"upload blob\", \"download blob\", \"SAS token\", \"block blob\".\n", + "description": "SDK for Azure Blob Storage operations \u2014 upload, download, list, and manage blobs and containers.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-file-datalake-py", "path": "skills\\azure-storage-file-datalake-py", "category": "uncategorized", "name": "azure-storage-file-datalake-py", - "description": "Azure Data Lake Storage Gen2 SDK for Python. Use for hierarchical file systems, big data analytics, and file/directory operations.\nTriggers: \"data lake\", \"DataLakeServiceClient\", \"FileSystemClient\", \"ADLS Gen2\", \"hierarchical namespace\".\n", + "description": "Hierarchical file system for big data analytics workloads.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-file-share-py", "path": "skills\\azure-storage-file-share-py", "category": "uncategorized", "name": "azure-storage-file-share-py", - "description": "Azure Storage File Share SDK for Python. Use for SMB file shares, directories, and file operations in the cloud.\nTriggers: \"azure-storage-file-share\", \"ShareServiceClient\", \"ShareClient\", \"file share\", \"SMB\".\n", + "description": "Manage SMB file shares for cloud-native and lift-and-shift scenarios.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-file-share-ts", "path": "skills\\azure-storage-file-share-ts", "category": "uncategorized", "name": "azure-storage-file-share-ts", - "description": "Azure File Share JavaScript/TypeScript SDK (@azure/storage-file-share) for SMB file share operations. Use for creating shares, managing directories, uploading/downloading files, and handling file metadata. Supports Azure Files SMB protocol scenarios. Triggers: \"file share\", \"@azure/storage-file-share\", \"ShareServiceClient\", \"ShareClient\", \"SMB\", \"Azure Files\".\n", + "description": "SDK for Azure File Share operations \u2014 SMB file shares, directories, and file operations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-queue-py", "path": "skills\\azure-storage-queue-py", "category": "uncategorized", "name": "azure-storage-queue-py", - "description": "Azure Queue Storage SDK for Python. Use for reliable message queuing, task distribution, and asynchronous processing.\nTriggers: \"queue storage\", \"QueueServiceClient\", \"QueueClient\", \"message queue\", \"dequeue\".\n", + "description": "Simple, cost-effective message queuing for asynchronous communication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-queue-ts", "path": "skills\\azure-storage-queue-ts", "category": "uncategorized", "name": "azure-storage-queue-ts", - "description": "Azure Queue Storage JavaScript/TypeScript SDK (@azure/storage-queue) for message queue operations. Use for sending, receiving, peeking, and deleting messages in queues. Supports visibility timeout, message encoding, and batch operations. Triggers: \"queue storage\", \"@azure/storage-queue\", \"QueueServiceClient\", \"QueueClient\", \"send message\", \"receive message\", \"dequeue\", \"visibility timeout\".\n", + "description": "SDK for Azure Queue Storage operations \u2014 send, receive, peek, and manage messages in queues.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-web-pubsub-ts", @@ -1752,16 +1946,18 @@ "name": "azure-web-pubsub-ts", "description": "Build real-time messaging applications using Azure Web PubSub SDKs for JavaScript (@azure/web-pubsub, @azure/web-pubsub-client). Use when implementing WebSocket-based real-time features, pub/sub me...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-architect", "path": "skills\\backend-architect", "category": "uncategorized", "name": "backend-architect", - "description": "Expert backend architect specializing in scalable API design,\nmicroservices architecture, and distributed systems. Masters REST/GraphQL/gRPC\nAPIs, event-driven architectures, service mesh patterns, and modern backend\nframeworks. Handles service boundary definition, inter-service communication,\nresilience patterns, and observability. Use PROACTIVELY when creating new\nbackend services or APIs.\n", + "description": "You are a backend system architect specializing in scalable, resilient, and maintainable backend systems and APIs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-dev-guidelines", @@ -1770,7 +1966,8 @@ "name": "backend-dev-guidelines", "description": "Opinionated backend development standards for Node.js + Express + TypeScript microservices. Covers layered architecture, BaseController pattern, dependency injection, Prisma repositories, Zod valid...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-development-feature-development", @@ -1779,16 +1976,18 @@ "name": "backend-development-feature-development", "description": "Orchestrate end-to-end backend feature development from requirements to deployment. Use when coordinating multi-phase feature delivery across teams and services.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-security-coder", "path": "skills\\backend-security-coder", "category": "uncategorized", "name": "backend-security-coder", - "description": "Expert in secure backend coding practices specializing in input\nvalidation, authentication, and API security. Use PROACTIVELY for backend\nsecurity implementations or security code reviews.\n", + "description": "- Working on backend security coder tasks or workflows - Needing guidance, best practices, or checklists for backend security coder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backtesting-frameworks", @@ -1797,7 +1996,8 @@ "name": "backtesting-frameworks", "description": "Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strateg...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bamboohr-automation", @@ -1806,7 +2006,8 @@ "name": "bamboohr-automation", "description": "Automate BambooHR tasks via Rube MCP (Composio): employees, time-off, benefits, dependents, employee updates. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "base", @@ -1815,7 +2016,8 @@ "name": "base", "description": "Database management, forms, reports, and data operations with LibreOffice Base.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "basecamp-automation", @@ -1824,7 +2026,8 @@ "name": "basecamp-automation", "description": "Automate Basecamp project management, to-dos, messages, people, and to-do list organization via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-defensive-patterns", @@ -1833,7 +2036,8 @@ "name": "bash-defensive-patterns", "description": "Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-linux", @@ -1842,16 +2046,18 @@ "name": "bash-linux", "description": "Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-pro", "path": "skills\\bash-pro", "category": "uncategorized", "name": "bash-pro", - "description": "Master of defensive Bash scripting for production automation, CI/CD\npipelines, and system utilities. Expert in safe, portable, and testable shell\nscripts.\n", + "description": "- Writing or reviewing Bash scripts for automation, CI/CD, or ops - Hardening shell scripts for safety and portability", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-scripting", @@ -1860,7 +2066,8 @@ "name": "bash-scripting", "description": "Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "bats-testing-patterns", @@ -1869,7 +2076,8 @@ "name": "bats-testing-patterns", "description": "Master Bash Automated Testing System (Bats) for comprehensive shell script testing. Use when writing tests for shell scripts, CI/CD pipelines, or requiring test-driven development of shell utilities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bazel-build-optimization", @@ -1878,7 +2086,8 @@ "name": "bazel-build-optimization", "description": "Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "beautiful-prose", @@ -1887,7 +2096,8 @@ "name": "beautiful-prose", "description": "Hard-edged writing style contract for timeless, forceful English prose without AI tics", "risk": "safe", - "source": "https://github.com/SHADOWPR0/beautiful_prose" + "source": "https://github.com/SHADOWPR0/beautiful_prose", + "date_added": "2025-02-26" }, { "id": "behavioral-modes", @@ -1896,7 +2106,8 @@ "name": "behavioral-modes", "description": "AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bevy-ecs-expert", @@ -1905,7 +2116,8 @@ "name": "bevy-ecs-expert", "description": "Master Bevy's Entity Component System (ECS) in Rust, covering Systems, Queries, Resources, and parallel scheduling.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "billing-automation", @@ -1914,7 +2126,8 @@ "name": "billing-automation", "description": "Build automated billing systems for recurring payments, invoicing, subscription lifecycle, and dunning management. Use when implementing subscription billing, automating invoicing, or managing recu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "binary-analysis-patterns", @@ -1923,7 +2136,8 @@ "name": "binary-analysis-patterns", "description": "Master binary analysis patterns including disassembly, decompilation, control flow analysis, and code pattern recognition. Use when analyzing executables, understanding compiled code, or performing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bitbucket-automation", @@ -1932,16 +2146,18 @@ "name": "bitbucket-automation", "description": "Automate Bitbucket repositories, pull requests, branches, issues, and workspace management via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "blockchain-developer", "path": "skills\\blockchain-developer", "category": "uncategorized", "name": "blockchain-developer", - "description": "Build production-ready Web3 applications, smart contracts, and\ndecentralized systems. Implements DeFi protocols, NFT platforms, DAOs, and\nenterprise blockchain integrations. Use PROACTIVELY for smart contracts, Web3\napps, DeFi protocols, or blockchain infrastructure.\n", + "description": "- Working on blockchain developer tasks or workflows - Needing guidance, best practices, or checklists for blockchain developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "blockrun", @@ -1950,7 +2166,8 @@ "name": "blockrun", "description": "Use when user needs capabilities Claude lacks (image generation, real-time X/Twitter data) or explicitly requests external models (\\\"blockrun\\\", \\\"use grok\\\", \\\"use gpt\\\", \\\"da...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "box-automation", @@ -1959,7 +2176,8 @@ "name": "box-automation", "description": "Automate Box cloud storage operations including file upload/download, search, folder management, sharing, collaborations, and metadata queries via Rube MCP (Composio). Always search tools first for...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brainstorming", @@ -1968,7 +2186,8 @@ "name": "brainstorming", "description": "Use before creative or constructive work (features, architecture, behavior). Transforms vague ideas into validated designs through disciplined reasoning and collaboration.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brand-guidelines-anthropic", @@ -1977,7 +2196,8 @@ "name": "brand-guidelines-anthropic", "description": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatt...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brand-guidelines-community", @@ -1986,7 +2206,8 @@ "name": "brand-guidelines-community", "description": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatt...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brevo-automation", @@ -1995,7 +2216,8 @@ "name": "brevo-automation", "description": "Automate Brevo (Sendinblue) tasks via Rube MCP (Composio): manage email campaigns, create/edit templates, track senders, and monitor campaign performance. Always search tools first for current sche...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "broken-authentication", @@ -2004,7 +2226,8 @@ "name": "broken-authentication", "description": "This skill should be used when the user asks to \"test for broken authentication vulnerabilities\", \"assess session management security\", \"perform credential stuffing tests\", \"evaluate ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "browser-automation", @@ -2013,7 +2236,8 @@ "name": "browser-automation", "description": "Browser automation powers web testing, scraping, and AI agent interactions. The difference between a flaky script and a reliable system comes down to understanding selectors, waiting strategies, an...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "browser-extension-builder", @@ -2022,7 +2246,8 @@ "name": "browser-extension-builder", "description": "Expert in building browser extensions that solve real problems - Chrome, Firefox, and cross-browser extensions. Covers extension architecture, manifest v3, content scripts, popup UIs, monetization ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "bullmq-specialist", @@ -2031,7 +2256,8 @@ "name": "bullmq-specialist", "description": "BullMQ expert for Redis-backed job queues, background processing, and reliable async execution in Node.js/TypeScript applications. Use when: bullmq, bull queue, redis queue, background job, job queue.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "bun-development", @@ -2040,7 +2266,8 @@ "name": "bun-development", "description": "Modern JavaScript/TypeScript development with Bun runtime. Covers package management, bundling, testing, and migration from Node.js. Use when working with Bun, optimizing JS/TS development speed, o...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "burp-suite-testing", @@ -2049,16 +2276,18 @@ "name": "burp-suite-testing", "description": "This skill should be used when the user asks to \"intercept HTTP traffic\", \"modify web requests\", \"use Burp Suite for testing\", \"perform web vulnerability scanning\", \"test with Burp ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "business-analyst", "path": "skills\\business-analyst", "category": "uncategorized", "name": "business-analyst", - "description": "Master modern business analysis with AI-powered analytics,\nreal-time dashboards, and data-driven insights. Build comprehensive KPI\nframeworks, predictive models, and strategic recommendations. Use PROACTIVELY\nfor business intelligence or strategic analysis.\n", + "description": "- Working on business analyst tasks or workflows - Needing guidance, best practices, or checklists for business analyst", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "busybox-on-windows", @@ -2067,16 +2296,18 @@ "name": "busybox-on-windows", "description": "How to use a Win32 build of BusyBox to run many of the standard UNIX command line tools on Windows.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c-pro", "path": "skills\\c-pro", "category": "uncategorized", "name": "c-pro", - "description": "Write efficient C code with proper memory management, pointer arithmetic, and system calls. Handles embedded systems, kernel modules, and performance-critical code. Use PROACTIVELY for C optimization, memory issues, or system programming.", + "description": "Write efficient C code with proper memory management, pointer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-architecture-c4-architecture", @@ -2085,43 +2316,48 @@ "name": "c4-architecture-c4-architecture", "description": "Generate comprehensive C4 architecture documentation for an existing repository/codebase using a bottom-up analysis approach.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-code", "path": "skills\\c4-code", "category": "uncategorized", "name": "c4-code", - "description": "Expert C4 Code-level documentation specialist. Analyzes code\ndirectories to create comprehensive C4 code-level documentation including\nfunction signatures, arguments, dependencies, and code structure. Use when\ndocumenting code at the lowest C4 level for individual directories and code\nmodules.\n", + "description": "- Working on c4 code level: [directory name] tasks or workflows - Needing guidance, best practices, or checklists for c4 code level: [directory name]", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-component", "path": "skills\\c4-component", "category": "uncategorized", "name": "c4-component", - "description": "Expert C4 Component-level documentation specialist. Synthesizes C4\nCode-level documentation into Component-level architecture, defining component\nboundaries, interfaces, and relationships. Creates component diagrams and\ndocumentation. Use when synthesizing code-level documentation into logical\ncomponents.\n", + "description": "- Working on c4 component level: [component name] tasks or workflows - Needing guidance, best practices, or checklists for c4 component level: [component name]", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-container", "path": "skills\\c4-container", "category": "uncategorized", "name": "c4-container", - "description": "Expert C4 Container-level documentation specialist. Synthesizes\nComponent-level documentation into Container-level architecture, mapping\ncomponents to deployment units, documenting container interfaces as APIs, and\ncreating container diagrams. Use when synthesizing components into deployment\ncontainers and documenting system deployment architecture.\n", + "description": "- Working on c4 container level: system deployment tasks or workflows - Needing guidance, best practices, or checklists for c4 container level: system deployment", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-context", "path": "skills\\c4-context", "category": "uncategorized", "name": "c4-context", - "description": "Expert C4 Context-level documentation specialist. Creates\nhigh-level system context diagrams, documents personas, user journeys, system\nfeatures, and external dependencies. Synthesizes container and component\ndocumentation with system documentation to create comprehensive context-level\narchitecture. Use when creating the highest-level C4 system context\ndocumentation.\n", + "description": "- Working on c4 context level: system context tasks or workflows - Needing guidance, best practices, or checklists for c4 context level: system context", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cal-com-automation", @@ -2130,7 +2366,8 @@ "name": "cal-com-automation", "description": "Automate Cal.com tasks via Rube MCP (Composio): manage bookings, check availability, configure webhooks, and handle teams. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "calc", @@ -2139,7 +2376,8 @@ "name": "calc", "description": "Spreadsheet creation, format conversion (ODS/XLSX/CSV), formulas, data automation with LibreOffice Calc.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "calendly-automation", @@ -2148,7 +2386,8 @@ "name": "calendly-automation", "description": "Automate Calendly scheduling, event management, invitee tracking, availability checks, and organization administration via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "canva-automation", @@ -2157,7 +2396,8 @@ "name": "canva-automation", "description": "Automate Canva tasks via Rube MCP (Composio): designs, exports, folders, brand templates, autofill. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "canvas-design", @@ -2166,16 +2406,18 @@ "name": "canvas-design", "description": "Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "carrier-relationship-management", "path": "skills\\carrier-relationship-management", "category": "uncategorized", "name": "carrier-relationship-management", - "description": "Codified expertise for managing carrier portfolios, negotiating freight rates, tracking carrier performance, allocating freight, and maintaining strategic carrier relationships. Informed by transportation managers with 15+ years experience. Includes scorecarding frameworks, RFP processes, market intelligence, and compliance vetting. Use when managing carriers, negotiating rates, evaluating carrier performance, or building freight strategies.\n", + "description": "Use this skill when building and managing a carrier network, conducting freight RFPs, negotiating linehaul and accessorial rates, tracking carrier KPIs via scorecards, or ensuring regulatory compliance of transportation partners.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "cc-skill-backend-patterns", @@ -2184,7 +2426,8 @@ "name": "cc-skill-backend-patterns", "description": "Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-clickhouse-io", @@ -2193,7 +2436,8 @@ "name": "cc-skill-clickhouse-io", "description": "ClickHouse database patterns, query optimization, analytics, and data engineering best practices for high-performance analytical workloads.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-coding-standards", @@ -2202,7 +2446,8 @@ "name": "cc-skill-coding-standards", "description": "Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-continuous-learning", @@ -2211,7 +2456,8 @@ "name": "cc-skill-continuous-learning", "description": "Development skill from everything-claude-code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-frontend-patterns", @@ -2220,7 +2466,8 @@ "name": "cc-skill-frontend-patterns", "description": "Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-project-guidelines-example", @@ -2229,7 +2476,8 @@ "name": "cc-skill-project-guidelines-example", "description": "Project Guidelines Skill (Example)", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-security-review", @@ -2238,7 +2486,8 @@ "name": "cc-skill-security-review", "description": "Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist a...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-strategic-compact", @@ -2247,7 +2496,8 @@ "name": "cc-skill-strategic-compact", "description": "Development skill from everything-claude-code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cdk-patterns", @@ -2256,7 +2506,8 @@ "name": "cdk-patterns", "description": "Common AWS CDK patterns and constructs for building cloud infrastructure with TypeScript, Python, or Java. Use when designing reusable CDK stacks and L3 constructs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "changelog-automation", @@ -2265,7 +2516,8 @@ "name": "changelog-automation", "description": "Automate changelog generation from commits, PRs, and releases following Keep a Changelog format. Use when setting up release workflows, generating release notes, or standardizing commit conventions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "chrome-extension-developer", @@ -2274,7 +2526,8 @@ "name": "chrome-extension-developer", "description": "Expert in building Chrome Extensions using Manifest V3. Covers background scripts, service workers, content scripts, and cross-context communication.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cicd-automation-workflow-automate", @@ -2283,7 +2536,8 @@ "name": "cicd-automation-workflow-automate", "description": "You are a workflow automation expert specializing in creating efficient CI/CD pipelines, GitHub Actions workflows, and automated development processes. Design automation that reduces manual work, i...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "circleci-automation", @@ -2292,7 +2546,8 @@ "name": "circleci-automation", "description": "Automate CircleCI tasks via Rube MCP (Composio): trigger pipelines, monitor workflows/jobs, retrieve artifacts and test metadata. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "clarity-gate", @@ -2301,7 +2556,8 @@ "name": "clarity-gate", "description": "Pre-ingestion verification for epistemic quality in RAG systems with 9-point verification and Two-Round HITL workflow", "risk": "safe", - "source": "https://github.com/frmoretto/clarity-gate" + "source": "https://github.com/frmoretto/clarity-gate", + "date_added": "2025-02-26" }, { "id": "claude-ally-health", @@ -2310,7 +2566,8 @@ "name": "claude-ally-health", "description": "A health assistant skill for medical information analysis, symptom tracking, and wellness guidance.", "risk": "safe", - "source": "https://github.com/huifer/Claude-Ally-Health" + "source": "https://github.com/huifer/Claude-Ally-Health", + "date_added": "2025-02-26" }, { "id": "claude-code-guide", @@ -2319,7 +2576,8 @@ "name": "claude-code-guide", "description": "Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies \\\"Thinking\\\" keywords, debugging techniques, and best practices for interacting wit...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "claude-d3js-skill", @@ -2328,7 +2586,8 @@ "name": "claude-d3js-skill", "description": "Creating interactive data visualisations using d3.js. This skill should be used when creating custom charts, graphs, network diagrams, geographic visualisations, or any complex SVG-based data visua...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "claude-scientific-skills", @@ -2337,7 +2596,8 @@ "name": "claude-scientific-skills", "description": "Scientific research and analysis skills", "risk": "safe", - "source": "https://github.com/K-Dense-AI/claude-scientific-skills" + "source": "https://github.com/K-Dense-AI/claude-scientific-skills", + "date_added": "2025-02-26" }, { "id": "claude-speed-reader", @@ -2346,7 +2606,8 @@ "name": "claude-speed-reader", "description": "-Speed read Claude's responses at 600+ WPM using RSVP with Spritz-style ORP highlighting", "risk": "safe", - "source": "https://github.com/SeanZoR/claude-speed-reader" + "source": "https://github.com/SeanZoR/claude-speed-reader", + "date_added": "2025-02-26" }, { "id": "claude-win11-speckit-update-skill", @@ -2355,7 +2616,8 @@ "name": "claude-win11-speckit-update-skill", "description": "Windows 11 system management", "risk": "safe", - "source": "https://github.com/NotMyself/claude-win11-speckit-update-skill" + "source": "https://github.com/NotMyself/claude-win11-speckit-update-skill", + "date_added": "2025-02-26" }, { "id": "clean-code", @@ -2364,7 +2626,8 @@ "name": "clean-code", "description": "Applies principles from Robert C. Martin's 'Clean Code'. Use this skill when writing, reviewing, or refactoring code to ensure high quality, readability, and maintainability. Covers naming, functio...", "risk": "safe", - "source": "ClawForge (https://github.com/jackjin1997/ClawForge)" + "source": "ClawForge (https://github.com/jackjin1997/ClawForge)", + "date_added": "2025-02-26" }, { "id": "clerk-auth", @@ -2373,7 +2636,8 @@ "name": "clerk-auth", "description": "Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync Use when: adding authentication, clerk auth, user authentication, sign in, sign up.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "clickup-automation", @@ -2382,7 +2646,8 @@ "name": "clickup-automation", "description": "Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "close-automation", @@ -2391,16 +2656,18 @@ "name": "close-automation", "description": "Automate Close CRM tasks via Rube MCP (Composio): create leads, manage calls/SMS, handle tasks, and track notes. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloud-architect", "path": "skills\\cloud-architect", "category": "uncategorized", "name": "cloud-architect", - "description": "Expert cloud architect specializing in AWS/Azure/GCP multi-cloud\ninfrastructure design, advanced IaC (Terraform/OpenTofu/CDK), FinOps cost\noptimization, and modern architectural patterns. Masters serverless,\nmicroservices, security, compliance, and disaster recovery. Use PROACTIVELY\nfor cloud architecture, cost optimization, migration planning, or multi-cloud\nstrategies.\n", + "description": "- Working on cloud architect tasks or workflows - Needing guidance, best practices, or checklists for cloud architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloud-devops", @@ -2409,7 +2676,8 @@ "name": "cloud-devops", "description": "Cloud infrastructure and DevOps workflow covering AWS, Azure, GCP, Kubernetes, Terraform, CI/CD, monitoring, and cloud-native development.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "cloud-penetration-testing", @@ -2418,7 +2686,8 @@ "name": "cloud-penetration-testing", "description": "This skill should be used when the user asks to \"perform cloud penetration testing\", \"assess Azure or AWS or GCP security\", \"enumerate cloud resources\", \"exploit cloud misconfiguratio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloudflare-workers-expert", @@ -2427,7 +2696,8 @@ "name": "cloudflare-workers-expert", "description": "Expert in Cloudflare Workers and the Edge Computing ecosystem. Covers Wrangler, KV, D1, Durable Objects, and R2 storage.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloudformation-best-practices", @@ -2436,7 +2706,8 @@ "name": "cloudformation-best-practices", "description": "CloudFormation template optimization, nested stacks, drift detection, and production-ready patterns. Use when writing or reviewing CF templates.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "coda-automation", @@ -2445,7 +2716,8 @@ "name": "coda-automation", "description": "Automate Coda tasks via Rube MCP (Composio): manage docs, pages, tables, rows, formulas, permissions, and publishing. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-documentation-code-explain", @@ -2454,7 +2726,8 @@ "name": "code-documentation-code-explain", "description": "You are a code education expert specializing in explaining complex code through clear narratives, visual diagrams, and step-by-step breakdowns. Transform difficult concepts into understandable expl...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-documentation-doc-generate", @@ -2463,7 +2736,8 @@ "name": "code-documentation-doc-generate", "description": "You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-refactoring-context-restore", @@ -2472,7 +2746,8 @@ "name": "code-refactoring-context-restore", "description": "Use when working with code refactoring context restore", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-refactoring-refactor-clean", @@ -2481,7 +2756,8 @@ "name": "code-refactoring-refactor-clean", "description": "You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-refactoring-tech-debt", @@ -2490,7 +2766,8 @@ "name": "code-refactoring-tech-debt", "description": "You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create acti", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-review-ai-ai-review", @@ -2499,7 +2776,8 @@ "name": "code-review-ai-ai-review", "description": "You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, C", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-review-checklist", @@ -2508,7 +2786,8 @@ "name": "code-review-checklist", "description": "Comprehensive checklist for conducting thorough code reviews covering functionality, security, performance, and maintainability", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-review-excellence", @@ -2517,16 +2796,18 @@ "name": "code-review-excellence", "description": "Master effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-reviewer", "path": "skills\\code-reviewer", "category": "uncategorized", "name": "code-reviewer", - "description": "Elite code review expert specializing in modern AI-powered code analysis, security vulnerabilities, performance optimization, and production reliability. Masters static analysis tools, security scanning, and configuration review with 2024/2025 best practices. Use PROACTIVELY for code quality assurance.", + "description": "Elite code review expert specializing in modern AI-powered code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codebase-cleanup-deps-audit", @@ -2535,7 +2816,8 @@ "name": "codebase-cleanup-deps-audit", "description": "You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codebase-cleanup-refactor-clean", @@ -2544,7 +2826,8 @@ "name": "codebase-cleanup-refactor-clean", "description": "You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codebase-cleanup-tech-debt", @@ -2553,7 +2836,8 @@ "name": "codebase-cleanup-tech-debt", "description": "You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create acti", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codex-review", @@ -2562,7 +2846,8 @@ "name": "codex-review", "description": "Professional code review with auto CHANGELOG generation, integrated with Codex AI", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "commit", @@ -2571,16 +2856,18 @@ "name": "commit", "description": "Create commit messages following Sentry conventions. Use when committing code changes, writing commit messages, or formatting git history. Follows conventional commits with Sentry-specific issue re...", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/commit" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/commit", + "date_added": "2025-02-26" }, { "id": "competitive-landscape", "path": "skills\\competitive-landscape", "category": "uncategorized", "name": "competitive-landscape", - "description": "This skill should be used when the user asks to \\\\\\\"analyze\ncompetitors\", \"assess competitive landscape\", \"identify differentiation\",\n\"evaluate market positioning\", \"apply Porter's Five Forces\", or requests\ncompetitive strategy analysis.\n", + "description": "Comprehensive frameworks for analyzing competition, identifying differentiation opportunities, and developing winning market positioning strategies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "competitor-alternatives", @@ -2589,7 +2876,8 @@ "name": "competitor-alternatives", "description": "When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'compa...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "comprehensive-review-full-review", @@ -2598,7 +2886,8 @@ "name": "comprehensive-review-full-review", "description": "Use when working with comprehensive review full review", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "comprehensive-review-pr-enhance", @@ -2607,7 +2896,8 @@ "name": "comprehensive-review-pr-enhance", "description": "You are a PR optimization expert specializing in creating high-quality pull requests that facilitate efficient code reviews. Generate comprehensive PR descriptions, automate review processes, and e...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "computer-use-agents", @@ -2616,7 +2906,8 @@ "name": "computer-use-agents", "description": "Build AI agents that interact with computers like humans do - viewing screens, moving cursors, clicking buttons, and typing text. Covers Anthropic's Computer Use, OpenAI's Operator/CUA, and open-so...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "computer-vision-expert", @@ -2625,7 +2916,8 @@ "name": "computer-vision-expert", "description": "SOTA Computer Vision Expert (2026). Specialized in YOLO26, Segment Anything 3 (SAM 3), Vision Language Models, and real-time spatial analysis.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "concise-planning", @@ -2634,7 +2926,8 @@ "name": "concise-planning", "description": "Use when a user asks for a plan for a coding task, to generate a clear, actionable, and atomic checklist.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-implement", @@ -2643,7 +2936,8 @@ "name": "conductor-implement", "description": "Execute tasks from a track's implementation plan following TDD workflow", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-manage", @@ -2652,7 +2946,8 @@ "name": "conductor-manage", "description": "Manage track lifecycle: archive, restore, delete, rename, and cleanup", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-new-track", @@ -2661,7 +2956,8 @@ "name": "conductor-new-track", "description": "Create a new track with specification and phased implementation plan", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-revert", @@ -2670,16 +2966,18 @@ "name": "conductor-revert", "description": "Git-aware undo by logical work unit (track, phase, or task)", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-setup", "path": "skills\\conductor-setup", "category": "uncategorized", "name": "conductor-setup", - "description": "Initialize project with Conductor artifacts (product definition,\ntech stack, workflow, style guides)\n", + "description": "Initialize or resume Conductor project setup. This command creates foundational project documentation through interactive Q&A.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-status", @@ -2688,16 +2986,18 @@ "name": "conductor-status", "description": "Display project status, active tracks, and next actions", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-validator", "path": "skills\\conductor-validator", "category": "uncategorized", "name": "conductor-validator", - "description": "Validates Conductor project artifacts for completeness,\nconsistency, and correctness. Use after setup, when diagnosing issues, or\nbefore implementation to verify project context.\n", + "description": "ls -la conductor/", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "confluence-automation", @@ -2706,7 +3006,8 @@ "name": "confluence-automation", "description": "Automate Confluence page creation, content search, space management, labels, and hierarchy navigation via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "content-creator", @@ -2715,16 +3016,18 @@ "name": "content-creator", "description": "Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creati...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "content-marketer", "path": "skills\\content-marketer", "category": "uncategorized", "name": "content-marketer", - "description": "Elite content marketing strategist specializing in AI-powered\ncontent creation, omnichannel distribution, SEO optimization, and data-driven\nperformance marketing. Masters modern content tools, social media automation,\nand conversion optimization with 2024/2025 best practices. Use PROACTIVELY for\ncomprehensive content marketing.\n", + "description": "- Working on content marketer tasks or workflows - Needing guidance, best practices, or checklists for content marketer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-compression", @@ -2733,7 +3036,8 @@ "name": "context-compression", "description": "Design and evaluate compression strategies for long-running sessions", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-compression" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-compression", + "date_added": "2025-02-26" }, { "id": "context-degradation", @@ -2742,16 +3046,18 @@ "name": "context-degradation", "description": "Recognize patterns of context failure: lost-in-middle, poisoning, distraction, and clash", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-degradation" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-degradation", + "date_added": "2025-02-26" }, { "id": "context-driven-development", "path": "skills\\context-driven-development", "category": "uncategorized", "name": "context-driven-development", - "description": "Use this skill when working with Conductor's context-driven\ndevelopment methodology, managing project context artifacts, or understanding\nthe relationship between product.md, tech-stack.md, and workflow.md files.\n", + "description": "Guide for implementing and maintaining context as a managed artifact alongside code, enabling consistent AI interactions and team alignment through structured project documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-fundamentals", @@ -2760,7 +3066,8 @@ "name": "context-fundamentals", "description": "Understand what context is, why it matters, and the anatomy of context in agent systems", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-fundamentals" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-fundamentals", + "date_added": "2025-02-26" }, { "id": "context-management-context-restore", @@ -2769,7 +3076,8 @@ "name": "context-management-context-restore", "description": "Use when working with context management context restore", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-management-context-save", @@ -2778,16 +3086,18 @@ "name": "context-management-context-save", "description": "Use when working with context management context save", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-manager", "path": "skills\\context-manager", "category": "uncategorized", "name": "context-manager", - "description": "Elite AI context engineering specialist mastering dynamic context\nmanagement, vector databases, knowledge graphs, and intelligent memory\nsystems. Orchestrates context across multi-agent workflows, enterprise AI\nsystems, and long-running projects with 2024/2025 best practices. Use\nPROACTIVELY for complex AI orchestration.\n", + "description": "- Working on context manager tasks or workflows - Needing guidance, best practices, or checklists for context manager", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-optimization", @@ -2796,7 +3106,8 @@ "name": "context-optimization", "description": "Apply compaction, masking, and caching strategies", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-optimization" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-optimization", + "date_added": "2025-02-26" }, { "id": "context-window-management", @@ -2805,7 +3116,8 @@ "name": "context-window-management", "description": "Strategies for managing LLM context windows including summarization, trimming, routing, and avoiding context rot Use when: context window, token limit, context management, context engineering, long...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "context7-auto-research", @@ -2814,7 +3126,8 @@ "name": "context7-auto-research", "description": "Automatically fetch latest library/framework documentation for Claude Code via Context7 API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conversation-memory", @@ -2823,7 +3136,8 @@ "name": "conversation-memory", "description": "Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Use when: conversation memory, remember, memory persistence, long-term memory, chat history.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "convertkit-automation", @@ -2832,7 +3146,8 @@ "name": "convertkit-automation", "description": "Automate ConvertKit (Kit) tasks via Rube MCP (Composio): manage subscribers, tags, broadcasts, and broadcast stats. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "copilot-sdk", @@ -2841,7 +3156,8 @@ "name": "copilot-sdk", "description": "Build applications powered by GitHub Copilot using the Copilot SDK. Use when creating programmatic integrations with Copilot across Node.js/TypeScript, Python, Go, or .NET. Covers session managemen...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "copy-editing", @@ -2850,16 +3166,18 @@ "name": "copy-editing", "description": "When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "copywriting", "path": "skills\\copywriting", "category": "uncategorized", "name": "copywriting", - "description": "Use this skill when writing, rewriting, or improving marketing copy for any page (homepage, landing page, pricing, feature, product, or about page). This skill produces clear, compelling, and testable copy while enforcing alignment, honesty, and conversion best practices.\n", + "description": "Produce **clear, credible, and action-oriented marketing copy** that aligns with user intent and business goals.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "core-components", @@ -2868,7 +3186,8 @@ "name": "core-components", "description": "Core component library and design system patterns. Use when building UI, using design tokens, or working with the component library.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cost-optimization", @@ -2877,16 +3196,18 @@ "name": "cost-optimization", "description": "Optimize cloud costs through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing c...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cpp-pro", "path": "skills\\cpp-pro", "category": "uncategorized", "name": "cpp-pro", - "description": "Write idiomatic C++ code with modern features, RAII, smart\npointers, and STL algorithms. Handles templates, move semantics, and\nperformance optimization. Use PROACTIVELY for C++ refactoring, memory safety,\nor complex C++ patterns.\n", + "description": "- Working on cpp pro tasks or workflows - Needing guidance, best practices, or checklists for cpp pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cqrs-implementation", @@ -2895,7 +3216,8 @@ "name": "cqrs-implementation", "description": "Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "create-pr", @@ -2904,7 +3226,8 @@ "name": "create-pr", "description": "Create pull requests following Sentry conventions. Use when opening PRs, writing PR descriptions, or preparing changes for review. Follows Sentry's code review guidelines.", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/create-pr" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/create-pr", + "date_added": "2025-02-26" }, { "id": "crewai", @@ -2913,25 +3236,28 @@ "name": "crewai", "description": "Expert in CrewAI - the leading role-based multi-agent framework used by 60% of Fortune 500 companies. Covers agent design with roles and goals, task definition, crew orchestration, process types (s...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "crypto-bd-agent", "path": "skills\\crypto-bd-agent", "category": "uncategorized", "name": "crypto-bd-agent", - "description": "Autonomous crypto business development patterns \u2014 multi-chain token discovery, 100-point scoring with wallet forensics, x402 micropayments, ERC-8004 on-chain identity, LLM cascade routing, and pipeline automation for CEX/DEX listing acquisition. Use when building AI agents for crypto BD, token evaluation, exchange listing outreach, or autonomous commerce with payment protocols.\n", + "description": "> Production-tested patterns for building AI agents that autonomously discover, > evaluate, and acquire token listings for cryptocurrency exchanges.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "csharp-pro", "path": "skills\\csharp-pro", "category": "uncategorized", "name": "csharp-pro", - "description": "Write modern C# code with advanced features like records, pattern\nmatching, and async/await. Optimizes .NET applications, implements enterprise\npatterns, and ensures comprehensive testing. Use PROACTIVELY for C#\nrefactoring, performance optimization, or complex .NET solutions.\n", + "description": "- Working on csharp pro tasks or workflows - Needing guidance, best practices, or checklists for csharp pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "culture-index", @@ -2940,25 +3266,28 @@ "name": "culture-index", "description": "Index and search culture documentation", "risk": "safe", - "source": "https://github.com/trailofbits/skills/tree/main/plugins/culture-index" + "source": "https://github.com/trailofbits/skills/tree/main/plugins/culture-index", + "date_added": "2025-02-26" }, { "id": "customer-support", "path": "skills\\customer-support", "category": "uncategorized", "name": "customer-support", - "description": "Elite AI-powered customer support specialist mastering\nconversational AI, automated ticketing, sentiment analysis, and omnichannel\nsupport experiences. Integrates modern support tools, chatbot platforms, and\nCX optimization with 2024/2025 best practices. Use PROACTIVELY for\ncomprehensive customer experience management.\n", + "description": "- Working on customer support tasks or workflows - Needing guidance, best practices, or checklists for customer support", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "customs-trade-compliance", "path": "skills\\customs-trade-compliance", "category": "uncategorized", "name": "customs-trade-compliance", - "description": "Codified expertise for customs documentation, tariff classification, duty optimisation, restricted party screening, and regulatory compliance across multiple jurisdictions. Informed by trade compliance specialists with 15+ years experience. Includes HS classification logic, Incoterms application, FTA utilisation, and penalty mitigation. Use when handling customs clearance, tariff classification, trade compliance, import/export documentation, or duty optimisation.\n", + "description": "Use this skill when navigating international trade regulations, classifying goods under HS codes, determining appropriate Incoterms, managing import/export documentation, or optimizing customs duty payments through Free Trade Agreements.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "daily-news-report", @@ -2967,16 +3296,18 @@ "name": "daily-news-report", "description": "Scrapes content based on a preset URL list, filters high-quality technical information, and generates daily Markdown reports.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-engineer", "path": "skills\\data-engineer", "category": "uncategorized", "name": "data-engineer", - "description": "Build scalable data pipelines, modern data warehouses, and\nreal-time streaming architectures. Implements Apache Spark, dbt, Airflow, and\ncloud-native data platforms. Use PROACTIVELY for data pipeline design,\nanalytics infrastructure, or modern data stack implementation.\n", + "description": "You are a data engineer specializing in scalable data pipelines, modern data architecture, and analytics infrastructure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-engineering-data-driven-feature", @@ -2985,7 +3316,8 @@ "name": "data-engineering-data-driven-feature", "description": "Build features guided by data insights, A/B testing, and continuous measurement using specialized agents for analysis, implementation, and experimentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-engineering-data-pipeline", @@ -2994,7 +3326,8 @@ "name": "data-engineering-data-pipeline", "description": "You are a data pipeline architecture expert specializing in scalable, reliable, and cost-effective data pipelines for batch and streaming data processing.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-quality-frameworks", @@ -3003,16 +3336,18 @@ "name": "data-quality-frameworks", "description": "Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-scientist", "path": "skills\\data-scientist", "category": "uncategorized", "name": "data-scientist", - "description": "Expert data scientist for advanced analytics, machine learning, and\nstatistical modeling. Handles complex data analysis, predictive modeling, and\nbusiness intelligence. Use PROACTIVELY for data analysis tasks, ML modeling,\nstatistical analysis, and data-driven insights.\n", + "description": "- Working on data scientist tasks or workflows - Needing guidance, best practices, or checklists for data scientist", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-storytelling", @@ -3021,7 +3356,8 @@ "name": "data-storytelling", "description": "Transform data into compelling narratives using visualization, context, and persuasive structure. Use when presenting analytics to stakeholders, creating data reports, or building executive present...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-structure-protocol", @@ -3030,7 +3366,8 @@ "name": "data-structure-protocol", "description": "Give agents persistent structural memory of a codebase \u2014 navigate dependencies, track public APIs, and understand why connections exist without re-reading the whole repo.", "risk": "safe", - "source": "https://github.com/k-kolomeitsev/data-structure-protocol" + "source": "https://github.com/k-kolomeitsev/data-structure-protocol", + "date_added": "2025-02-26" }, { "id": "database", @@ -3039,25 +3376,28 @@ "name": "database", "description": "Database development and operations workflow covering SQL, NoSQL, database design, migrations, optimization, and data engineering.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "database-admin", "path": "skills\\database-admin", "category": "uncategorized", "name": "database-admin", - "description": "Expert database administrator specializing in modern cloud\ndatabases, automation, and reliability engineering. Masters AWS/Azure/GCP\ndatabase services, Infrastructure as Code, high availability, disaster\nrecovery, performance optimization, and compliance. Handles multi-cloud\nstrategies, container databases, and cost optimization. Use PROACTIVELY for\ndatabase architecture, operations, or reliability engineering.\n", + "description": "- Working on database admin tasks or workflows - Needing guidance, best practices, or checklists for database admin", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-architect", "path": "skills\\database-architect", "category": "uncategorized", "name": "database-architect", - "description": "Expert database architect specializing in data layer design from\nscratch, technology selection, schema modeling, and scalable database\narchitectures. Masters SQL/NoSQL/TimeSeries database selection, normalization\nstrategies, migration planning, and performance-first design. Handles both\ngreenfield architectures and re-architecture of existing systems. Use\nPROACTIVELY for database architecture, technology selection, or data modeling\ndecisions.\n", + "description": "You are a database architect specializing in designing scalable, performant, and maintainable data layers from the ground up.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-cloud-optimization-cost-optimize", @@ -3066,7 +3406,8 @@ "name": "database-cloud-optimization-cost-optimize", "description": "You are a cloud cost optimization expert specializing in reducing infrastructure expenses while maintaining performance and reliability. Analyze cloud spending, identify savings opportunities, and ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-design", @@ -3075,7 +3416,8 @@ "name": "database-design", "description": "Database design principles and decision-making. Schema design, indexing strategy, ORM selection, serverless databases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-migration", @@ -3084,7 +3426,8 @@ "name": "database-migration", "description": "Execute database migrations across ORMs and platforms with zero-downtime strategies, data transformation, and rollback procedures. Use when migrating databases, changing schemas, performing data tr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-migrations-migration-observability", @@ -3093,7 +3436,8 @@ "name": "database-migrations-migration-observability", "description": "Migration monitoring, CDC, and observability infrastructure", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-migrations-sql-migrations", @@ -3102,16 +3446,18 @@ "name": "database-migrations-sql-migrations", "description": "SQL database migrations with zero-downtime strategies for PostgreSQL, MySQL, and SQL Server. Focus on data integrity and rollback plans.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-optimizer", "path": "skills\\database-optimizer", "category": "uncategorized", "name": "database-optimizer", - "description": "Expert database optimizer specializing in modern performance\ntuning, query optimization, and scalable architectures. Masters advanced\nindexing, N+1 resolution, multi-tier caching, partitioning strategies, and\ncloud database optimization. Handles complex query analysis, migration\nstrategies, and performance monitoring. Use PROACTIVELY for database\noptimization, performance issues, or scalability challenges.\n", + "description": "- Working on database optimizer tasks or workflows - Needing guidance, best practices, or checklists for database optimizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "datadog-automation", @@ -3120,7 +3466,8 @@ "name": "datadog-automation", "description": "Automate Datadog tasks via Rube MCP (Composio): query metrics, search logs, manage monitors/dashboards, create events and downtimes. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dbos-golang", @@ -3129,7 +3476,8 @@ "name": "dbos-golang", "description": "DBOS Go SDK for building reliable, fault-tolerant applications with durable workflows. Use this skill when writing Go code with DBOS, creating workflows and steps, using queues, using the DBOS Clie...", "risk": "safe", - "source": "https://docs.dbos.dev/" + "source": "https://docs.dbos.dev/", + "date_added": "2025-02-26" }, { "id": "dbos-python", @@ -3138,7 +3486,8 @@ "name": "dbos-python", "description": "DBOS Python SDK for building reliable, fault-tolerant applications with durable workflows. Use this skill when writing Python code with DBOS, creating workflows and steps, using queues, using DBOSC...", "risk": "safe", - "source": "https://docs.dbos.dev/" + "source": "https://docs.dbos.dev/", + "date_added": "2025-02-26" }, { "id": "dbos-typescript", @@ -3147,7 +3496,8 @@ "name": "dbos-typescript", "description": "DBOS TypeScript SDK for building reliable, fault-tolerant applications with durable workflows. Use this skill when writing TypeScript code with DBOS, creating workflows and steps, using queues, usi...", "risk": "safe", - "source": "https://docs.dbos.dev/" + "source": "https://docs.dbos.dev/", + "date_added": "2025-02-26" }, { "id": "dbt-transformation-patterns", @@ -3156,7 +3506,8 @@ "name": "dbt-transformation-patterns", "description": "Master dbt (data build tool) for analytics engineering with model organization, testing, documentation, and incremental strategies. Use when building data transformations, creating data models, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ddd-context-mapping", @@ -3165,7 +3516,8 @@ "name": "ddd-context-mapping", "description": "Map relationships between bounded contexts and define integration contracts using DDD context mapping patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "ddd-strategic-design", @@ -3174,7 +3526,8 @@ "name": "ddd-strategic-design", "description": "Design DDD strategic artifacts including subdomains, bounded contexts, and ubiquitous language for complex business domains.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "ddd-tactical-patterns", @@ -3183,16 +3536,18 @@ "name": "ddd-tactical-patterns", "description": "Apply DDD tactical patterns in code using entities, value objects, aggregates, repositories, and domain events with explicit invariants.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "debugger", "path": "skills\\debugger", "category": "uncategorized", "name": "debugger", - "description": "Debugging specialist for errors, test failures, and unexpected\nbehavior. Use proactively when encountering any issues.\n", + "description": "- Working on debugger tasks or workflows - Needing guidance, best practices, or checklists for debugger", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "debugging-strategies", @@ -3201,7 +3556,8 @@ "name": "debugging-strategies", "description": "Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance iss...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "debugging-toolkit-smart-debug", @@ -3210,7 +3566,8 @@ "name": "debugging-toolkit-smart-debug", "description": "Use when working with debugging toolkit smart debug", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deep-research", @@ -3219,7 +3576,8 @@ "name": "deep-research", "description": "Execute autonomous multi-step research using Google Gemini Deep Research Agent. Use for: market analysis, competitive landscaping, literature reviews, technical research, due diligence. Takes 2-10 ...", "risk": "safe", - "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/deep-research" + "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/deep-research", + "date_added": "2025-02-26" }, { "id": "defi-protocol-templates", @@ -3228,7 +3586,8 @@ "name": "defi-protocol-templates", "description": "Implement DeFi protocols with production-ready templates for staking, AMMs, governance, and lending systems. Use when building decentralized finance applications or smart contract protocols.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dependency-management-deps-audit", @@ -3237,7 +3596,8 @@ "name": "dependency-management-deps-audit", "description": "You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dependency-upgrade", @@ -3246,16 +3606,18 @@ "name": "dependency-upgrade", "description": "Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing brea...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-engineer", "path": "skills\\deployment-engineer", "category": "uncategorized", "name": "deployment-engineer", - "description": "Expert deployment engineer specializing in modern CI/CD pipelines,\nGitOps workflows, and advanced deployment automation. Masters GitHub Actions,\nArgoCD/Flux, progressive delivery, container security, and platform\nengineering. Handles zero-downtime deployments, security scanning, and\ndeveloper experience optimization. Use PROACTIVELY for CI/CD design, GitOps\nimplementation, or deployment automation.\n", + "description": "You are a deployment engineer specializing in modern CI/CD pipelines, GitOps workflows, and advanced deployment automation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-pipeline-design", @@ -3264,7 +3626,8 @@ "name": "deployment-pipeline-design", "description": "Design multi-stage CI/CD pipelines with approval gates, security checks, and deployment orchestration. Use when architecting deployment workflows, setting up continuous delivery, or implementing Gi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-procedures", @@ -3273,7 +3636,8 @@ "name": "deployment-procedures", "description": "Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-validation-config-validate", @@ -3282,7 +3646,8 @@ "name": "deployment-validation-config-validate", "description": "You are a configuration management expert specializing in validating, testing, and ensuring the correctness of application configurations. Create comprehensive validation schemas, implement configurat", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "design-md", @@ -3291,16 +3656,18 @@ "name": "design-md", "description": "Analyze Stitch projects and synthesize a semantic design system into DESIGN.md files", "risk": "safe", - "source": "https://github.com/google-labs-code/stitch-skills/tree/main/skills/design-md" + "source": "https://github.com/google-labs-code/stitch-skills/tree/main/skills/design-md", + "date_added": "2025-02-26" }, { "id": "design-orchestration", "path": "skills\\design-orchestration", "category": "uncategorized", "name": "design-orchestration", - "description": "Orchestrates design workflows by routing work through brainstorming, multi-agent review, and execution readiness in the correct order. Prevents premature implementation, skipped validation, and unreviewed high-risk designs.", + "description": "Ensure that **ideas become designs**, **designs are reviewed**, and **only validated designs reach implementation**.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "development", @@ -3309,16 +3676,18 @@ "name": "development", "description": "Comprehensive web, mobile, and backend development workflow bundling frontend, backend, full-stack, and mobile development skills for end-to-end application delivery.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "devops-troubleshooter", "path": "skills\\devops-troubleshooter", "category": "uncategorized", "name": "devops-troubleshooter", - "description": "Expert DevOps troubleshooter specializing in rapid incident\nresponse, advanced debugging, and modern observability. Masters log analysis,\ndistributed tracing, Kubernetes debugging, performance optimization, and root\ncause analysis. Handles production outages, system reliability, and preventive\nmonitoring. Use PROACTIVELY for debugging, incident response, or system\ntroubleshooting.\n", + "description": "- Working on devops troubleshooter tasks or workflows - Needing guidance, best practices, or checklists for devops troubleshooter", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "discord-automation", @@ -3327,7 +3696,8 @@ "name": "discord-automation", "description": "Automate Discord tasks via Rube MCP (Composio): messages, channels, roles, webhooks, reactions. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "discord-bot-architect", @@ -3336,7 +3706,8 @@ "name": "discord-bot-architect", "description": "Specialized skill for building production-ready Discord bots. Covers Discord.js (JavaScript) and Pycord (Python), gateway intents, slash commands, interactive components, rate limiting, and sharding.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "dispatching-parallel-agents", @@ -3345,7 +3716,8 @@ "name": "dispatching-parallel-agents", "description": "Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "distributed-debugging-debug-trace", @@ -3354,7 +3726,8 @@ "name": "distributed-debugging-debug-trace", "description": "You are a debugging expert specializing in setting up comprehensive debugging environments, distributed tracing, and diagnostic tools. Configure debugging workflows, implement tracing solutions, an...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "distributed-tracing", @@ -3363,16 +3736,18 @@ "name": "distributed-tracing", "description": "Implement distributed tracing with Jaeger and Tempo to track requests across microservices and identify performance bottlenecks. Use when debugging microservices, analyzing request flows, or implem...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "django-pro", "path": "skills\\django-pro", "category": "uncategorized", "name": "django-pro", - "description": "Master Django 5.x with async views, DRF, Celery, and Django\nChannels. Build scalable web applications with proper architecture, testing,\nand deployment. Use PROACTIVELY for Django development, ORM optimization, or\ncomplex Django patterns.\n", + "description": "- Working on django pro tasks or workflows - Needing guidance, best practices, or checklists for django pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "doc-coauthoring", @@ -3381,7 +3756,8 @@ "name": "doc-coauthoring", "description": "Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docker-expert", @@ -3390,16 +3766,18 @@ "name": "docker-expert", "description": "Docker containerization expert with deep knowledge of multi-stage builds, image optimization, container security, Docker Compose orchestration, and production deployment patterns. Use PROACTIVELY f...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docs-architect", "path": "skills\\docs-architect", "category": "uncategorized", "name": "docs-architect", - "description": "Creates comprehensive technical documentation from existing\ncodebases. Analyzes architecture, design patterns, and implementation details\nto produce long-form technical manuals and ebooks. Use PROACTIVELY for system\ndocumentation, architecture guides, or technical deep-dives.\n", + "description": "- Working on docs architect tasks or workflows - Needing guidance, best practices, or checklists for docs architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "documentation", @@ -3408,7 +3786,8 @@ "name": "documentation", "description": "Documentation generation workflow covering API docs, architecture docs, README files, code comments, and technical writing.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "documentation-generation-doc-generate", @@ -3417,7 +3796,8 @@ "name": "documentation-generation-doc-generate", "description": "You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "documentation-templates", @@ -3426,7 +3806,8 @@ "name": "documentation-templates", "description": "Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docusign-automation", @@ -3435,7 +3816,8 @@ "name": "docusign-automation", "description": "Automate DocuSign tasks via Rube MCP (Composio): templates, envelopes, signatures, document management. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docx-official", @@ -3444,7 +3826,8 @@ "name": "docx-official", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional document...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "domain-driven-design", @@ -3453,16 +3836,18 @@ "name": "domain-driven-design", "description": "Plan and route Domain-Driven Design work from strategic modeling to tactical implementation and evented architecture patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "dotnet-architect", "path": "skills\\dotnet-architect", "category": "uncategorized", "name": "dotnet-architect", - "description": "Expert .NET backend architect specializing in C#, ASP.NET Core,\nEntity Framework, Dapper, and enterprise application patterns. Masters\nasync/await, dependency injection, caching strategies, and performance\noptimization. Use PROACTIVELY for .NET API development, code review, or\narchitecture decisions.\n", + "description": "- Working on dotnet architect tasks or workflows - Needing guidance, best practices, or checklists for dotnet architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dotnet-backend", @@ -3471,7 +3856,8 @@ "name": "dotnet-backend", "description": "Build ASP.NET Core 8+ backend services with EF Core, auth, background jobs, and production API patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "dotnet-backend-patterns", @@ -3480,7 +3866,8 @@ "name": "dotnet-backend-patterns", "description": "Master C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuratio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "draw", @@ -3489,7 +3876,8 @@ "name": "draw", "description": "Vector graphics and diagram creation, format conversion (ODG/SVG/PDF) with LibreOffice Draw.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "dropbox-automation", @@ -3498,16 +3886,18 @@ "name": "dropbox-automation", "description": "Automate Dropbox file management, sharing, search, uploads, downloads, and folder operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dx-optimizer", "path": "skills\\dx-optimizer", "category": "uncategorized", "name": "dx-optimizer", - "description": "Developer Experience specialist. Improves tooling, setup, and\nworkflows. Use PROACTIVELY when setting up new projects, after team feedback,\nor when development friction is noticed.\n", + "description": "- Working on dx optimizer tasks or workflows - Needing guidance, best practices, or checklists for dx optimizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "e2e-testing", @@ -3516,7 +3906,8 @@ "name": "e2e-testing", "description": "End-to-end testing workflow with Playwright for browser automation, visual regression, cross-browser testing, and CI/CD integration.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "e2e-testing-patterns", @@ -3525,16 +3916,18 @@ "name": "e2e-testing-patterns", "description": "Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "elixir-pro", "path": "skills\\elixir-pro", "category": "uncategorized", "name": "elixir-pro", - "description": "Write idiomatic Elixir code with OTP patterns, supervision trees,\nand Phoenix LiveView. Masters concurrency, fault tolerance, and distributed\nsystems. Use PROACTIVELY for Elixir refactoring, OTP design, or complex BEAM\noptimizations.\n", + "description": "- Working on elixir pro tasks or workflows - Needing guidance, best practices, or checklists for elixir pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "email-sequence", @@ -3543,7 +3936,8 @@ "name": "email-sequence", "description": "When the user wants to create or optimize an email sequence, drip campaign, automated email flow, or lifecycle email program. Also use when the user mentions \"email sequence,\" \"drip campa...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "email-systems", @@ -3552,7 +3946,8 @@ "name": "email-systems", "description": "Email has the highest ROI of any marketing channel. $36 for every $1 spent. Yet most startups treat it as an afterthought - bulk blasts, no personalization, landing in spam folders. This skill cov...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "embedding-strategies", @@ -3561,7 +3956,8 @@ "name": "embedding-strategies", "description": "Select and optimize embedding models for semantic search and RAG applications. Use when choosing embedding models, implementing chunking strategies, or optimizing embedding quality for specific dom...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "employment-contract-templates", @@ -3570,16 +3966,18 @@ "name": "employment-contract-templates", "description": "Create employment contracts, offer letters, and HR policy documents following legal best practices. Use when drafting employment agreements, creating HR policies, or standardizing employment docume...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "energy-procurement", "path": "skills\\energy-procurement", "category": "uncategorized", "name": "energy-procurement", - "description": "Codified expertise for electricity and gas procurement, tariff optimisation, demand charge management, renewable PPA evaluation, and multi-facility energy cost management. Informed by energy procurement managers with 15+ years experience at large commercial and industrial consumers. Includes market structure analysis, hedging strategies, load profiling, and sustainability reporting frameworks. Use when procuring energy, optimising tariffs, managing demand charges, evaluating PPAs, or developing energy strategies.\n", + "description": "Use this skill when managing energy procurement tasks, such as optimizing electricity or gas tariffs, evaluating Power Purchase Agreements (PPAs), or developing long-term energy cost management strategies for commercial or industrial facilities.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "environment-setup-guide", @@ -3588,7 +3986,8 @@ "name": "environment-setup-guide", "description": "Guide developers through setting up development environments with proper tools, dependencies, and configurations", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-debugging-error-analysis", @@ -3597,7 +3996,8 @@ "name": "error-debugging-error-analysis", "description": "You are an expert error analysis specialist with deep expertise in debugging distributed systems, analyzing production incidents, and implementing comprehensive observability solutions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-debugging-error-trace", @@ -3606,7 +4006,8 @@ "name": "error-debugging-error-trace", "description": "You are an error tracking and observability expert specializing in implementing comprehensive error monitoring solutions. Set up error tracking systems, configure alerts, implement structured loggi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-debugging-multi-agent-review", @@ -3615,16 +4016,18 @@ "name": "error-debugging-multi-agent-review", "description": "Use when working with error debugging multi agent review", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-detective", "path": "skills\\error-detective", "category": "uncategorized", "name": "error-detective", - "description": "Search logs and codebases for error patterns, stack traces, and\nanomalies. Correlates errors across systems and identifies root causes. Use\nPROACTIVELY when debugging issues, analyzing logs, or investigating production\nerrors.\n", + "description": "- Working on error detective tasks or workflows - Needing guidance, best practices, or checklists for error detective", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-diagnostics-error-analysis", @@ -3633,7 +4036,8 @@ "name": "error-diagnostics-error-analysis", "description": "You are an expert error analysis specialist with deep expertise in debugging distributed systems, analyzing production incidents, and implementing comprehensive observability solutions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-diagnostics-error-trace", @@ -3642,7 +4046,8 @@ "name": "error-diagnostics-error-trace", "description": "You are an error tracking and observability expert specializing in implementing comprehensive error monitoring solutions. Set up error tracking systems, configure alerts, implement structured logging,", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-diagnostics-smart-debug", @@ -3651,7 +4056,8 @@ "name": "error-diagnostics-smart-debug", "description": "Use when working with error diagnostics smart debug", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-handling-patterns", @@ -3660,7 +4066,8 @@ "name": "error-handling-patterns", "description": "Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ethical-hacking-methodology", @@ -3669,7 +4076,8 @@ "name": "ethical-hacking-methodology", "description": "This skill should be used when the user asks to \"learn ethical hacking\", \"understand penetration testing lifecycle\", \"perform reconnaissance\", \"conduct security scanning\", \"exploit ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "evaluation", @@ -3678,7 +4086,8 @@ "name": "evaluation", "description": "Build evaluation frameworks for agent systems", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/evaluation" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/evaluation", + "date_added": "2025-02-26" }, { "id": "event-sourcing-architect", @@ -3687,7 +4096,8 @@ "name": "event-sourcing-architect", "description": "Expert in event sourcing, CQRS, and event-driven architecture patterns. Masters event store design, projection building, saga orchestration, and eventual consistency patterns. Use PROACTIVELY for e...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "event-store-design", @@ -3696,7 +4106,8 @@ "name": "event-store-design", "description": "Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "exa-search", @@ -3705,7 +4116,8 @@ "name": "exa-search", "description": "Semantic search, similar content discovery, and structured research using Exa API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "executing-plans", @@ -3714,7 +4126,8 @@ "name": "executing-plans", "description": "Use when you have a written implementation plan to execute in a separate session with review checkpoints", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "expo-deployment", @@ -3723,7 +4136,8 @@ "name": "expo-deployment", "description": "Deploy Expo apps to production", "risk": "safe", - "source": "https://github.com/expo/skills/tree/main/plugins/expo-deployment" + "source": "https://github.com/expo/skills/tree/main/plugins/expo-deployment", + "date_added": "2025-02-26" }, { "id": "fal-audio", @@ -3732,7 +4146,8 @@ "name": "fal-audio", "description": "Text-to-speech and speech-to-text using fal.ai audio models", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-audio/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-audio/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-generate", @@ -3741,7 +4156,8 @@ "name": "fal-generate", "description": "Generate images and videos using fal.ai AI models", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-generate/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-generate/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-image-edit", @@ -3750,7 +4166,8 @@ "name": "fal-image-edit", "description": "AI-powered image editing with style transfer and object removal", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-image-edit/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-image-edit/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-platform", @@ -3759,7 +4176,8 @@ "name": "fal-platform", "description": "Platform APIs for model management, pricing, and usage tracking", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-platform/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-platform/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-upscale", @@ -3768,7 +4186,8 @@ "name": "fal-upscale", "description": "Upscale and enhance image and video resolution using AI", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-upscale/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-upscale/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-workflow", @@ -3777,16 +4196,18 @@ "name": "fal-workflow", "description": "Generate workflow JSON files for chaining AI models", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-workflow/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-workflow/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fastapi-pro", "path": "skills\\fastapi-pro", "category": "uncategorized", "name": "fastapi-pro", - "description": "Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and\nPydantic V2. Master microservices, WebSockets, and modern Python async\npatterns. Use PROACTIVELY for FastAPI development, async optimization, or API\narchitecture.\n", + "description": "- Working on fastapi pro tasks or workflows - Needing guidance, best practices, or checklists for fastapi pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fastapi-router-py", @@ -3795,7 +4216,8 @@ "name": "fastapi-router-py", "description": "Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or add...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fastapi-templates", @@ -3804,7 +4226,8 @@ "name": "fastapi-templates", "description": "Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ffuf-claude-skill", @@ -3813,7 +4236,8 @@ "name": "ffuf-claude-skill", "description": "Web fuzzing with ffuf", "risk": "safe", - "source": "https://github.com/jthack/ffuf_claude_skill" + "source": "https://github.com/jthack/ffuf_claude_skill", + "date_added": "2025-02-26" }, { "id": "figma-automation", @@ -3822,7 +4246,8 @@ "name": "figma-automation", "description": "Automate Figma tasks via Rube MCP (Composio): files, components, design tokens, comments, exports. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "file-organizer", @@ -3831,7 +4256,8 @@ "name": "file-organizer", "description": "Intelligently organizes files and folders by understanding context, finding duplicates, and suggesting better organizational structures. Use when user wants to clean up directories, organize downlo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "file-path-traversal", @@ -3840,7 +4266,8 @@ "name": "file-path-traversal", "description": "This skill should be used when the user asks to \"test for directory traversal\", \"exploit path traversal vulnerabilities\", \"read arbitrary files through web applications\", \"find LFI vu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "file-uploads", @@ -3849,7 +4276,8 @@ "name": "file-uploads", "description": "Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking. Use when: f...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "find-bugs", @@ -3858,7 +4286,8 @@ "name": "find-bugs", "description": "Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/find-bugs" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/find-bugs", + "date_added": "2025-02-26" }, { "id": "finishing-a-development-branch", @@ -3867,7 +4296,8 @@ "name": "finishing-a-development-branch", "description": "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "firebase", @@ -3876,7 +4306,8 @@ "name": "firebase", "description": "Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they'r...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "firecrawl-scraper", @@ -3885,16 +4316,18 @@ "name": "firecrawl-scraper", "description": "Deep web scraping, screenshots, PDF parsing, and website crawling using Firecrawl API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "firmware-analyst", "path": "skills\\firmware-analyst", "category": "uncategorized", "name": "firmware-analyst", - "description": "Expert firmware analyst specializing in embedded systems, IoT\nsecurity, and hardware reverse engineering. Masters firmware extraction,\nanalysis, and vulnerability research for routers, IoT devices, automotive\nsystems, and industrial controllers. Use PROACTIVELY for firmware security\naudits, IoT penetration testing, or embedded systems research.\n", + "description": "wget http://vendor.com/firmware/update.bin", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fix-review", @@ -3903,25 +4336,28 @@ "name": "fix-review", "description": "Verify fix commits address audit findings without new bugs", "risk": "safe", - "source": "https://github.com/trailofbits/skills/tree/main/plugins/fix-review" + "source": "https://github.com/trailofbits/skills/tree/main/plugins/fix-review", + "date_added": "2025-02-26" }, { "id": "flutter-expert", "path": "skills\\flutter-expert", "category": "uncategorized", "name": "flutter-expert", - "description": "Master Flutter development with Dart 3, advanced widgets, and\nmulti-platform deployment. Handles state management, animations, testing, and\nperformance optimization for mobile, web, desktop, and embedded platforms. Use\nPROACTIVELY for Flutter architecture, UI implementation, or cross-platform\nfeatures.\n", + "description": "- Working on flutter expert tasks or workflows - Needing guidance, best practices, or checklists for flutter expert", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "form-cro", "path": "skills\\form-cro", "category": "uncategorized", "name": "form-cro", - "description": "Optimize any form that is NOT signup or account registration \u2014 including lead capture, contact, demo request, application, survey, quote, and checkout forms. Use when the goal is to increase form completion rate, reduce friction, or improve lead quality without breaking compliance or downstream workflows.\n", + "description": "You are an expert in **form optimization and friction reduction**. Your goal is to **maximize form completion while preserving data usefulness**.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fp-ts-errors", @@ -3930,7 +4366,8 @@ "name": "fp-ts-errors", "description": "Handle errors as values using fp-ts Either and TaskEither for cleaner, more predictable TypeScript code. Use when implementing error handling patterns with fp-ts.", "risk": "safe", - "source": "https://github.com/whatiskadudoing/fp-ts-skills" + "source": "https://github.com/whatiskadudoing/fp-ts-skills", + "date_added": "2025-02-26" }, { "id": "fp-ts-pragmatic", @@ -3939,7 +4376,8 @@ "name": "fp-ts-pragmatic", "description": "A practical, jargon-free guide to fp-ts functional programming - the 80/20 approach that gets results without the academic overhead. Use when writing TypeScript with fp-ts library.", "risk": "safe", - "source": "https://github.com/whatiskadudoing/fp-ts-skills" + "source": "https://github.com/whatiskadudoing/fp-ts-skills", + "date_added": "2025-02-26" }, { "id": "fp-ts-react", @@ -3948,7 +4386,8 @@ "name": "fp-ts-react", "description": "Practical patterns for using fp-ts with React - hooks, state, forms, data fetching. Use when building React apps with functional programming patterns. Works with React 18/19, Next.js 14/15.", "risk": "safe", - "source": "https://github.com/whatiskadudoing/fp-ts-skills" + "source": "https://github.com/whatiskadudoing/fp-ts-skills", + "date_added": "2025-02-26" }, { "id": "framework-migration-code-migrate", @@ -3957,7 +4396,8 @@ "name": "framework-migration-code-migrate", "description": "You are a code migration expert specializing in transitioning codebases between frameworks, languages, versions, and platforms. Generate comprehensive migration plans, automated migration scripts, and", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "framework-migration-deps-upgrade", @@ -3966,7 +4406,8 @@ "name": "framework-migration-deps-upgrade", "description": "You are a dependency management expert specializing in safe, incremental upgrades of project dependencies. Plan and execute dependency updates with minimal risk, proper testing, and clear migration pa", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "framework-migration-legacy-modernize", @@ -3975,7 +4416,8 @@ "name": "framework-migration-legacy-modernize", "description": "Orchestrate a comprehensive legacy system modernization using the strangler fig pattern, enabling gradual replacement of outdated components while maintaining continuous business operations through ex", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "free-tool-strategy", @@ -3984,7 +4426,8 @@ "name": "free-tool-strategy", "description": "When the user wants to plan, evaluate, or build a free tool for marketing purposes \u2014 lead generation, SEO value, or brand awareness. Also use when the user mentions \"engineering as mar...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "freshdesk-automation", @@ -3993,7 +4436,8 @@ "name": "freshdesk-automation", "description": "Automate Freshdesk helpdesk operations including tickets, contacts, companies, notes, and replies via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "freshservice-automation", @@ -4002,7 +4446,8 @@ "name": "freshservice-automation", "description": "Automate Freshservice ITSM tasks via Rube MCP (Composio): create/update tickets, bulk operations, service requests, and outbound emails. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-design", @@ -4011,7 +4456,8 @@ "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with intentional aesthetics, high craft, and non-generic visual identity. Use when building or styling web UIs, components, pages, dashboard...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-dev-guidelines", @@ -4020,16 +4466,18 @@ "name": "frontend-dev-guidelines", "description": "Opinionated frontend development standards for modern React + TypeScript applications. Covers Suspense-first data fetching, lazy loading, feature-based architecture, MUI v7 styling, TanStack Router...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-developer", "path": "skills\\frontend-developer", "category": "uncategorized", "name": "frontend-developer", - "description": "Build React components, implement responsive layouts, and handle\nclient-side state management. Masters React 19, Next.js 15, and modern\nfrontend architecture. Optimizes performance and ensures accessibility. Use\nPROACTIVELY when creating UI components or fixing frontend issues.\n", + "description": "You are a frontend development expert specializing in modern React applications, Next.js, and cutting-edge frontend architecture.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-mobile-development-component-scaffold", @@ -4038,7 +4486,8 @@ "name": "frontend-mobile-development-component-scaffold", "description": "You are a React component architecture expert specializing in scaffolding production-ready, accessible, and performant components. Generate complete component implementations with TypeScript, tests, s", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-mobile-security-xss-scan", @@ -4047,16 +4496,18 @@ "name": "frontend-mobile-security-xss-scan", "description": "You are a frontend security specialist focusing on Cross-Site Scripting (XSS) vulnerability detection and prevention. Analyze React, Vue, Angular, and vanilla JavaScript code to identify injection poi", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-security-coder", "path": "skills\\frontend-security-coder", "category": "uncategorized", "name": "frontend-security-coder", - "description": "Expert in secure frontend coding practices specializing in XSS\nprevention, output sanitization, and client-side security patterns. Use\nPROACTIVELY for frontend security implementations or client-side security code\nreviews.\n", + "description": "- Working on frontend security coder tasks or workflows - Needing guidance, best practices, or checklists for frontend security coder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-slides", @@ -4065,7 +4516,8 @@ "name": "frontend-slides", "description": "Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a...", "risk": "safe", - "source": "https://github.com/zarazhangrui/frontend-slides" + "source": "https://github.com/zarazhangrui/frontend-slides", + "date_added": "2025-02-26" }, { "id": "frontend-ui-dark-ts", @@ -4074,7 +4526,8 @@ "name": "frontend-ui-dark-ts", "description": "Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "full-stack-orchestration-full-stack-feature", @@ -4083,7 +4536,8 @@ "name": "full-stack-orchestration-full-stack-feature", "description": "Use when working with full stack orchestration full stack feature", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-art", @@ -4092,7 +4546,8 @@ "name": "game-art", "description": "Game art principles. Visual style selection, asset pipeline, animation workflow.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-audio", @@ -4101,7 +4556,8 @@ "name": "game-audio", "description": "Game audio principles. Sound design, music integration, adaptive audio systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-design", @@ -4110,7 +4566,8 @@ "name": "game-design", "description": "Game design principles. GDD structure, balancing, player psychology, progression.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-development", @@ -4119,7 +4576,8 @@ "name": "game-development", "description": "Game development orchestrator. Routes to platform-specific skills based on project needs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gcp-cloud-run", @@ -4128,7 +4586,8 @@ "name": "gcp-cloud-run", "description": "Specialized skill for building production-ready serverless applications on GCP. Covers Cloud Run services (containerized), Cloud Run Functions (event-driven), cold start optimization, and event-dri...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "gdpr-data-handling", @@ -4137,7 +4596,8 @@ "name": "gdpr-data-handling", "description": "Implement GDPR-compliant data handling with consent management, data subject rights, and privacy by design. Use when building systems that process EU personal data, implementing privacy controls, o...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gemini-api-dev", @@ -4146,7 +4606,8 @@ "name": "gemini-api-dev", "description": "Use this skill when building applications with Gemini models, Gemini API, working with multimodal content (text, images, audio, video), implementing function calling, using structured outputs, or n...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "geo-fundamentals", @@ -4155,7 +4616,8 @@ "name": "geo-fundamentals", "description": "Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perplexity).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-advanced-workflows", @@ -4164,7 +4626,8 @@ "name": "git-advanced-workflows", "description": "Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, co...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pr-workflows-git-workflow", @@ -4173,7 +4636,8 @@ "name": "git-pr-workflows-git-workflow", "description": "Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern g", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pr-workflows-onboard", @@ -4182,7 +4646,8 @@ "name": "git-pr-workflows-onboard", "description": "You are an **expert onboarding specialist and knowledge transfer architect** with deep experience in remote-first organizations, technical team integration, and accelerated learning methodologies. You", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pr-workflows-pr-enhance", @@ -4191,7 +4656,8 @@ "name": "git-pr-workflows-pr-enhance", "description": "You are a PR optimization expert specializing in creating high-quality pull requests that facilitate efficient code reviews. Generate comprehensive PR descriptions, automate review processes, and ensu", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pushing", @@ -4200,7 +4666,8 @@ "name": "git-pushing", "description": "Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activate...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-actions-templates", @@ -4209,7 +4676,8 @@ "name": "github-actions-templates", "description": "Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or cre...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-automation", @@ -4218,7 +4686,8 @@ "name": "github-automation", "description": "Automate GitHub repositories, issues, pull requests, branches, CI/CD, and permissions via Rube MCP (Composio). Manage code workflows, review PRs, search code, and handle deployments programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-issue-creator", @@ -4227,7 +4696,8 @@ "name": "github-issue-creator", "description": "Convert raw notes, error logs, voice dictation, or screenshots into crisp GitHub-flavored markdown issue reports. Use when the user pastes bug info, error messages, or informal descriptions and wan...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-workflow-automation", @@ -4236,7 +4706,8 @@ "name": "github-workflow-automation", "description": "Automate GitHub workflows with AI assistance. Includes PR reviews, issue triage, CI/CD integration, and Git operations. Use when automating GitHub workflows, setting up PR review automation, creati...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gitlab-automation", @@ -4245,7 +4716,8 @@ "name": "gitlab-automation", "description": "Automate GitLab project management, issues, merge requests, pipelines, branches, and user operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gitlab-ci-patterns", @@ -4254,7 +4726,8 @@ "name": "gitlab-ci-patterns", "description": "Build GitLab CI/CD pipelines with multi-stage workflows, caching, and distributed runners for scalable automation. Use when implementing GitLab CI/CD, optimizing pipeline performance, or setting up...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gitops-workflow", @@ -4263,7 +4736,8 @@ "name": "gitops-workflow", "description": "Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deplo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gmail-automation", @@ -4272,7 +4746,8 @@ "name": "gmail-automation", "description": "Automate Gmail tasks via Rube MCP (Composio): send/reply, search, labels, drafts, attachments. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "go-concurrency-patterns", @@ -4281,7 +4756,8 @@ "name": "go-concurrency-patterns", "description": "Master Go concurrency with goroutines, channels, sync primitives, and context. Use when building concurrent Go applications, implementing worker pools, or debugging race conditions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "go-playwright", @@ -4290,7 +4766,8 @@ "name": "go-playwright", "description": "Expert capability for robust, stealthy, and efficient browser automation using Playwright Go.", "risk": "safe", - "source": "https://github.com/playwright-community/playwright-go" + "source": "https://github.com/playwright-community/playwright-go", + "date_added": "2025-02-26" }, { "id": "go-rod-master", @@ -4299,7 +4776,8 @@ "name": "go-rod-master", "description": "Comprehensive guide for browser automation and web scraping with go-rod (Chrome DevTools Protocol) including stealth anti-bot-detection patterns.", "risk": "safe", - "source": "https://github.com/go-rod/rod" + "source": "https://github.com/go-rod/rod", + "date_added": "2025-02-26" }, { "id": "godot-4-migration", @@ -4308,7 +4786,8 @@ "name": "godot-4-migration", "description": "Specialized guide for migrating Godot 3.x projects to Godot 4 (GDScript 2.0), covering syntax changes, Tweens, and exports.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "godot-gdscript-patterns", @@ -4317,16 +4796,18 @@ "name": "godot-gdscript-patterns", "description": "Master Godot 4 GDScript patterns including signals, scenes, state machines, and optimization. Use when building Godot games, implementing game systems, or learning GDScript best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "golang-pro", "path": "skills\\golang-pro", "category": "uncategorized", "name": "golang-pro", - "description": "Master Go 1.21+ with modern patterns, advanced concurrency,\nperformance optimization, and production-ready microservices. Expert in the\nlatest Go ecosystem including generics, workspaces, and cutting-edge\nframeworks. Use PROACTIVELY for Go development, architecture design, or\nperformance optimization.\n", + "description": "You are a Go expert specializing in modern Go 1.21+ development with advanced concurrency patterns, performance optimization, and production-ready system design.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "google-analytics-automation", @@ -4335,7 +4816,8 @@ "name": "google-analytics-automation", "description": "Automate Google Analytics tasks via Rube MCP (Composio): run reports, list accounts/properties, funnels, pivots, key events. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "google-calendar-automation", @@ -4344,7 +4826,8 @@ "name": "google-calendar-automation", "description": "Automate Google Calendar events, scheduling, availability checks, and attendee management via Rube MCP (Composio). Create events, find free slots, manage attendees, and list calendars programmatica...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "google-drive-automation", @@ -4353,7 +4836,8 @@ "name": "google-drive-automation", "description": "Automate Google Drive file operations (upload, download, search, share, organize) via Rube MCP (Composio). Upload/download files, manage folders, share with permissions, and search across drives pr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "googlesheets-automation", @@ -4362,7 +4846,8 @@ "name": "googlesheets-automation", "description": "Automate Google Sheets operations (read, write, format, filter, manage spreadsheets) via Rube MCP (Composio). Read/write data, manage tabs, apply formatting, and search rows programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "grafana-dashboards", @@ -4371,7 +4856,8 @@ "name": "grafana-dashboards", "description": "Create and manage production Grafana dashboards for real-time visualization of system and application metrics. Use when building monitoring dashboards, visualizing metrics, or creating operational ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "graphql", @@ -4380,16 +4866,18 @@ "name": "graphql", "description": "GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper co...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "graphql-architect", "path": "skills\\graphql-architect", "category": "uncategorized", "name": "graphql-architect", - "description": "Master modern GraphQL with federation, performance optimization,\nand enterprise security. Build scalable schemas, implement advanced caching,\nand design real-time systems. Use PROACTIVELY for GraphQL architecture or\nperformance optimization.\n", + "description": "- Working on graphql architect tasks or workflows - Needing guidance, best practices, or checklists for graphql architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "grpc-golang", @@ -4398,16 +4886,18 @@ "name": "grpc-golang", "description": "Build production-ready gRPC services in Go with mTLS, streaming, and observability. Use when designing Protobuf contracts with Buf or implementing secure service-to-service transport.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "haskell-pro", "path": "skills\\haskell-pro", "category": "uncategorized", "name": "haskell-pro", - "description": "Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.", + "description": "Expert Haskell engineer specializing in advanced type systems, pure", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "helm-chart-scaffolding", @@ -4416,7 +4906,8 @@ "name": "helm-chart-scaffolding", "description": "Design, organize, and manage Helm charts for templating and packaging Kubernetes applications with reusable configurations. Use when creating Helm charts, packaging Kubernetes applications, or impl...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "helpdesk-automation", @@ -4425,133 +4916,148 @@ "name": "helpdesk-automation", "description": "Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-content", "path": "skills\\hig-components-content", "category": "uncategorized", "name": "hig-components-content", - "description": "Apple Human Interface Guidelines for content display components. Use this skill when the user asks about \"charts component\", \"collection view\", \"image view\", \"web view\", \"color well\", \"image well\", \"activity view\", \"lockup\", \"data visualization\", \"content display\", displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says \"how should I display charts\", \"what's the best way to show images\", \"should I use a web view\", \"how do I build a grid of items\", \"what component shows media\", or \"how do I present a share sheet\". Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-controls", "path": "skills\\hig-components-controls", "category": "uncategorized", "name": "hig-components-controls", - "description": "Apple HIG guidance for selection and input controls including pickers, toggles, sliders, steppers, segmented controls, combo boxes, text fields, text views, labels, token fields, virtual keyboards, rating indicators, and gauges. Use this skill when the user says \"picker or segmented control,\" \"how should my form look,\" \"what keyboard type should I use,\" \"toggle vs checkbox,\" or asks about picker design, toggle, switch, slider, stepper, text field, text input, segmented control, combo box, label, token field, virtual keyboard, rating indicator, gauge, form design, input validation, or control state management. Cross-references: hig-components-menus, hig-components-dialogs, hig-components-search.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-dialogs", "path": "skills\\hig-components-dialogs", "category": "uncategorized", "name": "hig-components-dialogs", - "description": "Apple HIG guidance for presentation components including alerts, action sheets, popovers, sheets, and digit entry views. Use this skill when the user says \"should I use an alert or a sheet,\" \"how do I show a confirmation dialog,\" \"when should I use a popover,\" \"my modals are annoying users,\" or asks about alert design, action sheet, popover, sheet, modal, dialog, digit entry, confirmation dialog, warning dialog, modal presentation, non-modal content, destructive action confirmation, or overlay UI patterns. Cross-references: hig-components-menus, hig-components-controls, hig-components-search, hig-patterns.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-layout", "path": "skills\\hig-components-layout", "category": "uncategorized", "name": "hig-components-layout", - "description": "Apple Human Interface Guidelines for layout and navigation components. Use this skill when the user asks about \"sidebar\", \"split view\", \"tab bar\", \"tab view\", \"scroll view\", \"window design\", \"panel\", \"list view\", \"table view\", \"column view\", \"outline view\", \"navigation structure\", \"app layout\", \"boxes\", \"ornaments\", or organizing content hierarchically in Apple apps. Also use when the user says \"how should I organize my app\", \"what navigation pattern should I use\", \"my layout breaks on iPad\", \"how do I build a sidebar\", \"should I use tabs or a sidebar\", or \"my app doesn't adapt to different screen sizes\". Cross-references: hig-foundations for layout/spacing principles, hig-platforms for platform-specific navigation, hig-patterns for multitasking and full-screen, hig-components-content for content display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-menus", "path": "skills\\hig-components-menus", "category": "uncategorized", "name": "hig-components-menus", - "description": "Apple HIG guidance for menu and button components including menus, context menus, dock menus, edit menus, the menu bar, toolbars, action buttons, pop-up buttons, pull-down buttons, disclosure controls, and standard buttons. Use this skill when the user says \"how should my buttons look,\" \"what goes in the menu bar,\" \"should I use a context menu or action sheet,\" \"how do I design a toolbar,\" or asks about button design, menu design, context menu, toolbar, menu bar, action button, pop-up button, pull-down button, disclosure control, dock menu, edit menu, or any menu/button component layout and behavior. Cross-references: hig-components-search, hig-components-controls, hig-components-dialogs.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-search", "path": "skills\\hig-components-search", "category": "uncategorized", "name": "hig-components-search", - "description": "Apple HIG guidance for navigation-related components including search fields, page controls, and path controls. Use this skill when the user says \"how should search work in my app,\" \"I need a breadcrumb,\" \"how do I paginate content,\" or asks about search field, search bar, page control, path control, breadcrumb, navigation component, search UX, search suggestions, search scopes, paginated content navigation, or file path hierarchy display. Cross-references: hig-components-menus, hig-components-controls, hig-components-dialogs, hig-patterns.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-status", "path": "skills\\hig-components-status", "category": "uncategorized", "name": "hig-components-status", - "description": "Apple HIG guidance for status and progress UI components including progress indicators, status bars, and activity rings. Use this skill when asked about: \"progress indicator\", \"progress bar\", \"loading spinner\", \"status bar\", \"activity ring\", \"progress display\", determinate vs indeterminate progress, loading states, or fitness tracking rings. Also use when the user says \"how do I show loading state,\" \"should I use a spinner or progress bar,\" \"what goes in the status bar,\" or asks about activity indicators. Cross-references: hig-components-system for widgets and complications, hig-inputs for gesture-driven progress controls, hig-technologies for HealthKit and activity ring data integration.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-system", "path": "skills\\hig-components-system", "category": "uncategorized", "name": "hig-components-system", - "description": "Apple HIG guidance for system experience components: widgets, live activities, notifications, complications, home screen quick actions, top shelf, watch faces, app clips, and app shortcuts. Use when asked about: \"widget design\", \"live activity\", \"notification design\", \"complication\", \"home screen quick action\", \"top shelf\", \"watch face\", \"app clip\", \"app shortcut\", \"system experience\". Also use when the user says \"how do I design a widget,\" \"what should my notification look like,\" \"how do Live Activities work,\" \"should I make an App Clip,\" or asks about surfaces outside the main app. Cross-references: hig-components-status for progress in widgets, hig-inputs for interaction patterns, hig-technologies for Siri and system integration.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-foundations", "path": "skills\\hig-foundations", "category": "uncategorized", "name": "hig-foundations", - "description": "Apple Human Interface Guidelines design foundations. Use this skill when the user asks about \"HIG color\", \"Apple typography\", \"SF Symbols\", \"dark mode guidelines\", \"accessible design\", \"Apple design foundations\", \"app icon\", \"layout guidelines\", \"materials\", \"motion\", \"privacy\", \"right to left\", \"RTL\", \"inclusive design\", branding, images, spatial layout, or writing style. Also use when the user says \"my colors look wrong in dark mode\", \"what font should I use\", \"is my app accessible enough\", \"how do I support Dynamic Type\", \"what contrast ratio do I need\", \"how do I pick system colors\", or \"my icons don't match the system style\". Cross-references: hig-platforms for platform-specific guidance, hig-patterns for interaction patterns, hig-components-layout for structural components, hig-components-content for display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-inputs", "path": "skills\\hig-inputs", "category": "uncategorized", "name": "hig-inputs", - "description": "Apple HIG guidance for input methods and interaction patterns: gestures, Apple Pencil, keyboards, game controllers, pointers, Digital Crown, eye tracking, focus system, remotes, spatial interactions, gyroscope, accelerometer, and nearby interactions. Use when asked about: \"gesture design\", \"Apple Pencil\", \"keyboard shortcuts\", \"game controller\", \"pointer support\", \"mouse support\", \"trackpad\", \"Digital Crown\", \"eye tracking\", \"visionOS input\", \"focus system\", \"remote control\", \"gyroscope\", \"spatial interaction\". Also use when the user says \"what gestures should I support,\" \"how do I add keyboard shortcuts,\" \"how does input work on Apple TV,\" \"should I support Apple Pencil,\" or asks about input device handling. Cross-references: hig-components-status, hig-components-system, hig-technologies for VoiceOver and Siri.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-patterns", "path": "skills\\hig-patterns", "category": "uncategorized", "name": "hig-patterns", - "description": "Apple Human Interface Guidelines interaction and UX patterns. Use this skill when the user asks about \"onboarding flow\", \"user onboarding\", \"app launch\", \"loading state\", \"drag and drop\", \"search pattern\", \"settings design\", \"notifications\", \"modality\", \"multitasking\", \"feedback pattern\", \"haptics\", \"undo redo\", \"file management\", data entry, sharing, collaboration, full screen, audio, video, haptic feedback, ratings, printing, help, or account management in Apple apps. Also use when the user says \"how should onboarding work\", \"my app takes too long to load\", \"should I use a modal here\", \"how do I handle errors\", \"when should I ask for permissions\", \"how to show progress\", or \"what's the right way to confirm a delete\". Cross-references: hig-foundations for underlying principles, hig-platforms for platform specifics, hig-components-layout for navigation, hig-components-content for data display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-platforms", "path": "skills\\hig-platforms", "category": "uncategorized", "name": "hig-platforms", - "description": "Apple Human Interface Guidelines for platform-specific design. Use this skill when the user asks about \"designing for iOS\", \"iPad app design\", \"macOS design\", \"tvOS\", \"visionOS\", \"watchOS\", \"Apple platform\", \"which platform\", platform differences, platform-specific conventions, or multi-platform app design. Also use when the user says \"should I design differently for iPad vs iPhone\", \"how does my app work on visionOS\", \"what's different about macOS apps\", \"porting my app to another platform\", \"universal app design\", or \"what input methods does this platform use\". Cross-references: hig-foundations for shared design foundations, hig-patterns for interaction patterns, hig-components-layout for navigation structures, hig-components-content for content display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-project-context", "path": "skills\\hig-project-context", "category": "uncategorized", "name": "hig-project-context", - "description": "Create or update a shared Apple design context document that other HIG skills use to tailor guidance. Use when the user says \"set up my project context,\" \"what platforms am I targeting,\" \"configure HIG settings,\" or when starting a new Apple platform project. Also activates when other HIG skills need project context but none exists yet. This skill creates .claude/apple-design-context.md so that hig-foundations, hig-platforms, hig-components-*, hig-inputs, and hig-technologies can provide targeted advice without repetitive questions.", + "description": "Create and maintain `.claude/apple-design-context.md` so other HIG skills can skip redundant questions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-technologies", "path": "skills\\hig-technologies", "category": "uncategorized", "name": "hig-technologies", - "description": "Apple HIG guidance for Apple technology integrations: Siri, Apple Pay, HealthKit, HomeKit, ARKit, machine learning, generative AI, iCloud, Sign in with Apple, SharePlay, CarPlay, Game Center, in-app purchase, NFC, Wallet, VoiceOver, Maps, Mac Catalyst, and more. Use when asked about: \"Siri integration\", \"Apple Pay\", \"HealthKit\", \"HomeKit\", \"ARKit\", \"augmented reality\", \"machine learning\", \"generative AI\", \"iCloud sync\", \"Sign in with Apple\", \"SharePlay\", \"CarPlay\", \"in-app purchase\", \"NFC\", \"VoiceOver\", \"Maps\", \"Mac Catalyst\". Also use when the user says \"how do I integrate Siri,\" \"what are the Apple Pay guidelines,\" \"how should my AR experience work,\" \"how do I use Sign in with Apple,\" or asks about any Apple framework or service integration. Cross-references: hig-inputs for input methods, hig-components-system for widgets.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hosted-agents-v2-py", @@ -4560,16 +5066,18 @@ "name": "hosted-agents-v2-py", "description": "Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDefinition. Use when creating container-based agents in Azure AI Foundry.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hr-pro", "path": "skills\\hr-pro", "category": "uncategorized", "name": "hr-pro", - "description": "Professional, ethical HR partner for hiring,\nonboarding/offboarding, PTO and leave, performance, compliant policies, and\nemployee relations. Ask for jurisdiction and company context before advising;\nproduce structured, bias-mitigated, lawful templates.\n", + "description": "- Working on hr pro tasks or workflows - Needing guidance, best practices, or checklists for hr pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "html-injection-testing", @@ -4578,7 +5086,8 @@ "name": "html-injection-testing", "description": "This skill should be used when the user asks to \"test for HTML injection\", \"inject HTML into web pages\", \"perform HTML injection attacks\", \"deface web applications\", or \"test conten...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hubspot-automation", @@ -4587,7 +5096,8 @@ "name": "hubspot-automation", "description": "Automate HubSpot CRM operations (contacts, companies, deals, tickets, properties) via Rube MCP using Composio integration.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hubspot-integration", @@ -4596,7 +5106,8 @@ "name": "hubspot-integration", "description": "Expert patterns for HubSpot CRM integration including OAuth authentication, CRM objects, associations, batch operations, webhooks, and custom objects. Covers Node.js and Python SDKs. Use when: hubs...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "hugging-face-cli", @@ -4605,7 +5116,8 @@ "name": "hugging-face-cli", "description": "Execute Hugging Face Hub operations using the `hf` CLI. Use when the user needs to download models/datasets/spaces, upload files to Hub repositories, create repos, manage local cache, or run comput...", "risk": "safe", - "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-cli" + "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-cli", + "date_added": "2025-02-26" }, { "id": "hugging-face-jobs", @@ -4614,16 +5126,18 @@ "name": "hugging-face-jobs", "description": "This skill should be used when users want to run any workload on Hugging Face Jobs infrastructure. Covers UV scripts, Docker-based jobs, hardware selection, cost estimation, authentication with tok...", "risk": "safe", - "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-jobs" + "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-jobs", + "date_added": "2025-02-26" }, { "id": "hybrid-cloud-architect", "path": "skills\\hybrid-cloud-architect", "category": "uncategorized", "name": "hybrid-cloud-architect", - "description": "Expert hybrid cloud architect specializing in complex multi-cloud\nsolutions across AWS/Azure/GCP and private clouds (OpenStack/VMware). Masters\nhybrid connectivity, workload placement optimization, edge computing, and\ncross-cloud automation. Handles compliance, cost optimization, disaster\nrecovery, and migration strategies. Use PROACTIVELY for hybrid architecture,\nmulti-cloud strategy, or complex infrastructure integration.\n", + "description": "- Working on hybrid cloud architect tasks or workflows - Needing guidance, best practices, or checklists for hybrid cloud architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hybrid-cloud-networking", @@ -4632,7 +5146,8 @@ "name": "hybrid-cloud-networking", "description": "Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hybrid-search-implementation", @@ -4641,7 +5156,8 @@ "name": "hybrid-search-implementation", "description": "Combine vector and keyword search for improved retrieval. Use when implementing RAG systems, building search engines, or when neither approach alone provides sufficient recall.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "i18n-localization", @@ -4650,7 +5166,8 @@ "name": "i18n-localization", "description": "Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "idor-testing", @@ -4659,7 +5176,8 @@ "name": "idor-testing", "description": "This skill should be used when the user asks to \"test for insecure direct object references,\" \"find IDOR vulnerabilities,\" \"exploit broken access control,\" \"enumerate user IDs or obje...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "imagen", @@ -4668,7 +5186,8 @@ "name": "imagen", "description": "This skill generates images using Google Gemini's image generation model (`gemini-3-pro-image-preview`). It enables seamless image creation during any Claude Code session - whether you're building frontend UIs, creating documentation, or need visual", "risk": "safe", - "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/imagen" + "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/imagen", + "date_added": "2025-02-26" }, { "id": "impress", @@ -4677,16 +5196,18 @@ "name": "impress", "description": "Presentation creation, format conversion (ODP/PPTX/PDF), slide automation with LibreOffice Impress.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "incident-responder", "path": "skills\\incident-responder", "category": "uncategorized", "name": "incident-responder", - "description": "Expert SRE incident responder specializing in rapid problem\nresolution, modern observability, and comprehensive incident management.\nMasters incident command, blameless post-mortems, error budget management, and\nsystem reliability patterns. Handles critical outages, communication\nstrategies, and continuous improvement. Use IMMEDIATELY for production\nincidents or SRE practices.\n", + "description": "- Working on incident responder tasks or workflows - Needing guidance, best practices, or checklists for incident responder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "incident-response-incident-response", @@ -4695,7 +5216,8 @@ "name": "incident-response-incident-response", "description": "Use when working with incident response incident response", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "incident-response-smart-fix", @@ -4704,7 +5226,8 @@ "name": "incident-response-smart-fix", "description": "[Extended thinking: This workflow implements a sophisticated debugging and resolution pipeline that leverages AI-assisted debugging tools and observability platforms to systematically diagnose and res", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "incident-runbook-templates", @@ -4713,7 +5236,8 @@ "name": "incident-runbook-templates", "description": "Create structured incident response runbooks with step-by-step procedures, escalation paths, and recovery actions. Use when building runbooks, responding to incidents, or establishing incident resp...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "infinite-gratitude", @@ -4722,7 +5246,8 @@ "name": "infinite-gratitude", "description": "Multi-agent research skill for parallel research execution (10 agents, battle-tested with real case studies).", "risk": "safe", - "source": "https://github.com/sstklen/infinite-gratitude" + "source": "https://github.com/sstklen/infinite-gratitude", + "date_added": "2025-02-26" }, { "id": "inngest", @@ -4731,7 +5256,8 @@ "name": "inngest", "description": "Inngest expert for serverless-first background jobs, event-driven workflows, and durable execution without managing queues or workers. Use when: inngest, serverless background job, event-driven wor...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "instagram-automation", @@ -4740,7 +5266,8 @@ "name": "instagram-automation", "description": "Automate Instagram tasks via Rube MCP (Composio): create posts, carousels, manage media, get insights, and publishing limits. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "interactive-portfolio", @@ -4749,7 +5276,8 @@ "name": "interactive-portfolio", "description": "Expert in building portfolios that actually land jobs and clients - not just showing work, but creating memorable experiences. Covers developer portfolios, designer portfolios, creative portfolios,...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "intercom-automation", @@ -4758,7 +5286,8 @@ "name": "intercom-automation", "description": "Automate Intercom tasks via Rube MCP (Composio): conversations, contacts, companies, segments, admins. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "internal-comms-anthropic", @@ -4767,7 +5296,8 @@ "name": "internal-comms-anthropic", "description": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "internal-comms-community", @@ -4776,25 +5306,28 @@ "name": "internal-comms-community", "description": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "inventory-demand-planning", "path": "skills\\inventory-demand-planning", "category": "uncategorized", "name": "inventory-demand-planning", - "description": "Codified expertise for demand forecasting, safety stock optimisation, replenishment planning, and promotional lift estimation at multi-location retailers. Informed by demand planners with 15+ years experience managing hundreds of SKUs. Includes forecasting method selection, ABC/XYZ analysis, seasonal transition management, and vendor negotiation frameworks. Use when forecasting demand, setting safety stock, planning replenishment, managing promotions, or optimising inventory levels.\n", + "description": "Use this skill when forecasting product demand, calculating optimal safety stock levels, planning inventory replenishment cycles, estimating the impact of retail promotions, or conducting ABC/XYZ inventory segmentation.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "ios-developer", "path": "skills\\ios-developer", "category": "uncategorized", "name": "ios-developer", - "description": "Develop native iOS applications with Swift/SwiftUI. Masters iOS 18,\nSwiftUI, UIKit integration, Core Data, networking, and App Store optimization.\nUse PROACTIVELY for iOS-specific features, App Store optimization, or native\niOS development.\n", + "description": "- Working on ios developer tasks or workflows - Needing guidance, best practices, or checklists for ios developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "istio-traffic-management", @@ -4803,7 +5336,8 @@ "name": "istio-traffic-management", "description": "Configure Istio traffic management including routing, load balancing, circuit breakers, and canary deployments. Use when implementing service mesh traffic policies, progressive delivery, or resilie...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "iterate-pr", @@ -4812,16 +5346,18 @@ "name": "iterate-pr", "description": "Iterate on a PR until CI passes. Use when you need to fix CI failures, address review feedback, or continuously push fixes until all checks are green. Automates the feedback-fix-push-wait cycle.", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/iterate-pr" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/iterate-pr", + "date_added": "2025-02-26" }, { "id": "java-pro", "path": "skills\\java-pro", "category": "uncategorized", "name": "java-pro", - "description": "Master Java 21+ with modern features like virtual threads, pattern\nmatching, and Spring Boot 3.x. Expert in the latest Java ecosystem including\nGraalVM, Project Loom, and cloud-native patterns. Use PROACTIVELY for Java\ndevelopment, microservices architecture, or performance optimization.\n", + "description": "- Working on java pro tasks or workflows - Needing guidance, best practices, or checklists for java pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-mastery", @@ -4830,16 +5366,18 @@ "name": "javascript-mastery", "description": "Comprehensive JavaScript reference covering 33+ essential concepts every developer should know. From fundamentals like primitives and closures to advanced patterns like async/await and functional p...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-pro", "path": "skills\\javascript-pro", "category": "uncategorized", "name": "javascript-pro", - "description": "Master modern JavaScript with ES6+, async patterns, and Node.js\nAPIs. Handles promises, event loops, and browser/Node compatibility. Use\nPROACTIVELY for JavaScript optimization, async debugging, or complex JS\npatterns.\n", + "description": "You are a JavaScript expert specializing in modern JS and async programming.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-testing-patterns", @@ -4848,7 +5386,8 @@ "name": "javascript-testing-patterns", "description": "Implement comprehensive testing strategies using Jest, Vitest, and Testing Library for unit tests, integration tests, and end-to-end testing with mocking, fixtures, and test-driven development. Use...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-typescript-typescript-scaffold", @@ -4857,7 +5396,8 @@ "name": "javascript-typescript-typescript-scaffold", "description": "You are a TypeScript project architecture expert specializing in scaffolding production-ready Node.js and frontend applications. Generate complete project structures with modern tooling (pnpm, Vite, N", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "jira-automation", @@ -4866,16 +5406,18 @@ "name": "jira-automation", "description": "Automate Jira tasks via Rube MCP (Composio): issues, projects, sprints, boards, comments, users. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "julia-pro", "path": "skills\\julia-pro", "category": "uncategorized", "name": "julia-pro", - "description": "Master Julia 1.10+ with modern features, performance optimization,\nmultiple dispatch, and production-ready practices. Expert in the Julia\necosystem including package management, scientific computing, and\nhigh-performance numerical code. Use PROACTIVELY for Julia development,\noptimization, or advanced Julia patterns.\n", + "description": "- Working on julia pro tasks or workflows - Needing guidance, best practices, or checklists for julia pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "k8s-manifest-generator", @@ -4884,7 +5426,8 @@ "name": "k8s-manifest-generator", "description": "Create production-ready Kubernetes manifests for Deployments, Services, ConfigMaps, and Secrets following best practices and security standards. Use when generating Kubernetes YAML manifests, creat...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "k8s-security-policies", @@ -4893,7 +5436,8 @@ "name": "k8s-security-policies", "description": "Implement Kubernetes security policies including NetworkPolicy, PodSecurityPolicy, and RBAC for production-grade security. Use when securing Kubernetes clusters, implementing network isolation, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kaizen", @@ -4902,7 +5446,8 @@ "name": "kaizen", "description": "Guide for continuous improvement, error proofing, and standardization. Use this skill when the user wants to improve code quality, refactor, or discuss process improvements.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "klaviyo-automation", @@ -4911,7 +5456,8 @@ "name": "klaviyo-automation", "description": "Automate Klaviyo tasks via Rube MCP (Composio): manage email/SMS campaigns, inspect campaign messages, track tags, and monitor send jobs. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kotlin-coroutines-expert", @@ -4920,7 +5466,8 @@ "name": "kotlin-coroutines-expert", "description": "Expert patterns for Kotlin Coroutines and Flow, covering structured concurrency, error handling, and testing.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kpi-dashboard-design", @@ -4929,16 +5476,18 @@ "name": "kpi-dashboard-design", "description": "Design effective KPI dashboards with metrics selection, visualization best practices, and real-time monitoring patterns. Use when building business dashboards, selecting metrics, or designing data ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kubernetes-architect", "path": "skills\\kubernetes-architect", "category": "uncategorized", "name": "kubernetes-architect", - "description": "Expert Kubernetes architect specializing in cloud-native\ninfrastructure, advanced GitOps workflows (ArgoCD/Flux), and enterprise\ncontainer orchestration. Masters EKS/AKS/GKE, service mesh (Istio/Linkerd),\nprogressive delivery, multi-tenancy, and platform engineering. Handles\nsecurity, observability, cost optimization, and developer experience. Use\nPROACTIVELY for K8s architecture, GitOps implementation, or cloud-native\nplatform design.\n", + "description": "You are a Kubernetes architect specializing in cloud-native infrastructure, modern GitOps workflows, and enterprise container orchestration at scale.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kubernetes-deployment", @@ -4947,7 +5496,8 @@ "name": "kubernetes-deployment", "description": "Kubernetes deployment workflow for container orchestration, Helm charts, service mesh, and production-ready K8s configurations.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "langchain-architecture", @@ -4956,7 +5506,8 @@ "name": "langchain-architecture", "description": "Design LLM applications using the LangChain framework with agents, memory, and tool integration patterns. Use when building LangChain applications, implementing AI agents, or creating complex LLM w...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "langfuse", @@ -4965,7 +5516,8 @@ "name": "langfuse", "description": "Expert in Langfuse - the open-source LLM observability platform. Covers tracing, prompt management, evaluation, datasets, and integration with LangChain, LlamaIndex, and OpenAI. Essential for debug...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "langgraph", @@ -4974,7 +5526,8 @@ "name": "langgraph", "description": "Expert in LangGraph - the production-grade framework for building stateful, multi-actor AI applications. Covers graph construction, state management, cycles and branches, persistence with checkpoin...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "laravel-expert", @@ -4983,7 +5536,8 @@ "name": "laravel-expert", "description": "Senior Laravel Engineer role for production-grade, maintainable, and idiomatic Laravel solutions. Focuses on clean architecture, security, performance, and modern standards (Laravel 10/11+).", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "laravel-security-audit", @@ -4992,7 +5546,8 @@ "name": "laravel-security-audit", "description": "Security auditor for Laravel applications. Analyzes code for vulnerabilities, misconfigurations, and insecure practices using OWASP standards and Laravel security best practices.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "last30days", @@ -5001,7 +5556,8 @@ "name": "last30days", "description": "Research a topic from the last 30 days on Reddit + X + Web, become an expert, and write copy-paste-ready prompts for the user's target tool.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "launch-strategy", @@ -5010,25 +5566,28 @@ "name": "launch-strategy", "description": "When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,'...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "legacy-modernizer", "path": "skills\\legacy-modernizer", "category": "uncategorized", "name": "legacy-modernizer", - "description": "Refactor legacy codebases, migrate outdated frameworks, and\nimplement gradual modernization. Handles technical debt, dependency updates,\nand backward compatibility. Use PROACTIVELY for legacy system updates,\nframework migrations, or technical debt reduction.\n", + "description": "- Working on legacy modernizer tasks or workflows - Needing guidance, best practices, or checklists for legacy modernizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "legal-advisor", "path": "skills\\legal-advisor", "category": "uncategorized", "name": "legal-advisor", - "description": "Draft privacy policies, terms of service, disclaimers, and legal\nnotices. Creates GDPR-compliant texts, cookie policies, and data processing\nagreements. Use PROACTIVELY for legal documentation, compliance texts, or\nregulatory requirements.\n", + "description": "- Working on legal advisor tasks or workflows - Needing guidance, best practices, or checklists for legal advisor", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linear-automation", @@ -5037,7 +5596,8 @@ "name": "linear-automation", "description": "Automate Linear tasks via Rube MCP (Composio): issues, projects, cycles, teams, labels. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linear-claude-skill", @@ -5046,7 +5606,8 @@ "name": "linear-claude-skill", "description": "Manage Linear issues, projects, and teams", "risk": "safe", - "source": "https://github.com/wrsmith108/linear-claude-skill" + "source": "https://github.com/wrsmith108/linear-claude-skill", + "date_added": "2025-02-26" }, { "id": "linkedin-automation", @@ -5055,7 +5616,8 @@ "name": "linkedin-automation", "description": "Automate LinkedIn tasks via Rube MCP (Composio): create posts, manage profile, company info, comments, and image uploads. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linkedin-cli", @@ -5064,7 +5626,8 @@ "name": "linkedin-cli", "description": "Use when automating LinkedIn via CLI: fetch profiles, search people/companies, send messages, manage connections, create posts, and Sales Navigator.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linkerd-patterns", @@ -5073,7 +5636,8 @@ "name": "linkerd-patterns", "description": "Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "lint-and-validate", @@ -5082,7 +5646,8 @@ "name": "lint-and-validate", "description": "Automatic quality control, linting, and static analysis procedures. Use after every code modification to ensure syntax correctness and project standards. Triggers onKeywords: lint, format, check, v...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linux-privilege-escalation", @@ -5091,7 +5656,8 @@ "name": "linux-privilege-escalation", "description": "This skill should be used when the user asks to \"escalate privileges on Linux\", \"find privesc vectors on Linux systems\", \"exploit sudo misconfigurations\", \"abuse SUID binaries\", \"ex...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linux-shell-scripting", @@ -5100,7 +5666,8 @@ "name": "linux-shell-scripting", "description": "This skill should be used when the user asks to \"create bash scripts\", \"automate Linux tasks\", \"monitor system resources\", \"backup files\", \"manage users\", or \"write production she...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linux-troubleshooting", @@ -5109,7 +5676,8 @@ "name": "linux-troubleshooting", "description": "Linux system troubleshooting workflow for diagnosing and resolving system issues, performance problems, and service failures.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "llm-app-patterns", @@ -5118,7 +5686,8 @@ "name": "llm-app-patterns", "description": "Production-ready patterns for building LLM applications. Covers RAG pipelines, agent architectures, prompt IDEs, and LLMOps monitoring. Use when designing AI applications, implementing RAG, buildin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-application-dev-ai-assistant", @@ -5127,7 +5696,8 @@ "name": "llm-application-dev-ai-assistant", "description": "You are an AI assistant development expert specializing in creating intelligent conversational interfaces, chatbots, and AI-powered applications. Design comprehensive AI assistant solutions with natur", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-application-dev-langchain-agent", @@ -5136,7 +5706,8 @@ "name": "llm-application-dev-langchain-agent", "description": "You are an expert LangChain agent developer specializing in production-grade AI systems using LangChain 0.1+ and LangGraph.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-application-dev-prompt-optimize", @@ -5145,7 +5716,8 @@ "name": "llm-application-dev-prompt-optimize", "description": "You are an expert prompt engineer specializing in crafting effective prompts for LLMs through advanced techniques including constitutional AI, chain-of-thought reasoning, and model-specific optimizati", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-evaluation", @@ -5154,16 +5726,18 @@ "name": "llm-evaluation", "description": "Implement comprehensive evaluation strategies for LLM applications using automated metrics, human feedback, and benchmarking. Use when testing LLM performance, measuring AI application quality, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "logistics-exception-management", "path": "skills\\logistics-exception-management", "category": "uncategorized", "name": "logistics-exception-management", - "description": "Codified expertise for handling freight exceptions, shipment delays, damages, losses, and carrier disputes. Informed by logistics professionals with 15+ years operational experience. Includes escalation protocols, carrier-specific behaviours, claims procedures, and judgment frameworks. Use when handling shipping exceptions, freight claims, delivery issues, or carrier disputes.\n", + "description": "Use this skill when dealing with deviations from planned logistics operations, such as transit delays, damaged shipments, lost cargo, or when initiating and managing claims and disputes with freight carriers.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "loki-mode", @@ -5172,34 +5746,38 @@ "name": "loki-mode", "description": "Multi-agent autonomous startup system for Claude Code. Triggers on \"Loki Mode\". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "m365-agents-dotnet", "path": "skills\\m365-agents-dotnet", "category": "uncategorized", "name": "m365-agents-dotnet", - "description": "Microsoft 365 Agents SDK for .NET. Build multichannel agents for Teams/M365/Copilot Studio with ASP.NET Core hosting, AgentApplication routing, and MSAL-based auth. Triggers: \"Microsoft 365 Agents SDK\", \"Microsoft.Agents\", \"AddAgentApplicationOptions\", \"AgentApplication\", \"AddAgentAspNetAuthentication\", \"Copilot Studio client\", \"IAgentHttpAdapter\".\n", + "description": "Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft.Agents SDK with ASP.NET Core hosting, agent routing, and MSAL-based authentication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "m365-agents-py", "path": "skills\\m365-agents-py", "category": "uncategorized", "name": "m365-agents-py", - "description": "Microsoft 365 Agents SDK for Python. Build multichannel agents for Teams/M365/Copilot Studio with aiohttp hosting, AgentApplication routing, streaming responses, and MSAL-based auth. Triggers: \"Microsoft 365 Agents SDK\", \"microsoft_agents\", \"AgentApplication\", \"start_agent_process\", \"TurnContext\", \"Copilot Studio client\", \"CloudAdapter\".\n", + "description": "Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft Agents SDK with aiohttp hosting, AgentApplication routing, streaming responses, and MSAL-based authentication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "m365-agents-ts", "path": "skills\\m365-agents-ts", "category": "uncategorized", "name": "m365-agents-ts", - "description": "Microsoft 365 Agents SDK for TypeScript/Node.js. Build multichannel agents for Teams/M365/Copilot Studio with AgentApplication routing, Express hosting, streaming responses, and Copilot Studio client integration. Triggers: \"Microsoft 365 Agents SDK\", \"@microsoft/agents-hosting\", \"AgentApplication\", \"startServer\", \"streamingResponse\", \"Copilot Studio client\", \"@microsoft/agents-copilotstudio-client\".\n", + "description": "Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft 365 Agents SDK with Express hosting, AgentApplication routing, streaming responses, and Copilot Studio client integrations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "machine-learning-ops-ml-pipeline", @@ -5208,7 +5786,8 @@ "name": "machine-learning-ops-ml-pipeline", "description": "Design and implement a complete ML pipeline for: $ARGUMENTS", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mailchimp-automation", @@ -5217,7 +5796,8 @@ "name": "mailchimp-automation", "description": "Automate Mailchimp email marketing including campaigns, audiences, subscribers, segments, and analytics via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "make-automation", @@ -5226,7 +5806,8 @@ "name": "make-automation", "description": "Automate Make (Integromat) tasks via Rube MCP (Composio): operations, enums, language and timezone lookups. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "makepad-skills", @@ -5235,16 +5816,18 @@ "name": "makepad-skills", "description": "Makepad UI development skills for Rust apps: setup, patterns, shaders, packaging, and troubleshooting.", "risk": "safe", - "source": "https://github.com/ZhangHanDong/makepad-skills" + "source": "https://github.com/ZhangHanDong/makepad-skills", + "date_added": "2025-02-26" }, { "id": "malware-analyst", "path": "skills\\malware-analyst", "category": "uncategorized", "name": "malware-analyst", - "description": "Expert malware analyst specializing in defensive malware research,\nthreat intelligence, and incident response. Masters sandbox analysis,\nbehavioral analysis, and malware family identification. Handles static/dynamic\nanalysis, unpacking, and IOC extraction. Use PROACTIVELY for malware triage,\nthreat hunting, incident response, or security research.\n", + "description": "file sample.exe sha256sum sample.exe", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "manifest", @@ -5253,16 +5836,18 @@ "name": "manifest", "description": "Install and configure the Manifest observability plugin for your agents. Use when setting up telemetry, configuring API keys, or troubleshooting the plugin.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "market-sizing-analysis", "path": "skills\\market-sizing-analysis", "category": "uncategorized", "name": "market-sizing-analysis", - "description": "This skill should be used when the user asks to \\\\\\\"calculate TAM\\\\\\\",\n\"determine SAM\", \"estimate SOM\", \"size the market\", \"calculate market\nopportunity\", \"what's the total addressable market\", or requests market sizing\nanalysis for a startup or business opportunity.\n", + "description": "Comprehensive market sizing methodologies for calculating Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) for startup opportunities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "marketing-ideas", @@ -5271,7 +5856,8 @@ "name": "marketing-ideas", "description": "Provide proven marketing strategies and growth ideas for SaaS and software products, prioritized using a marketing feasibility scoring system.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "marketing-psychology", @@ -5280,7 +5866,8 @@ "name": "marketing-psychology", "description": "Apply behavioral science and mental models to marketing decisions, prioritized using a psychological leverage and feasibility scoring system.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mcp-builder", @@ -5289,7 +5876,8 @@ "name": "mcp-builder", "description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate exte...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mcp-builder-ms", @@ -5298,7 +5886,8 @@ "name": "mcp-builder-ms", "description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate exte...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "memory-forensics", @@ -5307,7 +5896,8 @@ "name": "memory-forensics", "description": "Master memory forensics techniques including memory acquisition, process analysis, and artifact extraction using Volatility and related tools. Use when analyzing memory dumps, investigating inciden...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "memory-safety-patterns", @@ -5316,7 +5906,8 @@ "name": "memory-safety-patterns", "description": "Implement memory-safe programming with RAII, ownership, smart pointers, and resource management across Rust, C++, and C. Use when writing safe systems code, managing resources, or preventing memory...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "memory-systems", @@ -5325,16 +5916,18 @@ "name": "memory-systems", "description": "Design short-term, long-term, and graph-based memory architectures", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/memory-systems" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/memory-systems", + "date_added": "2025-02-26" }, { "id": "mermaid-expert", "path": "skills\\mermaid-expert", "category": "uncategorized", "name": "mermaid-expert", - "description": "Create Mermaid diagrams for flowcharts, sequences, ERDs, and\narchitectures. Masters syntax for all diagram types and styling. Use\nPROACTIVELY for visual documentation, system diagrams, or process flows.\n", + "description": "- Working on mermaid expert tasks or workflows - Needing guidance, best practices, or checklists for mermaid expert", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "metasploit-framework", @@ -5343,7 +5936,8 @@ "name": "metasploit-framework", "description": "This skill should be used when the user asks to \"use Metasploit for penetration testing\", \"exploit vulnerabilities with msfconsole\", \"create payloads with msfvenom\", \"perform post-exp...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "micro-saas-launcher", @@ -5352,7 +5946,8 @@ "name": "micro-saas-launcher", "description": "Expert in launching small, focused SaaS products fast - the indie hacker approach to building profitable software. Covers idea validation, MVP development, pricing, launch strategies, and growing t...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "microservices-patterns", @@ -5361,16 +5956,18 @@ "name": "microservices-patterns", "description": "Design microservices architectures with service boundaries, event-driven communication, and resilience patterns. Use when building distributed systems, decomposing monoliths, or implementing micros...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "microsoft-azure-webjobs-extensions-authentication-events-dotnet", "path": "skills\\microsoft-azure-webjobs-extensions-authentication-events-dotnet", "category": "uncategorized", "name": "microsoft-azure-webjobs-extensions-authentication-events-dotnet", - "description": "Microsoft Entra Authentication Events SDK for .NET. Azure Functions triggers for custom authentication extensions. Use for token enrichment, custom claims, attribute collection, and OTP customization in Entra ID. Triggers: \"Authentication Events\", \"WebJobsAuthenticationEventsTrigger\", \"OnTokenIssuanceStart\", \"OnAttributeCollectionStart\", \"custom claims\", \"token enrichment\", \"Entra custom extension\", \"authentication extension\".\n", + "description": "Azure Functions extension for handling Microsoft Entra ID custom authentication events.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "microsoft-teams-automation", @@ -5379,16 +5976,18 @@ "name": "microsoft-teams-automation", "description": "Automate Microsoft Teams tasks via Rube MCP (Composio): send messages, manage channels, create meetings, handle chats, and search messages. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "minecraft-bukkit-pro", "path": "skills\\minecraft-bukkit-pro", "category": "uncategorized", "name": "minecraft-bukkit-pro", - "description": "Master Minecraft server plugin development with Bukkit, Spigot, and\nPaper APIs. Specializes in event-driven architecture, command systems, world\nmanipulation, player management, and performance optimization. Use PROACTIVELY\nfor plugin architecture, gameplay mechanics, server-side features, or\ncross-version compatibility.\n", + "description": "- Working on minecraft bukkit pro tasks or workflows - Needing guidance, best practices, or checklists for minecraft bukkit pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "miro-automation", @@ -5397,7 +5996,8 @@ "name": "miro-automation", "description": "Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mixpanel-automation", @@ -5406,16 +6006,18 @@ "name": "mixpanel-automation", "description": "Automate Mixpanel tasks via Rube MCP (Composio): events, segmentation, funnels, cohorts, user profiles, JQL queries. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ml-engineer", "path": "skills\\ml-engineer", "category": "uncategorized", "name": "ml-engineer", - "description": "Build production ML systems with PyTorch 2.x, TensorFlow, and\nmodern ML frameworks. Implements model serving, feature engineering, A/B\ntesting, and monitoring. Use PROACTIVELY for ML model deployment, inference\noptimization, or production ML infrastructure.\n", + "description": "- Working on ml engineer tasks or workflows - Needing guidance, best practices, or checklists for ml engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ml-pipeline-workflow", @@ -5424,16 +6026,18 @@ "name": "ml-pipeline-workflow", "description": "Build end-to-end MLOps pipelines from data preparation through model training, validation, and production deployment. Use when creating ML pipelines, implementing MLOps practices, or automating mod...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mlops-engineer", "path": "skills\\mlops-engineer", "category": "uncategorized", "name": "mlops-engineer", - "description": "Build comprehensive ML pipelines, experiment tracking, and model\nregistries with MLflow, Kubeflow, and modern MLOps tools. Implements automated\ntraining, deployment, and monitoring across cloud platforms. Use PROACTIVELY\nfor ML infrastructure, experiment management, or pipeline automation.\n", + "description": "- Working on mlops engineer tasks or workflows - Needing guidance, best practices, or checklists for mlops engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-design", @@ -5442,16 +6046,18 @@ "name": "mobile-design", "description": "Mobile-first design and engineering doctrine for iOS and Android apps. Covers touch interaction, performance, platform conventions, offline behavior, and mobile-specific decision-making. Teaches pr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-developer", "path": "skills\\mobile-developer", "category": "uncategorized", "name": "mobile-developer", - "description": "Develop React Native, Flutter, or native mobile apps with modern\narchitecture patterns. Masters cross-platform development, native\nintegrations, offline sync, and app store optimization. Use PROACTIVELY for\nmobile features, cross-platform code, or app optimization.\n", + "description": "- Working on mobile developer tasks or workflows - Needing guidance, best practices, or checklists for mobile developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-games", @@ -5460,16 +6066,18 @@ "name": "mobile-games", "description": "Mobile game development principles. Touch input, battery, performance, app stores.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-security-coder", "path": "skills\\mobile-security-coder", "category": "uncategorized", "name": "mobile-security-coder", - "description": "Expert in secure mobile coding practices specializing in input\nvalidation, WebView security, and mobile-specific security patterns. Use\nPROACTIVELY for mobile security implementations or mobile security code\nreviews.\n", + "description": "- Working on mobile security coder tasks or workflows - Needing guidance, best practices, or checklists for mobile security coder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "modern-javascript-patterns", @@ -5478,7 +6086,8 @@ "name": "modern-javascript-patterns", "description": "Master ES6+ features including async/await, destructuring, spread operators, arrow functions, promises, modules, iterators, generators, and functional programming patterns for writing clean, effici...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "monday-automation", @@ -5487,7 +6096,8 @@ "name": "monday-automation", "description": "Automate Monday.com work management including boards, items, columns, groups, subitems, and updates via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "monorepo-architect", @@ -5496,7 +6106,8 @@ "name": "monorepo-architect", "description": "Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup,", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "monorepo-management", @@ -5505,7 +6116,8 @@ "name": "monorepo-management", "description": "Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monor...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "moodle-external-api-development", @@ -5514,7 +6126,8 @@ "name": "moodle-external-api-development", "description": "Create custom external web service APIs for Moodle LMS. Use when implementing web services for course management, user tracking, quiz operations, or custom plugin functionality. Covers parameter va...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mtls-configuration", @@ -5523,16 +6136,18 @@ "name": "mtls-configuration", "description": "Configure mutual TLS (mTLS) for zero-trust service-to-service communication. Use when implementing zero-trust networking, certificate management, or securing internal service communication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multi-agent-brainstorming", "path": "skills\\multi-agent-brainstorming", "category": "uncategorized", "name": "multi-agent-brainstorming", - "description": "Use this skill when a design or idea requires higher confidence, risk reduction, or formal review. This skill orchestrates a structured, sequential multi-agent design review where each agent has a strict, non-overlapping role. It prevents blind spots, false confidence, and premature convergence.", + "description": "Transform a single-agent design into a **robust, review-validated design** by simulating a formal peer-review process using multiple constrained agents.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multi-agent-patterns", @@ -5541,7 +6156,8 @@ "name": "multi-agent-patterns", "description": "Master orchestrator, peer-to-peer, and hierarchical multi-agent architectures", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/multi-agent-patterns" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/multi-agent-patterns", + "date_added": "2025-02-26" }, { "id": "multi-cloud-architecture", @@ -5550,7 +6166,8 @@ "name": "multi-cloud-architecture", "description": "Design multi-cloud architectures using a decision framework to select and integrate services across AWS, Azure, and GCP. Use when building multi-cloud systems, avoiding vendor lock-in, or leveragin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multi-platform-apps-multi-platform", @@ -5559,7 +6176,8 @@ "name": "multi-platform-apps-multi-platform", "description": "Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multiplayer", @@ -5568,7 +6186,8 @@ "name": "multiplayer", "description": "Multiplayer game development principles. Architecture, networking, synchronization.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "n8n-code-python", @@ -5577,7 +6196,8 @@ "name": "n8n-code-python", "description": "Write Python code in n8n Code nodes. Use when writing Python in n8n, using _input/_json/_node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes.", "risk": "safe", - "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-code-python" + "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-code-python", + "date_added": "2025-02-26" }, { "id": "n8n-mcp-tools-expert", @@ -5586,7 +6206,8 @@ "name": "n8n-mcp-tools-expert", "description": "Expert guide for using n8n-mcp MCP tools effectively. Use when searching for nodes, validating configurations, accessing templates, managing workflows, or using any n8n-mcp tool. Provides tool sele...", "risk": "safe", - "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-mcp-tools-expert" + "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-mcp-tools-expert", + "date_added": "2025-02-26" }, { "id": "n8n-node-configuration", @@ -5595,7 +6216,8 @@ "name": "n8n-node-configuration", "description": "Operation-aware node configuration guidance. Use when configuring nodes, understanding property dependencies, determining required fields, choosing between get_node detail levels, or learning commo...", "risk": "safe", - "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-node-configuration" + "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-node-configuration", + "date_added": "2025-02-26" }, { "id": "nanobanana-ppt-skills", @@ -5604,7 +6226,8 @@ "name": "nanobanana-ppt-skills", "description": "AI-powered PPT generation with document analysis and styled images", "risk": "safe", - "source": "https://github.com/op7418/NanoBanana-PPT-Skills" + "source": "https://github.com/op7418/NanoBanana-PPT-Skills", + "date_added": "2025-02-26" }, { "id": "neon-postgres", @@ -5613,7 +6236,8 @@ "name": "neon-postgres", "description": "Expert patterns for Neon serverless Postgres, branching, connection pooling, and Prisma/Drizzle integration Use when: neon database, serverless postgres, database branching, neon postgres, postgres...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "nerdzao-elite", @@ -5622,7 +6246,8 @@ "name": "nerdzao-elite", "description": "Senior Elite Software Engineer (15+) and Senior Product Designer. Full workflow with planning, architecture, TDD, clean code, and pixel-perfect UX validation.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nerdzao-elite-gemini-high", @@ -5631,7 +6256,8 @@ "name": "nerdzao-elite-gemini-high", "description": "Modo Elite Coder + UX Pixel-Perfect otimizado especificamente para Gemini 3.1 Pro High. Workflow completo com foco em qualidade m\u00e1xima e efici\u00eancia de tokens.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nestjs-expert", @@ -5640,7 +6266,8 @@ "name": "nestjs-expert", "description": "Nest.js framework expert specializing in module architecture, dependency injection, middleware, guards, interceptors, testing with Jest/Supertest, TypeORM/Mongoose integration, and Passport.js auth...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "network-101", @@ -5649,16 +6276,18 @@ "name": "network-101", "description": "This skill should be used when the user asks to \"set up a web server\", \"configure HTTP or HTTPS\", \"perform SNMP enumeration\", \"configure SMB shares\", \"test network services\", or ne...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "network-engineer", "path": "skills\\network-engineer", "category": "uncategorized", "name": "network-engineer", - "description": "Expert network engineer specializing in modern cloud networking,\nsecurity architectures, and performance optimization. Masters multi-cloud\nconnectivity, service mesh, zero-trust networking, SSL/TLS, global load\nbalancing, and advanced troubleshooting. Handles CDN optimization, network\nautomation, and compliance. Use PROACTIVELY for network design, connectivity\nissues, or performance optimization.\n", + "description": "- Working on network engineer tasks or workflows - Needing guidance, best practices, or checklists for network engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nextjs-app-router-patterns", @@ -5667,7 +6296,8 @@ "name": "nextjs-app-router-patterns", "description": "Master Next.js 14+ App Router with Server Components, streaming, parallel routes, and advanced data fetching. Use when building Next.js applications, implementing SSR/SSG, or optimizing React Serve...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nextjs-best-practices", @@ -5676,7 +6306,8 @@ "name": "nextjs-best-practices", "description": "Next.js App Router principles. Server Components, data fetching, routing patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nextjs-supabase-auth", @@ -5685,7 +6316,8 @@ "name": "nextjs-supabase-auth", "description": "Expert integration of Supabase Auth with Next.js App Router Use when: supabase auth next, authentication next.js, login supabase, auth middleware, protected route.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "nft-standards", @@ -5694,7 +6326,8 @@ "name": "nft-standards", "description": "Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nodejs-backend-patterns", @@ -5703,7 +6336,8 @@ "name": "nodejs-backend-patterns", "description": "Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nodejs-best-practices", @@ -5712,7 +6346,8 @@ "name": "nodejs-best-practices", "description": "Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nosql-expert", @@ -5721,7 +6356,8 @@ "name": "nosql-expert", "description": "Expert guidance for distributed NoSQL databases (Cassandra, DynamoDB). Focuses on mental models, query-first modeling, single-table design, and avoiding hot partitions in high-scale systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "notebooklm", @@ -5730,7 +6366,8 @@ "name": "notebooklm", "description": "Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth....", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "notion-automation", @@ -5739,7 +6376,8 @@ "name": "notion-automation", "description": "Automate Notion tasks via Rube MCP (Composio): pages, databases, blocks, comments, users. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "notion-template-business", @@ -5748,7 +6386,8 @@ "name": "notion-template-business", "description": "Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, market...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "nx-workspace-patterns", @@ -5757,16 +6396,18 @@ "name": "nx-workspace-patterns", "description": "Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observability-engineer", "path": "skills\\observability-engineer", "category": "uncategorized", "name": "observability-engineer", - "description": "Build production-ready monitoring, logging, and tracing systems.\nImplements comprehensive observability strategies, SLI/SLO management, and\nincident response workflows. Use PROACTIVELY for monitoring infrastructure,\nperformance optimization, or production reliability.\n", + "description": "You are an observability engineer specializing in production-grade monitoring, logging, tracing, and reliability systems for enterprise-scale applications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observability-monitoring-monitor-setup", @@ -5775,7 +6416,8 @@ "name": "observability-monitoring-monitor-setup", "description": "You are a monitoring and observability expert specializing in implementing comprehensive monitoring solutions. Set up metrics collection, distributed tracing, log aggregation, and create insightful da", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observability-monitoring-slo-implement", @@ -5784,7 +6426,8 @@ "name": "observability-monitoring-slo-implement", "description": "You are an SLO (Service Level Objective) expert specializing in implementing reliability standards and error budget-based practices. Design SLO frameworks, define SLIs, and build monitoring that ba...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observe-whatsapp", @@ -5793,7 +6436,8 @@ "name": "observe-whatsapp", "description": "Observe and troubleshoot WhatsApp in Kapso: debug message delivery, inspect webhook deliveries/retries, triage API errors, and run health checks. Use when investigating production issues, message f...", "risk": "safe", - "source": "https://github.com/gokapso/agent-skills/tree/master/skills/observe-whatsapp" + "source": "https://github.com/gokapso/agent-skills/tree/master/skills/observe-whatsapp", + "date_added": "2025-02-26" }, { "id": "obsidian-clipper-template-creator", @@ -5802,7 +6446,8 @@ "name": "obsidian-clipper-template-creator", "description": "Guide for creating templates for the Obsidian Web Clipper. Use when you want to create a new clipping template, understand available variables, or format clipped content.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "office-productivity", @@ -5811,7 +6456,8 @@ "name": "office-productivity", "description": "Office productivity workflow covering document creation, spreadsheet automation, presentation generation, and integration with LibreOffice and Microsoft Office formats.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "on-call-handoff-patterns", @@ -5820,7 +6466,8 @@ "name": "on-call-handoff-patterns", "description": "Master on-call shift handoffs with context transfer, escalation procedures, and documentation. Use when transitioning on-call responsibilities, documenting shift summaries, or improving on-call pro...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "onboarding-cro", @@ -5829,7 +6476,8 @@ "name": "onboarding-cro", "description": "When the user wants to optimize post-signup onboarding, user activation, first-run experience, or time-to-value. Also use when the user mentions \"onboarding flow,\" \"activation rate,\" \"u...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "one-drive-automation", @@ -5838,7 +6486,8 @@ "name": "one-drive-automation", "description": "Automate OneDrive file management, search, uploads, downloads, sharing, permissions, and folder operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "openapi-spec-generation", @@ -5847,7 +6496,8 @@ "name": "openapi-spec-generation", "description": "Generate and maintain OpenAPI 3.1 specifications from code, design-first specs, and validation patterns. Use when creating API documentation, generating SDKs, or ensuring API contract compliance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "os-scripting", @@ -5856,7 +6506,8 @@ "name": "os-scripting", "description": "Operating system and shell scripting troubleshooting workflow for Linux, macOS, and Windows. Covers bash scripting, system administration, debugging, and automation.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "oss-hunter", @@ -5865,7 +6516,8 @@ "name": "oss-hunter", "description": "Automatically hunt for high-impact OSS contribution opportunities in trending repositories.", "risk": "safe", - "source": "https://github.com/jackjin1997/ClawForge" + "source": "https://github.com/jackjin1997/ClawForge", + "date_added": "2025-02-26" }, { "id": "outlook-automation", @@ -5874,7 +6526,8 @@ "name": "outlook-automation", "description": "Automate Outlook tasks via Rube MCP (Composio): emails, calendar, contacts, folders, attachments. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "outlook-calendar-automation", @@ -5883,16 +6536,18 @@ "name": "outlook-calendar-automation", "description": "Automate Outlook Calendar tasks via Rube MCP (Composio): create events, manage attendees, find meeting times, and handle invitations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "page-cro", "path": "skills\\page-cro", "category": "uncategorized", "name": "page-cro", - "description": "Analyze and optimize individual pages for conversion performance. Use when the user wants to improve conversion rates, diagnose why a page is underperforming, or increase the effectiveness of marketing pages (homepage, landing pages, pricing, feature pages, or blog posts). This skill focuses on diagnosis, prioritization, and testable recommendations\u2014 not blind optimization.\n", + "description": "You are an expert in **page-level conversion optimization**. Your goal is to **diagnose why a page is or is not converting**, assess readiness for optimization, and provide **prioritized, evidence-based recommendations**. You do **not** guarantee con", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pagerduty-automation", @@ -5901,7 +6556,8 @@ "name": "pagerduty-automation", "description": "Automate PagerDuty tasks via Rube MCP (Composio): manage incidents, services, schedules, escalation policies, and on-call rotations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "paid-ads", @@ -5910,7 +6566,8 @@ "name": "paid-ads", "description": "When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' '...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "parallel-agents", @@ -5919,16 +6576,18 @@ "name": "parallel-agents", "description": "Multi-agent orchestration patterns. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectives.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "payment-integration", "path": "skills\\payment-integration", "category": "uncategorized", "name": "payment-integration", - "description": "Integrate Stripe, PayPal, and payment processors. Handles checkout\nflows, subscriptions, webhooks, and PCI compliance. Use PROACTIVELY when\nimplementing payments, billing, or subscription features.\n", + "description": "- Working on payment integration tasks or workflows - Needing guidance, best practices, or checklists for payment integration", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "paypal-integration", @@ -5937,7 +6596,8 @@ "name": "paypal-integration", "description": "Integrate PayPal payment processing with support for express checkout, subscriptions, and refund management. Use when implementing PayPal payments, processing online transactions, or building e-com...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "paywall-upgrade-cro", @@ -5946,7 +6606,8 @@ "name": "paywall-upgrade-cro", "description": "When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions \"paywall,\" \"upgrade screen,\" \"upgrade modal,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pc-games", @@ -5955,7 +6616,8 @@ "name": "pc-games", "description": "PC and console game development principles. Engine selection, platform features, optimization strategies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pci-compliance", @@ -5964,7 +6626,8 @@ "name": "pci-compliance", "description": "Implement PCI DSS compliance requirements for secure handling of payment card data and payment systems. Use when securing payment processing, achieving PCI compliance, or implementing payment card ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pdf-official", @@ -5973,7 +6636,8 @@ "name": "pdf-official", "description": "Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmaticall...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pentest-checklist", @@ -5982,7 +6646,8 @@ "name": "pentest-checklist", "description": "This skill should be used when the user asks to \"plan a penetration test\", \"create a security assessment checklist\", \"prepare for penetration testing\", \"define pentest scope\", \"foll...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pentest-commands", @@ -5991,16 +6656,18 @@ "name": "pentest-commands", "description": "This skill should be used when the user asks to \"run pentest commands\", \"scan with nmap\", \"use metasploit exploits\", \"crack passwords with hydra or john\", \"scan web vulnerabilities ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-engineer", "path": "skills\\performance-engineer", "category": "uncategorized", "name": "performance-engineer", - "description": "Expert performance engineer specializing in modern observability, application optimization, and scalable system performance. Masters OpenTelemetry, distributed tracing, load testing, multi-tier caching, Core Web Vitals, and performance monitoring. Handles end-to-end optimization, real user monitoring, and scalability patterns. Use PROACTIVELY for performance optimization, observability, or scalability challenges.", + "description": "Expert performance engineer specializing in modern observability,", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-profiling", @@ -6009,7 +6676,8 @@ "name": "performance-profiling", "description": "Performance profiling principles. Measurement, analysis, and optimization techniques.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-testing-review-ai-review", @@ -6018,7 +6686,8 @@ "name": "performance-testing-review-ai-review", "description": "You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, C", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-testing-review-multi-agent-review", @@ -6027,7 +6696,8 @@ "name": "performance-testing-review-multi-agent-review", "description": "Use when working with performance testing review multi agent review", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "personal-tool-builder", @@ -6036,16 +6706,18 @@ "name": "personal-tool-builder", "description": "Expert in building custom tools that solve your own problems first. The best products often start as personal tools - scratch your own itch, build for yourself, then discover others have the same i...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "php-pro", "path": "skills\\php-pro", "category": "uncategorized", "name": "php-pro", - "description": "Write idiomatic PHP code with generators, iterators, SPL data\nstructures, and modern OOP features. Use PROACTIVELY for high-performance PHP\napplications.\n", + "description": "- Working on php pro tasks or workflows - Needing guidance, best practices, or checklists for php pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pipedrive-automation", @@ -6054,7 +6726,8 @@ "name": "pipedrive-automation", "description": "Automate Pipedrive CRM operations including deals, contacts, organizations, activities, notes, and pipeline management via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "plaid-fintech", @@ -6063,7 +6736,8 @@ "name": "plaid-fintech", "description": "Expert patterns for Plaid API integration including Link token flows, transactions sync, identity verification, Auth for ACH, balance checks, webhook handling, and fintech compliance best practices...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "plan-writing", @@ -6072,7 +6746,8 @@ "name": "plan-writing", "description": "Structured task planning with clear breakdowns, dependencies, and verification criteria. Use when implementing features, refactoring, or any multi-step work.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "planning-with-files", @@ -6081,7 +6756,8 @@ "name": "planning-with-files", "description": "Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requirin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "playwright-skill", @@ -6090,7 +6766,8 @@ "name": "playwright-skill", "description": "Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "podcast-generation", @@ -6099,7 +6776,8 @@ "name": "podcast-generation", "description": "Generate AI-powered podcast-style audio narratives using Azure OpenAI's GPT Realtime Mini model via WebSocket. Use when building text-to-speech features, audio narrative generation, podcast creatio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "popup-cro", @@ -6108,16 +6786,18 @@ "name": "popup-cro", "description": "Create and optimize popups, modals, overlays, slide-ins, and banners to increase conversions without harming user experience or brand trust.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "posix-shell-pro", "path": "skills\\posix-shell-pro", "category": "uncategorized", "name": "posix-shell-pro", - "description": "Expert in strict POSIX sh scripting for maximum portability across\nUnix-like systems. Specializes in shell scripts that run on any\nPOSIX-compliant shell (dash, ash, sh, bash --posix).\n", + "description": "- Working on posix shell pro tasks or workflows - Needing guidance, best practices, or checklists for posix shell pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postgres-best-practices", @@ -6126,7 +6806,8 @@ "name": "postgres-best-practices", "description": "Postgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postgresql", @@ -6135,7 +6816,8 @@ "name": "postgresql", "description": "Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postgresql-optimization", @@ -6144,7 +6826,8 @@ "name": "postgresql-optimization", "description": "PostgreSQL database optimization workflow for query tuning, indexing strategies, performance analysis, and production database management.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "posthog-automation", @@ -6153,7 +6836,8 @@ "name": "posthog-automation", "description": "Automate PostHog tasks via Rube MCP (Composio): events, feature flags, projects, user profiles, annotations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postmark-automation", @@ -6162,7 +6846,8 @@ "name": "postmark-automation", "description": "Automate Postmark email delivery tasks via Rube MCP (Composio): send templated emails, manage templates, monitor delivery stats and bounces. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postmortem-writing", @@ -6171,7 +6856,8 @@ "name": "postmortem-writing", "description": "Write effective blameless postmortems with root cause analysis, timelines, and action items. Use when conducting incident reviews, writing postmortem documents, or improving incident response proce...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "powershell-windows", @@ -6180,7 +6866,8 @@ "name": "powershell-windows", "description": "PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pptx-official", @@ -6189,7 +6876,8 @@ "name": "pptx-official", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pricing-strategy", @@ -6198,7 +6886,8 @@ "name": "pricing-strategy", "description": "Design pricing, packaging, and monetization strategies based on value, customer willingness to pay, and growth objectives.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prisma-expert", @@ -6207,7 +6896,8 @@ "name": "prisma-expert", "description": "Prisma ORM expert for schema design, migrations, query optimization, relations modeling, and database operations. Use PROACTIVELY for Prisma schema issues, migration problems, query performance, re...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "privilege-escalation-methods", @@ -6216,7 +6906,8 @@ "name": "privilege-escalation-methods", "description": "This skill should be used when the user asks to \"escalate privileges\", \"get root access\", \"become administrator\", \"privesc techniques\", \"abuse sudo\", \"exploit SUID binaries\", \"K...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "product-manager-toolkit", @@ -6225,7 +6916,8 @@ "name": "product-manager-toolkit", "description": "Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use for feature prioritizati...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "production-code-audit", @@ -6234,25 +6926,28 @@ "name": "production-code-audit", "description": "Autonomously deep-scan entire codebase line-by-line, understand architecture and patterns, then systematically transform it to production-grade, corporate-level professional quality with optimizations", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "production-scheduling", "path": "skills\\production-scheduling", "category": "uncategorized", "name": "production-scheduling", - "description": "Codified expertise for production scheduling, job sequencing, line balancing, changeover optimisation, and bottleneck resolution in discrete and batch manufacturing. Informed by production schedulers with 15+ years experience. Includes TOC/drum-buffer-rope, SMED, OEE analysis, disruption response frameworks, and ERP/MES interaction patterns. Use when scheduling production, resolving bottlenecks, optimising changeovers, responding to disruptions, or balancing manufacturing lines.\n", + "description": "Use this skill when planning manufacturing operations, sequencing jobs to minimize changeover times, balancing production lines, resolving factory bottlenecks, or responding to unexpected equipment downtime and supply disruptions.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "programmatic-seo", "path": "skills\\programmatic-seo", "category": "uncategorized", "name": "programmatic-seo", - "description": "Design and evaluate programmatic SEO strategies for creating SEO-driven pages at scale using templates and structured data. Use when the user mentions programmatic SEO, pages at scale, template pages, directory pages, location pages, comparison pages, integration pages, or keyword-pattern page generation. This skill focuses on feasibility, strategy, and page system design\u2014not execution unless explicitly requested.\n", + "description": "---", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "projection-patterns", @@ -6261,7 +6956,8 @@ "name": "projection-patterns", "description": "Build read models and projections from event streams. Use when implementing CQRS read sides, building materialized views, or optimizing query performance in event-sourced systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prometheus-configuration", @@ -6270,7 +6966,8 @@ "name": "prometheus-configuration", "description": "Set up Prometheus for comprehensive metric collection, storage, and monitoring of infrastructure and applications. Use when implementing metrics collection, setting up monitoring infrastructure, or...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-caching", @@ -6279,7 +6976,8 @@ "name": "prompt-caching", "description": "Caching strategies for LLM prompts including Anthropic prompt caching, response caching, and CAG (Cache Augmented Generation) Use when: prompt caching, cache prompt, response cache, cag, cache augm...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "prompt-engineer", @@ -6288,7 +6986,8 @@ "name": "prompt-engineer", "description": "Transforms user prompts into optimized prompts using frameworks (RTF, RISEN, Chain of Thought, RODES, Chain of Density, RACE, RISE, STAR, SOAP, CLEAR, GROW)", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-engineering", @@ -6297,7 +6996,8 @@ "name": "prompt-engineering", "description": "Expert guide on prompt engineering patterns, best practices, and optimization techniques. Use when user wants to improve prompts, learn prompting strategies, or debug agent behavior.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-engineering-patterns", @@ -6306,7 +7006,8 @@ "name": "prompt-engineering-patterns", "description": "Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability in production. Use when optimizing prompts, improving LLM outputs, or designing productio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-library", @@ -6315,7 +7016,8 @@ "name": "prompt-library", "description": "Curated collection of high-quality prompts for various use cases. Includes role-based prompts, task-specific templates, and prompt refinement techniques. Use when user needs prompt templates, role-...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "protocol-reverse-engineering", @@ -6324,7 +7026,8 @@ "name": "protocol-reverse-engineering", "description": "Master network protocol reverse engineering including packet analysis, protocol dissection, and custom protocol documentation. Use when analyzing network traffic, understanding proprietary protocol...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pydantic-models-py", @@ -6333,7 +7036,8 @@ "name": "pydantic-models-py", "description": "Create Pydantic models following the multi-model pattern with Base, Create, Update, Response, and InDB variants. Use when defining API request/response schemas, database models, or data validation ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pypict-skill", @@ -6342,7 +7046,8 @@ "name": "pypict-skill", "description": "Pairwise test generation", "risk": "safe", - "source": "https://github.com/omkamal/pypict-claude-skill/blob/main/SKILL.md" + "source": "https://github.com/omkamal/pypict-claude-skill/blob/main/SKILL.md", + "date_added": "2025-02-26" }, { "id": "python-development-python-scaffold", @@ -6351,7 +7056,8 @@ "name": "python-development-python-scaffold", "description": "You are a Python project architecture expert specializing in scaffolding production-ready Python applications. Generate complete project structures with modern tooling (uv, FastAPI, Django), type hint", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-fastapi-development", @@ -6360,7 +7066,8 @@ "name": "python-fastapi-development", "description": "Python FastAPI backend development with async patterns, SQLAlchemy, Pydantic, authentication, and production API patterns.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "python-packaging", @@ -6369,7 +7076,8 @@ "name": "python-packaging", "description": "Create distributable Python packages with proper project structure, setup.py/pyproject.toml, and publishing to PyPI. Use when packaging Python libraries, creating CLI tools, or distributing Python ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-patterns", @@ -6378,7 +7086,8 @@ "name": "python-patterns", "description": "Python development principles and decision-making. Framework selection, async patterns, type hints, project structure. Teaches thinking, not copying.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-performance-optimization", @@ -6387,16 +7096,18 @@ "name": "python-performance-optimization", "description": "Profile and optimize Python code using cProfile, memory profilers, and performance best practices. Use when debugging slow Python code, optimizing bottlenecks, or improving application performance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-pro", "path": "skills\\python-pro", "category": "uncategorized", "name": "python-pro", - "description": "Master Python 3.12+ with modern features, async programming,\nperformance optimization, and production-ready practices. Expert in the latest\nPython ecosystem including uv, ruff, pydantic, and FastAPI. Use PROACTIVELY\nfor Python development, optimization, or advanced Python patterns.\n", + "description": "You are a Python expert specializing in modern Python 3.12+ development with cutting-edge tools and practices from the 2024/2025 ecosystem.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-testing-patterns", @@ -6405,25 +7116,28 @@ "name": "python-testing-patterns", "description": "Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "quality-nonconformance", "path": "skills\\quality-nonconformance", "category": "uncategorized", "name": "quality-nonconformance", - "description": "Codified expertise for quality control, non-conformance investigation, root cause analysis, corrective action, and supplier quality management in regulated manufacturing. Informed by quality engineers with 15+ years experience across FDA, IATF 16949, and AS9100 environments. Includes NCR lifecycle management, CAPA systems, SPC interpretation, and audit methodology. Use when investigating non-conformances, performing root cause analysis, managing CAPAs, interpreting SPC data, or handling supplier quality issues.\n", + "description": "Use this skill when investigating product defects or process deviations, performing root cause analysis (RCA), managing Corrective and Preventive Actions (CAPA), interpreting Statistical Process Control (SPC) data, or auditing supplier quality.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "quant-analyst", "path": "skills\\quant-analyst", "category": "uncategorized", "name": "quant-analyst", - "description": "Build financial models, backtest trading strategies, and analyze\nmarket data. Implements risk metrics, portfolio optimization, and statistical\narbitrage. Use PROACTIVELY for quantitative finance, trading algorithms, or\nrisk analysis.\n", + "description": "- Working on quant analyst tasks or workflows - Needing guidance, best practices, or checklists for quant analyst", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "radix-ui-design-system", @@ -6432,7 +7146,8 @@ "name": "radix-ui-design-system", "description": "Build accessible design systems with Radix UI primitives. Headless component customization, theming strategies, and compound component patterns for production-grade UI libraries.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "rag-engineer", @@ -6441,7 +7156,8 @@ "name": "rag-engineer", "description": "Expert in building Retrieval-Augmented Generation systems. Masters embedding models, vector databases, chunking strategies, and retrieval optimization for LLM applications. Use when: building RAG, ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "rag-implementation", @@ -6450,7 +7166,8 @@ "name": "rag-implementation", "description": "RAG (Retrieval-Augmented Generation) implementation workflow covering embedding selection, vector database setup, chunking strategies, and retrieval optimization.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "react-best-practices", @@ -6459,7 +7176,8 @@ "name": "react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance pat...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-flow-architect", @@ -6468,7 +7186,8 @@ "name": "react-flow-architect", "description": "Expert ReactFlow architect for building interactive graph applications with hierarchical node-edge systems, performance optimization, and auto-layout integration. Use when Claude needs to create or...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-flow-node-ts", @@ -6477,7 +7196,8 @@ "name": "react-flow-node-ts", "description": "Create React Flow node components with TypeScript types, handles, and Zustand integration. Use when building custom nodes for React Flow canvas, creating visual workflow editors, or implementing no...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-modernization", @@ -6486,7 +7206,8 @@ "name": "react-modernization", "description": "Upgrade React applications to latest versions, migrate from class components to hooks, and adopt concurrent features. Use when modernizing React codebases, migrating to React Hooks, or upgrading to...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-native-architecture", @@ -6495,7 +7216,8 @@ "name": "react-native-architecture", "description": "Build production React Native apps with Expo, navigation, native modules, offline sync, and cross-platform patterns. Use when developing mobile apps, implementing native integrations, or architecti...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-nextjs-development", @@ -6504,7 +7226,8 @@ "name": "react-nextjs-development", "description": "React and Next.js 14+ application development with App Router, Server Components, TypeScript, Tailwind CSS, and modern frontend patterns.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "react-patterns", @@ -6513,7 +7236,8 @@ "name": "react-patterns", "description": "Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-state-management", @@ -6522,7 +7246,8 @@ "name": "react-state-management", "description": "Master modern React state management with Redux Toolkit, Zustand, Jotai, and React Query. Use when setting up global state, managing server state, or choosing between state management solutions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-ui-patterns", @@ -6531,7 +7256,8 @@ "name": "react-ui-patterns", "description": "Modern React UI patterns for loading states, error handling, and data fetching. Use when building UI components, handling async data, or managing UI states.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "readme", @@ -6540,7 +7266,8 @@ "name": "readme", "description": "When the user wants to create or update a README.md file for a project. Also use when the user says 'write readme,' 'create readme,' 'document this project,' 'project documentation,' or asks for he...", "risk": "safe", - "source": "https://github.com/Shpigford/skills/tree/main/readme" + "source": "https://github.com/Shpigford/skills/tree/main/readme", + "date_added": "2025-02-26" }, { "id": "receiving-code-review", @@ -6549,7 +7276,8 @@ "name": "receiving-code-review", "description": "Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performat...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "red-team-tactics", @@ -6558,7 +7286,8 @@ "name": "red-team-tactics", "description": "Red team tactics principles based on MITRE ATT&CK. Attack phases, detection evasion, reporting.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "red-team-tools", @@ -6567,7 +7296,8 @@ "name": "red-team-tools", "description": "This skill should be used when the user asks to \"follow red team methodology\", \"perform bug bounty hunting\", \"automate reconnaissance\", \"hunt for XSS vulnerabilities\", \"enumerate su...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "reddit-automation", @@ -6576,16 +7306,18 @@ "name": "reddit-automation", "description": "Automate Reddit tasks via Rube MCP (Composio): search subreddits, create posts, manage comments, and browse top content. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "reference-builder", "path": "skills\\reference-builder", "category": "uncategorized", "name": "reference-builder", - "description": "Creates exhaustive technical references and API documentation.\nGenerates comprehensive parameter listings, configuration guides, and\nsearchable reference materials. Use PROACTIVELY for API docs, configuration\nreferences, or complete technical specifications.\n", + "description": "- Working on reference builder tasks or workflows - Needing guidance, best practices, or checklists for reference builder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "referral-program", @@ -6594,7 +7326,8 @@ "name": "referral-program", "description": "When the user wants to create, optimize, or analyze a referral program, affiliate program, or word-of-mouth strategy. Also use when the user mentions 'referral,' 'affiliate,' 'ambassador,' 'word of...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "remotion-best-practices", @@ -6603,7 +7336,8 @@ "name": "remotion-best-practices", "description": "Best practices for Remotion - Video creation in React", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "render-automation", @@ -6612,7 +7346,8 @@ "name": "render-automation", "description": "Automate Render tasks via Rube MCP (Composio): services, deployments, projects. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "requesting-code-review", @@ -6621,7 +7356,8 @@ "name": "requesting-code-review", "description": "Use when completing tasks, implementing major features, or before merging to verify work meets requirements", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "research-engineer", @@ -6630,34 +7366,38 @@ "name": "research-engineer", "description": "An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal impl...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "returns-reverse-logistics", "path": "skills\\returns-reverse-logistics", "category": "uncategorized", "name": "returns-reverse-logistics", - "description": "Codified expertise for returns authorisation, receipt and inspection, disposition decisions, refund processing, fraud detection, and warranty claims management. Informed by returns operations managers with 15+ years experience. Includes grading frameworks, disposition economics, fraud pattern recognition, and vendor recovery processes. Use when handling product returns, reverse logistics, refund decisions, return fraud detection, or warranty claims.\n", + "description": "Use this skill when managing the product return lifecycle, including authorization, physical inspection, making disposition decisions (e.g., restock vs. liquidator), detecting return fraud, or processing warranty claims.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "reverse-engineer", "path": "skills\\reverse-engineer", "category": "uncategorized", "name": "reverse-engineer", - "description": "Expert reverse engineer specializing in binary analysis,\ndisassembly, decompilation, and software analysis. Masters IDA Pro, Ghidra,\nradare2, x64dbg, and modern RE toolchains. Handles executable analysis,\nlibrary inspection, protocol extraction, and vulnerability research. Use\nPROACTIVELY for binary analysis, CTF challenges, security research, or\nunderstanding undocumented software.\n", + "description": "- IDAPython (IDA Pro scripting) - Ghidra scripting (Java/Python via Jython) - r2pipe (radare2 Python API) - pwntools (CTF/exploitation toolkit) - capstone (disassembly framework) - keystone (assembly framework) - unicorn (CPU emulator framework) - an", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "risk-manager", "path": "skills\\risk-manager", "category": "uncategorized", "name": "risk-manager", - "description": "Monitor portfolio risk, R-multiples, and position limits. Creates\nhedging strategies, calculates expectancy, and implements stop-losses. Use\nPROACTIVELY for risk assessment, trade tracking, or portfolio protection.\n", + "description": "- Working on risk manager tasks or workflows - Needing guidance, best practices, or checklists for risk manager", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "risk-metrics-calculation", @@ -6666,16 +7406,18 @@ "name": "risk-metrics-calculation", "description": "Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ruby-pro", "path": "skills\\ruby-pro", "category": "uncategorized", "name": "ruby-pro", - "description": "Write idiomatic Ruby code with metaprogramming, Rails patterns, and\nperformance optimization. Specializes in Ruby on Rails, gem development, and\ntesting frameworks. Use PROACTIVELY for Ruby refactoring, optimization, or\ncomplex Ruby features.\n", + "description": "- Working on ruby pro tasks or workflows - Needing guidance, best practices, or checklists for ruby pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "rust-async-patterns", @@ -6684,16 +7426,18 @@ "name": "rust-async-patterns", "description": "Master Rust async programming with Tokio, async traits, error handling, and concurrent patterns. Use when building async Rust applications, implementing concurrent systems, or debugging async code.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "rust-pro", "path": "skills\\rust-pro", "category": "uncategorized", "name": "rust-pro", - "description": "Master Rust 1.75+ with modern async patterns, advanced type system\nfeatures, and production-ready systems programming. Expert in the latest Rust\necosystem including Tokio, axum, and cutting-edge crates. Use PROACTIVELY for\nRust development, performance optimization, or systems programming.\n", + "description": "You are a Rust expert specializing in modern Rust 1.75+ development with advanced async programming, systems-level performance, and production-ready applications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "saga-orchestration", @@ -6702,16 +7446,18 @@ "name": "saga-orchestration", "description": "Implement saga patterns for distributed transactions and cross-aggregate workflows. Use when coordinating multi-step business processes, handling compensating transactions, or managing long-running...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sales-automator", "path": "skills\\sales-automator", "category": "uncategorized", "name": "sales-automator", - "description": "Draft cold emails, follow-ups, and proposal templates. Creates\npricing pages, case studies, and sales scripts. Use PROACTIVELY for sales\noutreach or lead nurturing.\n", + "description": "- Working on sales automator tasks or workflows - Needing guidance, best practices, or checklists for sales automator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "salesforce-automation", @@ -6720,7 +7466,8 @@ "name": "salesforce-automation", "description": "Automate Salesforce tasks via Rube MCP (Composio): leads, contacts, accounts, opportunities, SOQL queries. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "salesforce-development", @@ -6729,7 +7476,8 @@ "name": "salesforce-development", "description": "Expert patterns for Salesforce platform development including Lightning Web Components (LWC), Apex triggers and classes, REST/Bulk APIs, Connected Apps, and Salesforce DX with scratch orgs and 2nd ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "sast-configuration", @@ -6738,16 +7486,18 @@ "name": "sast-configuration", "description": "Configure Static Application Security Testing (SAST) tools for automated vulnerability detection in application code. Use when setting up security scanning, implementing DevSecOps practices, or aut...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "scala-pro", "path": "skills\\scala-pro", "category": "uncategorized", "name": "scala-pro", - "description": "Master enterprise-grade Scala development with functional\nprogramming, distributed systems, and big data processing. Expert in Apache\nPekko, Akka, Spark, ZIO/Cats Effect, and reactive architectures. Use\nPROACTIVELY for Scala system design, performance optimization, or enterprise\nintegration.\n", + "description": "- Working on scala pro tasks or workflows - Needing guidance, best practices, or checklists for scala pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "scanning-tools", @@ -6756,16 +7506,18 @@ "name": "scanning-tools", "description": "This skill should be used when the user asks to \"perform vulnerability scanning\", \"scan networks for open ports\", \"assess web application security\", \"scan wireless networks\", \"detec...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "schema-markup", "path": "skills\\schema-markup", "category": "uncategorized", "name": "schema-markup", - "description": "Design, validate, and optimize schema.org structured data for eligibility, correctness, and measurable SEO impact. Use when the user wants to add, fix, audit, or scale schema markup (JSON-LD) for rich results. This skill evaluates whether schema should be implemented, what types are valid, and how to deploy safely according to Google guidelines.\n", + "description": "---", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "screen-reader-testing", @@ -6774,7 +7526,8 @@ "name": "screen-reader-testing", "description": "Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology supp...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "screenshots", @@ -6783,7 +7536,8 @@ "name": "screenshots", "description": "Generate marketing screenshots of your app using Playwright. Use when the user wants to create screenshots for Product Hunt, social media, landing pages, or documentation.", "risk": "safe", - "source": "https://github.com/Shpigford/skills/tree/main/screenshots" + "source": "https://github.com/Shpigford/skills/tree/main/screenshots", + "date_added": "2025-02-26" }, { "id": "scroll-experience", @@ -6792,16 +7546,18 @@ "name": "scroll-experience", "description": "Expert in building immersive scroll-driven experiences - parallax storytelling, scroll animations, interactive narratives, and cinematic web experiences. Like NY Times interactives, Apple product p...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "search-specialist", "path": "skills\\search-specialist", "category": "uncategorized", "name": "search-specialist", - "description": "Expert web researcher using advanced search techniques and synthesis. Masters search operators, result filtering, and multi-source verification. Handles competitive analysis and fact-checking. Use PROACTIVELY for deep research, information gathering, or trend analysis.", + "description": "Expert web researcher using advanced search techniques and", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "secrets-management", @@ -6810,7 +7566,8 @@ "name": "secrets-management", "description": "Implement secure secrets management for CI/CD pipelines using Vault, AWS Secrets Manager, or native platform solutions. Use when handling sensitive credentials, rotating secrets, or securing CI/CD ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-audit", @@ -6819,16 +7576,18 @@ "name": "security-audit", "description": "Comprehensive security auditing workflow covering web application testing, API security, penetration testing, vulnerability scanning, and security hardening.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "security-auditor", "path": "skills\\security-auditor", "category": "uncategorized", "name": "security-auditor", - "description": "Expert security auditor specializing in DevSecOps, comprehensive\ncybersecurity, and compliance frameworks. Masters vulnerability assessment,\nthreat modeling, secure authentication (OAuth2/OIDC), OWASP standards, cloud\nsecurity, and security automation. Handles DevSecOps integration, compliance\n(GDPR/HIPAA/SOC2), and incident response. Use PROACTIVELY for security audits,\nDevSecOps, or compliance implementation.\n", + "description": "You are a security auditor specializing in DevSecOps, application security, and comprehensive cybersecurity practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-bluebook-builder", @@ -6837,7 +7596,8 @@ "name": "security-bluebook-builder", "description": "Build security Blue Books for sensitive apps", "risk": "safe", - "source": "https://github.com/SHADOWPR0/security-bluebook-builder" + "source": "https://github.com/SHADOWPR0/security-bluebook-builder", + "date_added": "2025-02-26" }, { "id": "security-compliance-compliance-check", @@ -6846,7 +7606,8 @@ "name": "security-compliance-compliance-check", "description": "You are a compliance expert specializing in regulatory requirements for software systems including GDPR, HIPAA, SOC2, PCI-DSS, and other industry standards. Perform compliance audits and provide im...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-requirement-extraction", @@ -6855,7 +7616,8 @@ "name": "security-requirement-extraction", "description": "Derive security requirements from threat models and business context. Use when translating threats into actionable requirements, creating security user stories, or building security test cases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-scanning-security-dependencies", @@ -6864,7 +7626,8 @@ "name": "security-scanning-security-dependencies", "description": "You are a security expert specializing in dependency vulnerability analysis, SBOM generation, and supply chain security. Scan project dependencies across ecosystems to identify vulnerabilities, ass...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-scanning-security-hardening", @@ -6873,16 +7636,18 @@ "name": "security-scanning-security-hardening", "description": "Coordinate multi-layer security scanning and hardening across application, infrastructure, and compliance controls.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-scanning-security-sast", "path": "skills\\security-scanning-security-sast", "category": "uncategorized", "name": "security-scanning-security-sast", - "description": "Static Application Security Testing (SAST) for code vulnerability\nanalysis across multiple languages and frameworks\n", + "description": "Static Application Security Testing (SAST) for comprehensive code vulnerability detection across multiple languages, frameworks, and security patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "segment-automation", @@ -6891,7 +7656,8 @@ "name": "segment-automation", "description": "Automate Segment tasks via Rube MCP (Composio): track events, identify users, manage groups, page views, aliases, batch operations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "segment-cdp", @@ -6900,7 +7666,8 @@ "name": "segment-cdp", "description": "Expert patterns for Segment Customer Data Platform including Analytics.js, server-side tracking, tracking plans with Protocols, identity resolution, destinations configuration, and data governance ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "sendgrid-automation", @@ -6909,7 +7676,8 @@ "name": "sendgrid-automation", "description": "Automate SendGrid email operations including sending emails, managing contacts/lists, sender identities, templates, and analytics via Rube MCP (Composio). Always search tools first for current sche...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "senior-architect", @@ -6918,7 +7686,8 @@ "name": "senior-architect", "description": "Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. I...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "senior-fullstack", @@ -6927,7 +7696,8 @@ "name": "senior-fullstack", "description": "Comprehensive fullstack development skill for building complete web applications with React, Next.js, Node.js, GraphQL, and PostgreSQL. Includes project scaffolding, code quality analysis, architec...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sentry-automation", @@ -6936,115 +7706,128 @@ "name": "sentry-automation", "description": "Automate Sentry tasks via Rube MCP (Composio): manage issues/events, configure alerts, track releases, monitor projects and teams. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-audit", "path": "skills\\seo-audit", "category": "uncategorized", "name": "seo-audit", - "description": "Diagnose and audit SEO issues affecting crawlability, indexation, rankings, and organic performance. Use when the user asks for an SEO audit, technical SEO review, ranking diagnosis, on-page SEO review, meta tag audit, or SEO health check. This skill identifies issues and prioritizes actions but does not execute changes. For large-scale page creation, use programmatic-seo. For structured data, use schema-markup.\n", + "description": "You are an **SEO diagnostic specialist**. Your role is to **identify, explain, and prioritize SEO issues** that affect organic visibility\u2014**not to implement fixes unless explicitly requested**.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-authority-builder", "path": "skills\\seo-authority-builder", "category": "uncategorized", "name": "seo-authority-builder", - "description": "Analyzes content for E-E-A-T signals and suggests improvements to\nbuild authority and trust. Identifies missing credibility elements. Use\nPROACTIVELY for YMYL topics.\n", + "description": "- Working on seo authority builder tasks or workflows - Needing guidance, best practices, or checklists for seo authority builder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-cannibalization-detector", "path": "skills\\seo-cannibalization-detector", "category": "uncategorized", "name": "seo-cannibalization-detector", - "description": "Analyzes multiple provided pages to identify keyword overlap and\npotential cannibalization issues. Suggests differentiation strategies. Use\nPROACTIVELY when reviewing similar content.\n", + "description": "- Working on seo cannibalization detector tasks or workflows - Needing guidance, best practices, or checklists for seo cannibalization detector", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-auditor", "path": "skills\\seo-content-auditor", "category": "uncategorized", "name": "seo-content-auditor", - "description": "Analyzes provided content for quality, E-E-A-T signals, and SEO\nbest practices. Scores content and provides improvement recommendations based\non established guidelines. Use PROACTIVELY for content review.\n", + "description": "- Working on seo content auditor tasks or workflows - Needing guidance, best practices, or checklists for seo content auditor", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-planner", "path": "skills\\seo-content-planner", "category": "uncategorized", "name": "seo-content-planner", - "description": "Creates comprehensive content outlines and topic clusters for SEO.\nPlans content calendars and identifies topic gaps. Use PROACTIVELY for content\nstrategy and planning.\n", + "description": "- Working on seo content planner tasks or workflows - Needing guidance, best practices, or checklists for seo content planner", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-refresher", "path": "skills\\seo-content-refresher", "category": "uncategorized", "name": "seo-content-refresher", - "description": "Identifies outdated elements in provided content and suggests\nupdates to maintain freshness. Finds statistics, dates, and examples that need\nupdating. Use PROACTIVELY for older content.\n", + "description": "- Working on seo content refresher tasks or workflows - Needing guidance, best practices, or checklists for seo content refresher", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-writer", "path": "skills\\seo-content-writer", "category": "uncategorized", "name": "seo-content-writer", - "description": "Writes SEO-optimized content based on provided keywords and topic\nbriefs. Creates engaging, comprehensive content following best practices. Use\nPROACTIVELY for content creation tasks.\n", + "description": "- Working on seo content writer tasks or workflows - Needing guidance, best practices, or checklists for seo content writer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-fundamentals", "path": "skills\\seo-fundamentals", "category": "uncategorized", "name": "seo-fundamentals", - "description": "Core principles of SEO including E-E-A-T, Core Web Vitals, technical foundations, content quality, and how modern search engines evaluate pages. This skill explains *why* SEO works, not how to execute specific optimizations.\n", + "description": "---", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-keyword-strategist", "path": "skills\\seo-keyword-strategist", "category": "uncategorized", "name": "seo-keyword-strategist", - "description": "Analyzes keyword usage in provided content, calculates density,\nsuggests semantic variations and LSI keywords based on the topic. Prevents\nover-optimization. Use PROACTIVELY for content optimization.\n", + "description": "- Working on seo keyword strategist tasks or workflows - Needing guidance, best practices, or checklists for seo keyword strategist", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-meta-optimizer", "path": "skills\\seo-meta-optimizer", "category": "uncategorized", "name": "seo-meta-optimizer", - "description": "Creates optimized meta titles, descriptions, and URL suggestions\nbased on character limits and best practices. Generates compelling,\nkeyword-rich metadata. Use PROACTIVELY for new content.\n", + "description": "- Working on seo meta optimizer tasks or workflows - Needing guidance, best practices, or checklists for seo meta optimizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-snippet-hunter", "path": "skills\\seo-snippet-hunter", "category": "uncategorized", "name": "seo-snippet-hunter", - "description": "Formats content to be eligible for featured snippets and SERP\nfeatures. Creates snippet-optimized content blocks based on best practices.\nUse PROACTIVELY for question-based content.\n", + "description": "- Working on seo snippet hunter tasks or workflows - Needing guidance, best practices, or checklists for seo snippet hunter", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-structure-architect", "path": "skills\\seo-structure-architect", "category": "uncategorized", "name": "seo-structure-architect", - "description": "Analyzes and optimizes content structure including header\nhierarchy, suggests schema markup, and internal linking opportunities. Creates\nsearch-friendly content organization. Use PROACTIVELY for content structuring.\n", + "description": "- Working on seo structure architect tasks or workflows - Needing guidance, best practices, or checklists for seo structure architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "server-management", @@ -7053,7 +7836,8 @@ "name": "server-management", "description": "Server management principles and decision-making. Process management, monitoring strategy, and scaling decisions. Teaches thinking, not commands.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "service-mesh-expert", @@ -7062,7 +7846,8 @@ "name": "service-mesh-expert", "description": "Expert service mesh architect specializing in Istio, Linkerd, and cloud-native networking patterns. Masters traffic management, security policies, observability integration, and multi-cluster mesh con", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "service-mesh-observability", @@ -7071,7 +7856,8 @@ "name": "service-mesh-observability", "description": "Implement comprehensive observability for service meshes including distributed tracing, metrics, and visualization. Use when setting up mesh monitoring, debugging latency issues, or implementing SL...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shader-programming-glsl", @@ -7080,7 +7866,8 @@ "name": "shader-programming-glsl", "description": "Expert guide for writing efficient GLSL shaders (Vertex/Fragment) for web and game engines, covering syntax, uniforms, and common effects.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sharp-edges", @@ -7089,7 +7876,8 @@ "name": "sharp-edges", "description": "Identify error-prone APIs and dangerous configurations", "risk": "safe", - "source": "https://github.com/trailofbits/skills/tree/main/plugins/sharp-edges" + "source": "https://github.com/trailofbits/skills/tree/main/plugins/sharp-edges", + "date_added": "2025-02-26" }, { "id": "shellcheck-configuration", @@ -7098,7 +7886,8 @@ "name": "shellcheck-configuration", "description": "Master ShellCheck static analysis configuration and usage for shell script quality. Use when setting up linting infrastructure, fixing code issues, or ensuring script portability.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shodan-reconnaissance", @@ -7107,7 +7896,8 @@ "name": "shodan-reconnaissance", "description": "This skill should be used when the user asks to \"search for exposed devices on the internet,\" \"perform Shodan reconnaissance,\" \"find vulnerable services using Shodan,\" \"scan IP ranges...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shopify-apps", @@ -7116,7 +7906,8 @@ "name": "shopify-apps", "description": "Expert patterns for Shopify app development including Remix/React Router apps, embedded apps with App Bridge, webhook handling, GraphQL Admin API, Polaris components, billing, and app extensions. U...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "shopify-automation", @@ -7125,16 +7916,18 @@ "name": "shopify-automation", "description": "Automate Shopify tasks via Rube MCP (Composio): products, orders, customers, inventory, collections. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shopify-development", "path": "skills\\shopify-development", "category": "uncategorized", "name": "shopify-development", - "description": "Build Shopify apps, extensions, themes using GraphQL Admin API, Shopify CLI, Polaris UI, and Liquid.\nTRIGGER: \"shopify\", \"shopify app\", \"checkout extension\", \"admin extension\", \"POS extension\",\n\"shopify theme\", \"liquid template\", \"polaris\", \"shopify graphql\", \"shopify webhook\",\n\"shopify billing\", \"app subscription\", \"metafields\", \"shopify functions\"\n", + "description": "Use this skill when the user asks about:", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "signup-flow-cro", @@ -7143,7 +7936,8 @@ "name": "signup-flow-cro", "description": "When the user wants to optimize signup, registration, account creation, or trial activation flows. Also use when the user mentions \"signup conversions,\" \"registration friction,\" \"signup...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "similarity-search-patterns", @@ -7152,7 +7946,8 @@ "name": "similarity-search-patterns", "description": "Implement efficient similarity search with vector databases. Use when building semantic search, implementing nearest neighbor queries, or optimizing retrieval performance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-creator", @@ -7161,7 +7956,8 @@ "name": "skill-creator", "description": "This skill should be used when the user asks to create a new skill, build a skill, make a custom skill, develop a CLI skill, or wants to extend the CLI with new capabilities. Automates the entire s...", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-creator-ms", @@ -7170,7 +7966,8 @@ "name": "skill-creator-ms", "description": "Guide for creating effective skills for AI coding agents working with Azure SDKs and Microsoft Foundry services. Use when creating new skills or updating existing skills.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-developer", @@ -7179,7 +7976,8 @@ "name": "skill-developer", "description": "Create and manage Claude Code skills following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger patterns, working with hooks, debugging skil...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-rails-upgrade", @@ -7188,7 +7986,8 @@ "name": "skill-rails-upgrade", "description": "Analyze Rails apps and provide upgrade assessments", "risk": "safe", - "source": "https://github.com/robzolkos/skill-rails-upgrade" + "source": "https://github.com/robzolkos/skill-rails-upgrade", + "date_added": "2025-02-26" }, { "id": "skill-seekers", @@ -7197,7 +7996,8 @@ "name": "skill-seekers", "description": "-Automatically convert documentation websites, GitHub repositories, and PDFs into Claude AI skills in minutes.", "risk": "safe", - "source": "https://github.com/yusufkaraaslan/Skill_Seekers" + "source": "https://github.com/yusufkaraaslan/Skill_Seekers", + "date_added": "2025-02-26" }, { "id": "slack-automation", @@ -7206,7 +8006,8 @@ "name": "slack-automation", "description": "Automate Slack messaging, channel management, search, reactions, and threads via Rube MCP (Composio). Send messages, search conversations, manage channels/users, and react to messages programmatica...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "slack-bot-builder", @@ -7215,7 +8016,8 @@ "name": "slack-bot-builder", "description": "Build Slack apps using the Bolt framework across Python, JavaScript, and Java. Covers Block Kit for rich UIs, interactive components, slash commands, event handling, OAuth installation flows, and W...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "slack-gif-creator", @@ -7224,7 +8026,8 @@ "name": "slack-gif-creator", "description": "Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like \"...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "slo-implementation", @@ -7233,7 +8036,8 @@ "name": "slo-implementation", "description": "Define and implement Service Level Indicators (SLIs) and Service Level Objectives (SLOs) with error budgets and alerting. Use when establishing reliability targets, implementing SRE practices, or m...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "smtp-penetration-testing", @@ -7242,7 +8046,8 @@ "name": "smtp-penetration-testing", "description": "This skill should be used when the user asks to \"perform SMTP penetration testing\", \"enumerate email users\", \"test for open mail relays\", \"grab SMTP banners\", \"brute force email cre...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "social-content", @@ -7251,7 +8056,8 @@ "name": "social-content", "description": "When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms. Also use when the user mentions 'LinkedIn...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "software-architecture", @@ -7260,7 +8066,8 @@ "name": "software-architecture", "description": "Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "solidity-security", @@ -7269,7 +8076,8 @@ "name": "solidity-security", "description": "Master smart contract security best practices to prevent common vulnerabilities and implement secure Solidity patterns. Use when writing smart contracts, auditing existing contracts, or implementin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "spark-optimization", @@ -7278,7 +8086,8 @@ "name": "spark-optimization", "description": "Optimize Apache Spark jobs with partitioning, caching, shuffle optimization, and memory tuning. Use when improving Spark performance, debugging slow jobs, or scaling data processing pipelines.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sql-injection-testing", @@ -7287,7 +8096,8 @@ "name": "sql-injection-testing", "description": "This skill should be used when the user asks to \"test for SQL injection vulnerabilities\", \"perform SQLi attacks\", \"bypass authentication using SQL injection\", \"extract database inform...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sql-optimization-patterns", @@ -7296,16 +8106,18 @@ "name": "sql-optimization-patterns", "description": "Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sql-pro", "path": "skills\\sql-pro", "category": "uncategorized", "name": "sql-pro", - "description": "Master modern SQL with cloud-native databases, OLTP/OLAP\noptimization, and advanced query techniques. Expert in performance tuning,\ndata modeling, and hybrid analytical systems. Use PROACTIVELY for database\noptimization or complex analysis.\n", + "description": "You are an expert SQL specialist mastering modern database systems, performance optimization, and advanced analytical techniques across cloud-native and hybrid OLTP/OLAP environments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sqlmap-database-pentesting", @@ -7314,7 +8126,8 @@ "name": "sqlmap-database-pentesting", "description": "This skill should be used when the user asks to \"automate SQL injection testing,\" \"enumerate database structure,\" \"extract database credentials using sqlmap,\" \"dump tables and columns...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "square-automation", @@ -7323,7 +8136,8 @@ "name": "square-automation", "description": "Automate Square tasks via Rube MCP (Composio): payments, orders, invoices, locations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ssh-penetration-testing", @@ -7332,61 +8146,68 @@ "name": "ssh-penetration-testing", "description": "This skill should be used when the user asks to \"pentest SSH services\", \"enumerate SSH configurations\", \"brute force SSH credentials\", \"exploit SSH vulnerabilities\", \"perform SSH tu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-analyst", "path": "skills\\startup-analyst", "category": "uncategorized", "name": "startup-analyst", - "description": "Expert startup business analyst specializing in market sizing,\nfinancial modeling, competitive analysis, and strategic planning for\nearly-stage companies. Use PROACTIVELY when the user asks about market\nopportunity, TAM/SAM/SOM, financial projections, unit economics, competitive\nlandscape, team planning, startup metrics, or business strategy for pre-seed\nthrough Series A startups.\n", + "description": "- Working on startup analyst tasks or workflows - Needing guidance, best practices, or checklists for startup analyst", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-business-analyst-business-case", "path": "skills\\startup-business-analyst-business-case", "category": "uncategorized", "name": "startup-business-analyst-business-case", - "description": "Generate comprehensive investor-ready business case document with\nmarket, solution, financials, and strategy\n", + "description": "Generate a comprehensive, investor-ready business case document covering market opportunity, solution, competitive landscape, financial projections, team, risks, and funding ask for startup fundraising and strategic planning.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-business-analyst-financial-projections", "path": "skills\\startup-business-analyst-financial-projections", "category": "uncategorized", "name": "startup-business-analyst-financial-projections", - "description": "Create detailed 3-5 year financial model with revenue, costs, cash\nflow, and scenarios\n", + "description": "Create a comprehensive 3-5 year financial model with revenue projections, cost structure, headcount planning, cash flow analysis, and three-scenario modeling (conservative, base, optimistic) for startup financial planning and fundraising.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-business-analyst-market-opportunity", "path": "skills\\startup-business-analyst-market-opportunity", "category": "uncategorized", "name": "startup-business-analyst-market-opportunity", - "description": "Generate comprehensive market opportunity analysis with TAM/SAM/SOM\ncalculations\n", + "description": "Generate a comprehensive market opportunity analysis for a startup, including Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) calculations using both bottom-up and top-down methodologies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-financial-modeling", "path": "skills\\startup-financial-modeling", "category": "uncategorized", "name": "startup-financial-modeling", - "description": "This skill should be used when the user asks to \\\\\\\"create financial\nprojections\", \"build a financial model\", \"forecast revenue\", \"calculate burn\nrate\", \"estimate runway\", \"model cash flow\", or requests 3-5 year financial\nplanning for a startup.\n", + "description": "Build comprehensive 3-5 year financial models with revenue projections, cost structures, cash flow analysis, and scenario planning for early-stage startups.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-metrics-framework", "path": "skills\\startup-metrics-framework", "category": "uncategorized", "name": "startup-metrics-framework", - "description": "This skill should be used when the user asks about \\\\\\\"key startup\nmetrics\", \"SaaS metrics\", \"CAC and LTV\", \"unit economics\", \"burn multiple\",\n\"rule of 40\", \"marketplace metrics\", or requests guidance on tracking and\noptimizing business performance metrics.\n", + "description": "Comprehensive guide to tracking, calculating, and optimizing key performance metrics for different startup business models from seed through Series A.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "stitch-ui-design", @@ -7395,7 +8216,8 @@ "name": "stitch-ui-design", "description": "Expert guide for creating effective prompts for Google Stitch AI UI design tool. Use when user wants to design UI/UX in Stitch, create app interfaces, generate mobile/web designs, or needs help cra...", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "stride-analysis-patterns", @@ -7404,7 +8226,8 @@ "name": "stride-analysis-patterns", "description": "Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "stripe-automation", @@ -7413,7 +8236,8 @@ "name": "stripe-automation", "description": "Automate Stripe tasks via Rube MCP (Composio): customers, charges, subscriptions, invoices, products, refunds. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "stripe-integration", @@ -7422,7 +8246,8 @@ "name": "stripe-integration", "description": "Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription systems, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "subagent-driven-development", @@ -7431,7 +8256,8 @@ "name": "subagent-driven-development", "description": "Use when executing implementation plans with independent tasks in the current session", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "supabase-automation", @@ -7440,7 +8266,8 @@ "name": "supabase-automation", "description": "Automate Supabase database queries, table management, project administration, storage, edge functions, and SQL execution via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "superpowers-lab", @@ -7449,7 +8276,8 @@ "name": "superpowers-lab", "description": "Lab environment for Claude superpowers", "risk": "safe", - "source": "https://github.com/obra/superpowers-lab" + "source": "https://github.com/obra/superpowers-lab", + "date_added": "2025-02-26" }, { "id": "swiftui-expert-skill", @@ -7458,7 +8286,8 @@ "name": "swiftui-expert-skill", "description": "Write, review, or improve SwiftUI code following best practices for state management, view composition, performance, modern APIs, Swift concurrency, and iOS 26+ Liquid Glass adoption. Use when buil...", "risk": "safe", - "source": "https://github.com/AvdLee/SwiftUI-Agent-Skill/tree/main/swiftui-expert-skill" + "source": "https://github.com/AvdLee/SwiftUI-Agent-Skill/tree/main/swiftui-expert-skill", + "date_added": "2025-02-26" }, { "id": "systematic-debugging", @@ -7467,7 +8296,8 @@ "name": "systematic-debugging", "description": "Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "systems-programming-rust-project", @@ -7476,7 +8306,8 @@ "name": "systems-programming-rust-project", "description": "You are a Rust project architecture expert specializing in scaffolding production-ready Rust applications. Generate complete project structures with cargo tooling, proper module organization, testing", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tailwind-design-system", @@ -7485,7 +8316,8 @@ "name": "tailwind-design-system", "description": "Build scalable design systems with Tailwind CSS, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tailwind-patterns", @@ -7494,7 +8326,8 @@ "name": "tailwind-patterns", "description": "Tailwind CSS v4 principles. CSS-first configuration, container queries, modern patterns, design token architecture.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tavily-web", @@ -7503,16 +8336,18 @@ "name": "tavily-web", "description": "Web search, content extraction, crawling, and research capabilities using Tavily API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-orchestrator", "path": "skills\\tdd-orchestrator", "category": "uncategorized", "name": "tdd-orchestrator", - "description": "Master TDD orchestrator specializing in red-green-refactor\ndiscipline, multi-agent workflow coordination, and comprehensive test-driven\ndevelopment practices. Enforces TDD best practices across teams with\nAI-assisted testing and modern frameworks. Use PROACTIVELY for TDD\nimplementation and governance.\n", + "description": "- Working on tdd orchestrator tasks or workflows - Needing guidance, best practices, or checklists for tdd orchestrator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflow", @@ -7521,7 +8356,8 @@ "name": "tdd-workflow", "description": "Test-Driven Development workflow principles. RED-GREEN-REFACTOR cycle.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-cycle", @@ -7530,7 +8366,8 @@ "name": "tdd-workflows-tdd-cycle", "description": "Use when working with tdd workflows tdd cycle", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-green", @@ -7539,7 +8376,8 @@ "name": "tdd-workflows-tdd-green", "description": "Implement the minimal code needed to make failing tests pass in the TDD green phase.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-red", @@ -7548,7 +8386,8 @@ "name": "tdd-workflows-tdd-red", "description": "Generate failing tests for the TDD red phase to define expected behavior and edge cases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-refactor", @@ -7557,7 +8396,8 @@ "name": "tdd-workflows-tdd-refactor", "description": "Use when working with tdd workflows tdd refactor", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "team-collaboration-issue", @@ -7566,7 +8406,8 @@ "name": "team-collaboration-issue", "description": "You are a GitHub issue resolution expert specializing in systematic bug investigation, feature implementation, and collaborative development workflows. Your expertise spans issue triage, root cause an", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "team-collaboration-standup-notes", @@ -7575,16 +8416,18 @@ "name": "team-collaboration-standup-notes", "description": "You are an expert team communication specialist focused on async-first standup practices, AI-assisted note generation from commit history, and effective remote team coordination patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "team-composition-analysis", "path": "skills\\team-composition-analysis", "category": "uncategorized", "name": "team-composition-analysis", - "description": "This skill should be used when the user asks to \\\\\\\"plan team\nstructure\", \"determine hiring needs\", \"design org chart\", \"calculate\ncompensation\", \"plan equity allocation\", or requests organizational design and\nheadcount planning for a startup.\n", + "description": "Design optimal team structures, hiring plans, compensation strategies, and equity allocation for early-stage startups from pre-seed through Series A.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "telegram-automation", @@ -7593,7 +8436,8 @@ "name": "telegram-automation", "description": "Automate Telegram tasks via Rube MCP (Composio): send messages, manage chats, share photos/documents, and handle bot commands. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "telegram-bot-builder", @@ -7602,7 +8446,8 @@ "name": "telegram-bot-builder", "description": "Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategie...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "telegram-mini-app", @@ -7611,7 +8456,8 @@ "name": "telegram-mini-app", "description": "Expert in building Telegram Mini Apps (TWA) - web apps that run inside Telegram with native-like experience. Covers the TON ecosystem, Telegram Web App API, payments, user authentication, and build...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "templates", @@ -7620,16 +8466,18 @@ "name": "templates", "description": "Project scaffolding templates for new applications. Use when creating new projects from scratch. Contains 12 templates for various tech stacks.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "temporal-python-pro", "path": "skills\\temporal-python-pro", "category": "uncategorized", "name": "temporal-python-pro", - "description": "Master Temporal workflow orchestration with Python SDK. Implements\ndurable workflows, saga patterns, and distributed transactions. Covers\nasync/await, testing strategies, and production deployment. Use PROACTIVELY\nfor workflow design, microservice orchestration, or long-running processes.\n", + "description": "- Working on temporal python pro tasks or workflows - Needing guidance, best practices, or checklists for temporal python pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "temporal-python-testing", @@ -7638,7 +8486,8 @@ "name": "temporal-python-testing", "description": "Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal wor...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "terraform-aws-modules", @@ -7647,7 +8496,8 @@ "name": "terraform-aws-modules", "description": "Terraform module creation for AWS \u2014 reusable modules, state management, and HCL best practices. Use when building or reviewing Terraform AWS infrastructure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "terraform-infrastructure", @@ -7656,7 +8506,8 @@ "name": "terraform-infrastructure", "description": "Terraform infrastructure as code workflow for provisioning cloud resources, creating reusable modules, and managing infrastructure at scale.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "terraform-module-library", @@ -7665,7 +8516,8 @@ "name": "terraform-module-library", "description": "Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "terraform-skill", @@ -7674,25 +8526,28 @@ "name": "terraform-skill", "description": "Terraform infrastructure as code best practices", "risk": "safe", - "source": "https://github.com/antonbabenko/terraform-skill" + "source": "https://github.com/antonbabenko/terraform-skill", + "date_added": "2025-02-26" }, { "id": "terraform-specialist", "path": "skills\\terraform-specialist", "category": "uncategorized", "name": "terraform-specialist", - "description": "Expert Terraform/OpenTofu specialist mastering advanced IaC\nautomation, state management, and enterprise infrastructure patterns. Handles\ncomplex module design, multi-cloud deployments, GitOps workflows, policy as\ncode, and CI/CD integration. Covers migration strategies, security best\npractices, and modern IaC ecosystems. Use PROACTIVELY for advanced IaC, state\nmanagement, or infrastructure automation.\n", + "description": "You are a Terraform/OpenTofu specialist focused on advanced infrastructure automation, state management, and modern IaC practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "test-automator", "path": "skills\\test-automator", "category": "uncategorized", "name": "test-automator", - "description": "Master AI-powered test automation with modern frameworks,\nself-healing tests, and comprehensive quality engineering. Build scalable\ntesting strategies with advanced CI/CD integration. Use PROACTIVELY for\ntesting automation or quality assurance.\n", + "description": "- Working on test automator tasks or workflows - Needing guidance, best practices, or checklists for test automator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "test-driven-development", @@ -7701,7 +8556,8 @@ "name": "test-driven-development", "description": "Use when implementing any feature or bugfix, before writing implementation code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "test-fixing", @@ -7710,7 +8566,8 @@ "name": "test-fixing", "description": "Run tests and systematically fix all failing tests using smart error grouping. Use when user asks to fix failing tests, mentions test failures, runs test suite and failures occur, or requests to ma...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "testing-patterns", @@ -7719,7 +8576,8 @@ "name": "testing-patterns", "description": "Jest testing patterns, factory functions, mocking strategies, and TDD workflow. Use when writing unit tests, creating test factories, or following TDD red-green-refactor cycle.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "testing-qa", @@ -7728,7 +8586,8 @@ "name": "testing-qa", "description": "Comprehensive testing and QA workflow covering unit testing, integration testing, E2E testing, browser automation, and quality assurance.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "theme-factory", @@ -7737,7 +8596,8 @@ "name": "theme-factory", "description": "Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifac...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "threat-mitigation-mapping", @@ -7746,7 +8606,8 @@ "name": "threat-mitigation-mapping", "description": "Map identified threats to appropriate security controls and mitigations. Use when prioritizing security investments, creating remediation plans, or validating control effectiveness.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "threat-modeling-expert", @@ -7755,7 +8616,8 @@ "name": "threat-modeling-expert", "description": "Expert in threat modeling methodologies, security architecture review, and risk assessment. Masters STRIDE, PASTA, attack trees, and security requirement extraction. Use for security architecture r...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "threejs-skills", @@ -7764,7 +8626,8 @@ "name": "threejs-skills", "description": "Create 3D scenes, interactive experiences, and visual effects using Three.js. Use when user requests 3D graphics, WebGL experiences, 3D visualizations, animations, or interactive 3D elements.", "risk": "safe", - "source": "https://github.com/CloudAI-X/threejs-skills" + "source": "https://github.com/CloudAI-X/threejs-skills", + "date_added": "2025-02-26" }, { "id": "tiktok-automation", @@ -7773,7 +8636,8 @@ "name": "tiktok-automation", "description": "Automate TikTok tasks via Rube MCP (Composio): upload/publish videos, post photos, manage content, and view user profiles/stats. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "todoist-automation", @@ -7782,7 +8646,8 @@ "name": "todoist-automation", "description": "Automate Todoist task management, projects, sections, filtering, and bulk operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tool-design", @@ -7791,7 +8656,8 @@ "name": "tool-design", "description": "Build tools that agents can use effectively, including architectural reduction patterns", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/tool-design" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/tool-design", + "date_added": "2025-02-26" }, { "id": "top-web-vulnerabilities", @@ -7800,16 +8666,18 @@ "name": "top-web-vulnerabilities", "description": "This skill should be used when the user asks to \"identify web application vulnerabilities\", \"explain common security flaws\", \"understand vulnerability categories\", \"learn about inject...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "track-management", "path": "skills\\track-management", "category": "uncategorized", "name": "track-management", - "description": "Use this skill when creating, managing, or working with Conductor\ntracks - the logical work units for features, bugs, and refactors. Applies to\nspec.md, plan.md, and track lifecycle operations.\n", + "description": "Guide for creating, managing, and completing Conductor tracks - the logical work units that organize features, bugs, and refactors through specification, planning, and implementation phases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "trello-automation", @@ -7818,7 +8686,8 @@ "name": "trello-automation", "description": "Automate Trello boards, cards, and workflows via Rube MCP (Composio). Create cards, manage lists, assign members, and search across boards programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "trigger-dev", @@ -7827,7 +8696,8 @@ "name": "trigger-dev", "description": "Trigger.dev expert for background jobs, AI workflows, and reliable async execution with excellent developer experience and TypeScript-first design. Use when: trigger.dev, trigger dev, background ta...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "turborepo-caching", @@ -7836,16 +8706,18 @@ "name": "turborepo-caching", "description": "Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tutorial-engineer", "path": "skills\\tutorial-engineer", "category": "uncategorized", "name": "tutorial-engineer", - "description": "Creates step-by-step tutorials and educational content from code.\nTransforms complex concepts into progressive learning experiences with\nhands-on examples. Use PROACTIVELY for onboarding guides, feature tutorials,\nor concept explanations.\n", + "description": "- Working on tutorial engineer tasks or workflows - Needing guidance, best practices, or checklists for tutorial engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "twilio-communications", @@ -7854,7 +8726,8 @@ "name": "twilio-communications", "description": "Build communication features with Twilio: SMS messaging, voice calls, WhatsApp Business API, and user verification (2FA). Covers the full spectrum from simple notifications to complex IVR systems a...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "twitter-automation", @@ -7863,7 +8736,8 @@ "name": "twitter-automation", "description": "Automate Twitter/X tasks via Rube MCP (Composio): posts, search, users, bookmarks, lists, media. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "typescript-advanced-types", @@ -7872,25 +8746,28 @@ "name": "typescript-advanced-types", "description": "Master TypeScript's advanced type system including generics, conditional types, mapped types, template literals, and utility types for building type-safe applications. Use when implementing complex...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "typescript-expert", "path": "skills\\typescript-expert", "category": "uncategorized", "name": "typescript-expert", - "description": "TypeScript and JavaScript expert with deep knowledge of type-level programming, performance optimization, monorepo management, migration strategies, and modern tooling. Use PROACTIVELY for any TypeScript/JavaScript issues including complex type gymnastics, build performance, debugging, and architectural decisions. If a specialized expert is a better fit, I will recommend switching and stop.", + "description": "You are an advanced TypeScript expert with deep, practical knowledge of type-level programming, performance optimization, and real-world problem solving based on current best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "typescript-pro", "path": "skills\\typescript-pro", "category": "uncategorized", "name": "typescript-pro", - "description": "Master TypeScript with advanced types, generics, and strict type\nsafety. Handles complex type systems, decorators, and enterprise-grade\npatterns. Use PROACTIVELY for TypeScript architecture, type inference\noptimization, or advanced typing patterns.\n", + "description": "You are a TypeScript expert specializing in advanced typing and enterprise-grade development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ui-skills", @@ -7899,16 +8776,18 @@ "name": "ui-skills", "description": "Opinionated, evolving constraints to guide agents when building interfaces", "risk": "safe", - "source": "https://github.com/ibelick/ui-skills" + "source": "https://github.com/ibelick/ui-skills", + "date_added": "2025-02-26" }, { "id": "ui-ux-designer", "path": "skills\\ui-ux-designer", "category": "uncategorized", "name": "ui-ux-designer", - "description": "Create interface designs, wireframes, and design systems. Masters\nuser research, accessibility standards, and modern design tools. Specializes\nin design tokens, component libraries, and inclusive design. Use PROACTIVELY\nfor design systems, user flows, or interface optimization.\n", + "description": "- Working on ui ux designer tasks or workflows - Needing guidance, best practices, or checklists for ui ux designer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ui-ux-pro-max", @@ -7917,16 +8796,18 @@ "name": "ui-ux-pro-max", "description": "UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, cr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ui-visual-validator", "path": "skills\\ui-visual-validator", "category": "uncategorized", "name": "ui-visual-validator", - "description": "Rigorous visual validation expert specializing in UI testing,\ndesign system compliance, and accessibility verification. Masters screenshot\nanalysis, visual regression testing, and component validation. Use PROACTIVELY\nto verify UI modifications have achieved their intended goals through\ncomprehensive visual analysis.\n", + "description": "- Working on ui visual validator tasks or workflows - Needing guidance, best practices, or checklists for ui visual validator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unit-testing-test-generate", @@ -7935,16 +8816,18 @@ "name": "unit-testing-test-generate", "description": "Generate comprehensive, maintainable unit tests across languages with strong coverage and edge case focus.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unity-developer", "path": "skills\\unity-developer", "category": "uncategorized", "name": "unity-developer", - "description": "Build Unity games with optimized C# scripts, efficient rendering,\nand proper asset management. Masters Unity 6 LTS, URP/HDRP pipelines, and\ncross-platform deployment. Handles gameplay systems, UI implementation, and\nplatform optimization. Use PROACTIVELY for Unity performance issues, game\nmechanics, or cross-platform builds.\n", + "description": "- Working on unity developer tasks or workflows - Needing guidance, best practices, or checklists for unity developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unity-ecs-patterns", @@ -7953,7 +8836,8 @@ "name": "unity-ecs-patterns", "description": "Master Unity ECS (Entity Component System) with DOTS, Jobs, and Burst for high-performance game development. Use when building data-oriented games, optimizing performance, or working with large ent...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unreal-engine-cpp-pro", @@ -7962,7 +8846,8 @@ "name": "unreal-engine-cpp-pro", "description": "Expert guide for Unreal Engine 5.x C++ development, covering UObject hygiene, performance patterns, and best practices.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "upgrading-expo", @@ -7971,7 +8856,8 @@ "name": "upgrading-expo", "description": "Upgrade Expo SDK versions", "risk": "safe", - "source": "https://github.com/expo/skills/tree/main/plugins/upgrading-expo" + "source": "https://github.com/expo/skills/tree/main/plugins/upgrading-expo", + "date_added": "2025-02-26" }, { "id": "upstash-qstash", @@ -7980,7 +8866,8 @@ "name": "upstash-qstash", "description": "Upstash QStash expert for serverless message queues, scheduled jobs, and reliable HTTP-based task delivery without managing infrastructure. Use when: qstash, upstash queue, serverless cron, schedul...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "using-git-worktrees", @@ -7989,7 +8876,8 @@ "name": "using-git-worktrees", "description": "Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verifi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "using-neon", @@ -7998,7 +8886,8 @@ "name": "using-neon", "description": "Guides and best practices for working with Neon Serverless Postgres. Covers getting started, local development with Neon, choosing a connection method, Neon features, authentication (@neondatabase/...", "risk": "safe", - "source": "https://github.com/neondatabase/agent-skills/tree/main/skills/neon-postgres" + "source": "https://github.com/neondatabase/agent-skills/tree/main/skills/neon-postgres", + "date_added": "2025-02-26" }, { "id": "using-superpowers", @@ -8007,7 +8896,8 @@ "name": "using-superpowers", "description": "Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "uv-package-manager", @@ -8016,7 +8906,8 @@ "name": "uv-package-manager", "description": "Master the uv package manager for fast Python dependency management, virtual environments, and modern Python project workflows. Use when setting up Python projects, managing dependencies, or optimi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "varlock-claude-skill", @@ -8025,7 +8916,8 @@ "name": "varlock-claude-skill", "description": "Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits", "risk": "safe", - "source": "https://github.com/wrsmith108/varlock-claude-skill" + "source": "https://github.com/wrsmith108/varlock-claude-skill", + "date_added": "2025-02-26" }, { "id": "vector-database-engineer", @@ -8034,7 +8926,8 @@ "name": "vector-database-engineer", "description": "Expert in vector databases, embedding strategies, and semantic search implementation. Masters Pinecone, Weaviate, Qdrant, Milvus, and pgvector for RAG applications, recommendation systems, and similar", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vector-index-tuning", @@ -8043,7 +8936,8 @@ "name": "vector-index-tuning", "description": "Optimize vector index performance for latency, recall, and memory. Use when tuning HNSW parameters, selecting quantization strategies, or scaling vector search infrastructure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vercel-automation", @@ -8052,7 +8946,8 @@ "name": "vercel-automation", "description": "Automate Vercel tasks via Rube MCP (Composio): manage deployments, domains, DNS, env vars, projects, and teams. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vercel-deploy-claimable", @@ -8061,7 +8956,8 @@ "name": "vercel-deploy-claimable", "description": "Deploy applications and websites to Vercel. Use this skill when the user requests deployment actions such as 'Deploy my app', 'Deploy this to production', 'Create a preview deployment', 'Deploy and...", "risk": "safe", - "source": "https://github.com/vercel-labs/agent-skills/tree/main/skills/claude.ai/vercel-deploy-claimable" + "source": "https://github.com/vercel-labs/agent-skills/tree/main/skills/claude.ai/vercel-deploy-claimable", + "date_added": "2025-02-26" }, { "id": "vercel-deployment", @@ -8070,7 +8966,8 @@ "name": "vercel-deployment", "description": "Expert knowledge for deploying to Vercel with Next.js Use when: vercel, deploy, deployment, hosting, production.", "risk": "safe", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "verification-before-completion", @@ -8079,7 +8976,8 @@ "name": "verification-before-completion", "description": "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evide...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vexor", @@ -8088,7 +8986,8 @@ "name": "vexor", "description": "Vector-powered CLI for semantic file search with a Claude/Codex skill", "risk": "safe", - "source": "https://github.com/scarletkc/vexor" + "source": "https://github.com/scarletkc/vexor", + "date_added": "2025-02-26" }, { "id": "viral-generator-builder", @@ -8097,7 +8996,8 @@ "name": "viral-generator-builder", "description": "Expert in building shareable generator tools that go viral - name generators, quiz makers, avatar creators, personality tests, and calculator tools. Covers the psychology of sharing, viral mechanic...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "voice-agents", @@ -8106,7 +9006,8 @@ "name": "voice-agents", "description": "Voice agents represent the frontier of AI interaction - humans speaking naturally with AI systems. The challenge isn't just speech recognition and synthesis, it's achieving natural conversation flo...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "voice-ai-development", @@ -8115,7 +9016,8 @@ "name": "voice-ai-development", "description": "Expert in building voice AI applications - from real-time voice agents to voice-enabled apps. Covers OpenAI Realtime API, Vapi for voice agents, Deepgram for transcription, ElevenLabs for synthesis...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "voice-ai-engine-development", @@ -8124,7 +9026,8 @@ "name": "voice-ai-engine-development", "description": "Build real-time conversational AI voice engines using async worker pipelines, streaming transcription, LLM agents, and TTS synthesis with interrupt handling and multi-provider support", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vr-ar", @@ -8133,7 +9036,8 @@ "name": "vr-ar", "description": "VR/AR development principles. Comfort, interaction, performance requirements.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vulnerability-scanner", @@ -8142,7 +9046,8 @@ "name": "vulnerability-scanner", "description": "Advanced vulnerability analysis principles. OWASP 2025, Supply Chain Security, attack surface mapping, risk prioritization.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wcag-audit-patterns", @@ -8151,7 +9056,8 @@ "name": "wcag-audit-patterns", "description": "Conduct WCAG 2.2 accessibility audits with automated testing, manual verification, and remediation guidance. Use when auditing websites for accessibility, fixing WCAG violations, or implementing ac...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-artifacts-builder", @@ -8160,7 +9066,8 @@ "name": "web-artifacts-builder", "description": "Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state ma...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-design-guidelines", @@ -8169,7 +9076,8 @@ "name": "web-design-guidelines", "description": "Review UI code for Web Interface Guidelines compliance. Use when asked to \\\"review my UI\\\", \\\"check accessibility\\\", \\\"audit design\\\", \\\"review UX\\\", or \\\"check my site aga...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-games", @@ -8178,7 +9086,8 @@ "name": "web-games", "description": "Web browser game development principles. Framework selection, WebGPU, optimization, PWA.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-performance-optimization", @@ -8187,7 +9096,8 @@ "name": "web-performance-optimization", "description": "Optimize website and web application performance including loading speed, Core Web Vitals, bundle size, caching strategies, and runtime performance", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-security-testing", @@ -8196,7 +9106,8 @@ "name": "web-security-testing", "description": "Web application security testing workflow for OWASP Top 10 vulnerabilities including injection, XSS, authentication flaws, and access control issues.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "web3-testing", @@ -8205,7 +9116,8 @@ "name": "web3-testing", "description": "Test smart contracts comprehensively using Hardhat and Foundry with unit tests, integration tests, and mainnet forking. Use when testing Solidity contracts, setting up blockchain test suites, or va...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "webapp-testing", @@ -8214,7 +9126,8 @@ "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browse...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "webflow-automation", @@ -8223,7 +9136,8 @@ "name": "webflow-automation", "description": "Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "whatsapp-automation", @@ -8232,7 +9146,8 @@ "name": "whatsapp-automation", "description": "Automate WhatsApp Business tasks via Rube MCP (Composio): send messages, manage templates, upload media, and handle contacts. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-architect", @@ -8241,7 +9156,8 @@ "name": "wiki-architect", "description": "Analyzes code repositories and generates hierarchical documentation structures with onboarding guides. Use when the user wants to create a wiki, generate documentation, map a codebase structure, or...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-changelog", @@ -8250,7 +9166,8 @@ "name": "wiki-changelog", "description": "Analyzes git commit history and generates structured changelogs categorized by change type. Use when the user asks about recent changes, wants a changelog, or needs to understand what changed in th...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-onboarding", @@ -8259,7 +9176,8 @@ "name": "wiki-onboarding", "description": "Generates two complementary onboarding guides \u2014 a Principal-Level architectural deep-dive and a Zero-to-Hero contributor walkthrough. Use when the user wants onboarding documentation fo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-page-writer", @@ -8268,7 +9186,8 @@ "name": "wiki-page-writer", "description": "Generates rich technical documentation pages with dark-mode Mermaid diagrams, source code citations, and first-principles depth. Use when writing documentation, generating wiki pages, creating tech...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-qa", @@ -8277,7 +9196,8 @@ "name": "wiki-qa", "description": "Answers questions about a code repository using source file analysis. Use when the user asks a question about how something works, wants to understand a component, or needs help navigating the code...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-researcher", @@ -8286,7 +9206,8 @@ "name": "wiki-researcher", "description": "Conducts multi-turn iterative deep research on specific topics within a codebase with zero tolerance for shallow analysis. Use when the user wants an in-depth investigation, needs to understand how...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-vitepress", @@ -8295,7 +9216,8 @@ "name": "wiki-vitepress", "description": "Packages generated wiki Markdown into a VitePress static site with dark theme, dark-mode Mermaid diagrams with click-to-zoom, and production build output. Use when the user wants to create a browsa...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "windows-privilege-escalation", @@ -8304,7 +9226,8 @@ "name": "windows-privilege-escalation", "description": "This skill should be used when the user asks to \"escalate privileges on Windows,\" \"find Windows privesc vectors,\" \"enumerate Windows for privilege escalation,\" \"exploit Windows miscon...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wireshark-analysis", @@ -8313,7 +9236,8 @@ "name": "wireshark-analysis", "description": "This skill should be used when the user asks to \"analyze network traffic with Wireshark\", \"capture packets for troubleshooting\", \"filter PCAP files\", \"follow TCP/UDP streams\", \"dete...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wordpress", @@ -8322,7 +9246,8 @@ "name": "wordpress", "description": "Complete WordPress development workflow covering theme development, plugin creation, WooCommerce integration, performance optimization, and security hardening.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "wordpress-penetration-testing", @@ -8331,7 +9256,8 @@ "name": "wordpress-penetration-testing", "description": "This skill should be used when the user asks to \"pentest WordPress sites\", \"scan WordPress for vulnerabilities\", \"enumerate WordPress users, themes, or plugins\", \"exploit WordPress vu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wordpress-plugin-development", @@ -8340,7 +9266,8 @@ "name": "wordpress-plugin-development", "description": "WordPress plugin development workflow covering plugin architecture, hooks, admin interfaces, REST API, and security best practices.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "wordpress-theme-development", @@ -8349,7 +9276,8 @@ "name": "wordpress-theme-development", "description": "WordPress theme development workflow covering theme architecture, template hierarchy, custom post types, block editor support, and responsive design.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "wordpress-woocommerce-development", @@ -8358,7 +9286,8 @@ "name": "wordpress-woocommerce-development", "description": "WooCommerce store development workflow covering store setup, payment integration, shipping configuration, and customization.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "workflow-automation", @@ -8367,7 +9296,8 @@ "name": "workflow-automation", "description": "Workflow automation is the infrastructure that makes AI agents reliable. Without durable execution, a network hiccup during a 10-step payment flow means lost money and angry customers. With it, wor...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "workflow-orchestration-patterns", @@ -8376,16 +9306,18 @@ "name": "workflow-orchestration-patterns", "description": "Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "workflow-patterns", "path": "skills\\workflow-patterns", "category": "uncategorized", "name": "workflow-patterns", - "description": "Use this skill when implementing tasks according to Conductor's TDD\nworkflow, handling phase checkpoints, managing git commits for tasks, or\nunderstanding the verification protocol.\n", + "description": "Guide for implementing tasks using Conductor's TDD workflow, managing phase checkpoints, handling git commits, and executing the verification protocol that ensures quality throughout implementation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wrike-automation", @@ -8394,7 +9326,8 @@ "name": "wrike-automation", "description": "Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "writer", @@ -8403,7 +9336,8 @@ "name": "writer", "description": "Document creation, format conversion (ODT/DOCX/PDF), mail merge, and automation with LibreOffice Writer.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "writing-plans", @@ -8412,7 +9346,8 @@ "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task, before touching code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "writing-skills", @@ -8421,7 +9356,8 @@ "name": "writing-skills", "description": "Use when creating, updating, or improving agent skills.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "x-article-publisher-skill", @@ -8430,7 +9366,8 @@ "name": "x-article-publisher-skill", "description": "Publish articles to X/Twitter", "risk": "safe", - "source": "https://github.com/wshuyi/x-article-publisher-skill" + "source": "https://github.com/wshuyi/x-article-publisher-skill", + "date_added": "2025-02-26" }, { "id": "xlsx-official", @@ -8439,7 +9376,8 @@ "name": "xlsx-official", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, ....", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "xss-html-injection", @@ -8448,7 +9386,8 @@ "name": "xss-html-injection", "description": "This skill should be used when the user asks to \"test for XSS vulnerabilities\", \"perform cross-site scripting attacks\", \"identify HTML injection flaws\", \"exploit client-side injection...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "youtube-automation", @@ -8457,7 +9396,8 @@ "name": "youtube-automation", "description": "Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "youtube-summarizer", @@ -8466,7 +9406,8 @@ "name": "youtube-summarizer", "description": "Extract transcripts from YouTube videos and generate comprehensive, detailed summaries using intelligent analysis frameworks", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zapier-make-patterns", @@ -8475,7 +9416,8 @@ "name": "zapier-make-patterns", "description": "No-code automation democratizes workflow building. Zapier and Make (formerly Integromat) let non-developers automate business processes without writing code. But no-code doesn't mean no-complexity ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "zendesk-automation", @@ -8484,7 +9426,8 @@ "name": "zendesk-automation", "description": "Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zoho-crm-automation", @@ -8493,7 +9436,8 @@ "name": "zoho-crm-automation", "description": "Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zoom-automation", @@ -8502,7 +9446,8 @@ "name": "zoom-automation", "description": "Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zustand-store-ts", @@ -8511,6 +9456,7 @@ "name": "zustand-store-ts", "description": "Create Zustand stores with TypeScript, subscribeWithSelector middleware, and proper state/action separation. Use when building React state management, creating global stores, or implementing reacti...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" } ] \ No newline at end of file diff --git a/web-app/public/skills.json b/web-app/public/skills.json index c0ffd8e0..e947d6fd 100644 --- a/web-app/public/skills.json +++ b/web-app/public/skills.json @@ -6,7 +6,8 @@ "name": "00-andruia-consultant", "description": "Arquitecto de Soluciones Principal y Consultor Tecnol\u00f3gico de Andru.ia. Diagnostica y traza la hoja de ruta \u00f3ptima para proyectos de IA en espa\u00f1ol.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "20-andruia-niche-intelligence", @@ -15,7 +16,8 @@ "name": "20-andruia-niche-intelligence", "description": "Estratega de Inteligencia de Dominio de Andru.ia. Analiza el nicho espec\u00edfico de un proyecto para inyectar conocimientos, regulaciones y est\u00e1ndares \u00fanicos del sector. Act\u00edvalo tras definir el nicho.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "2d-games", @@ -24,7 +26,8 @@ "name": "2d-games", "description": "2D game development principles. Sprites, tilemaps, physics, camera.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "3d-games", @@ -33,7 +36,8 @@ "name": "3d-games", "description": "3D game development principles. Rendering, shaders, physics, cameras.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "3d-web-experience", @@ -42,7 +46,8 @@ "name": "3d-web-experience", "description": "Expert in building 3D experiences for the web - Three.js, React Three Fiber, Spline, WebGL, and interactive 3D scenes. Covers product configurators, 3D portfolios, immersive websites, and bringing ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "ab-test-setup", @@ -51,7 +56,8 @@ "name": "ab-test-setup", "description": "Structured guide for setting up A/B tests with mandatory gates for hypothesis, metrics, and execution readiness.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "accessibility-compliance-accessibility-audit", @@ -60,7 +66,8 @@ "name": "accessibility-compliance-accessibility-audit", "description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "active-directory-attacks", @@ -69,7 +76,8 @@ "name": "active-directory-attacks", "description": "This skill should be used when the user asks to \"attack Active Directory\", \"exploit AD\", \"Kerberoasting\", \"DCSync\", \"pass-the-hash\", \"BloodHound enumeration\", \"Golden Ticket\", ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "activecampaign-automation", @@ -78,7 +86,8 @@ "name": "activecampaign-automation", "description": "Automate ActiveCampaign tasks via Rube MCP (Composio): manage contacts, tags, list subscriptions, automation enrollment, and tasks. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "address-github-comments", @@ -87,7 +96,8 @@ "name": "address-github-comments", "description": "Use when you need to address review or issue comments on an open GitHub Pull Request using the gh CLI.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-evaluation", @@ -96,7 +106,8 @@ "name": "agent-evaluation", "description": "Testing and benchmarking LLM agents including behavioral testing, capability assessment, reliability metrics, and production monitoring\u2014where even top agents achieve less than 50% on re...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "agent-framework-azure-ai-py", @@ -105,7 +116,8 @@ "name": "agent-framework-azure-ai-py", "description": "Build Azure AI Foundry agents using the Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Use when creating persistent agents with AzureAIAgentsProvider, using hosted tools (code int...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-manager-skill", @@ -114,7 +126,8 @@ "name": "agent-manager-skill", "description": "Manage multiple local CLI agents via tmux sessions (start/stop/monitor/assign) with cron-friendly scheduling.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-memory-mcp", @@ -123,7 +136,8 @@ "name": "agent-memory-mcp", "description": "A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-memory-systems", @@ -132,7 +146,8 @@ "name": "agent-memory-systems", "description": "Memory is the cornerstone of intelligent agents. Without it, every interaction starts from zero. This skill covers the architecture of agent memory: short-term (context window), long-term (vector s...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "agent-orchestration-improve-agent", @@ -141,7 +156,8 @@ "name": "agent-orchestration-improve-agent", "description": "Systematic improvement of existing agents through performance analysis, prompt engineering, and continuous iteration.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-orchestration-multi-agent-optimize", @@ -150,7 +166,8 @@ "name": "agent-orchestration-multi-agent-optimize", "description": "Optimize multi-agent systems with coordinated profiling, workload distribution, and cost-aware orchestration. Use when improving agent performance, throughput, or reliability.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "agent-tool-builder", @@ -159,7 +176,8 @@ "name": "agent-tool-builder", "description": "Tools are how AI agents interact with the world. A well-designed tool is the difference between an agent that works and one that hallucinates, fails silently, or costs 10x more tokens than necessar...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "agentfolio", @@ -168,7 +186,8 @@ "name": "agentfolio", "description": "Skill for discovering and researching autonomous AI agents, tools, and ecosystems using the AgentFolio directory.", "risk": "unknown", - "source": "agentfolio.io" + "source": "agentfolio.io", + "date_added": "2025-02-26" }, { "id": "agents-v2-py", @@ -177,7 +196,8 @@ "name": "agents-v2-py", "description": "Build container-based Foundry Agents with Azure AI Projects SDK (ImageBasedHostedAgentDefinition). Use when creating hosted agents with custom container images in Azure AI Foundry.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ai-agent-development", @@ -186,7 +206,8 @@ "name": "ai-agent-development", "description": "AI agent development workflow for building autonomous agents, multi-agent systems, and agent orchestration with CrewAI, LangGraph, and custom agents.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "ai-agents-architect", @@ -195,16 +216,18 @@ "name": "ai-agents-architect", "description": "Expert in designing and building autonomous AI agents. Masters tool use, memory systems, planning strategies, and multi-agent orchestration. Use when: build agent, AI agent, autonomous agent, tool ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "ai-engineer", "path": "skills\\ai-engineer", "category": "uncategorized", "name": "ai-engineer", - "description": "Build production-ready LLM applications, advanced RAG systems, and\nintelligent agents. Implements vector search, multimodal AI, agent\norchestration, and enterprise AI integrations. Use PROACTIVELY for LLM\nfeatures, chatbots, AI agents, or AI-powered applications.\n", + "description": "You are an AI engineer specializing in production-grade LLM applications, generative AI systems, and intelligent agent architectures.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ai-ml", @@ -213,7 +236,8 @@ "name": "ai-ml", "description": "AI and machine learning workflow covering LLM application development, RAG implementation, agent architecture, ML pipelines, and AI-powered features.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "ai-product", @@ -222,7 +246,8 @@ "name": "ai-product", "description": "Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production. This skill covers LLM integration patterns, RAG architecture, prompt ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "ai-wrapper-product", @@ -231,7 +256,8 @@ "name": "ai-wrapper-product", "description": "Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into focused tools people will pay for. Not just 'ChatGPT but different' - products that solve specific problems with AI. Cov...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "airflow-dag-patterns", @@ -240,7 +266,8 @@ "name": "airflow-dag-patterns", "description": "Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when creating data pipelines, orchestrating workflows, or scheduling batch jobs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "airtable-automation", @@ -249,7 +276,8 @@ "name": "airtable-automation", "description": "Automate Airtable tasks via Rube MCP (Composio): records, bases, tables, fields, views. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "algolia-search", @@ -258,7 +286,8 @@ "name": "algolia-search", "description": "Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning Use when: adding search to, algolia, instantsearch, search api, search functionality.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "algorithmic-art", @@ -267,7 +296,8 @@ "name": "algorithmic-art", "description": "Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "amplitude-automation", @@ -276,16 +306,18 @@ "name": "amplitude-automation", "description": "Automate Amplitude tasks via Rube MCP (Composio): events, user activity, cohorts, user identification. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "analytics-tracking", "path": "skills\\analytics-tracking", "category": "uncategorized", "name": "analytics-tracking", - "description": "Design, audit, and improve analytics tracking systems that produce reliable, decision-ready data. Use when the user wants to set up, fix, or evaluate analytics tracking (GA4, GTM, product analytics, events, conversions, UTMs). This skill focuses on measurement strategy, signal quality, and validation\u2014 not just firing events.\n", + "description": "You are an expert in **analytics implementation and measurement design**. Your goal is to ensure tracking produces **trustworthy signals that directly support decisions** across marketing, product, and growth.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "android-jetpack-compose-expert", @@ -294,16 +326,18 @@ "name": "android-jetpack-compose-expert", "description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "angular", "path": "skills\\angular", "category": "uncategorized", "name": "angular", - "description": "Modern Angular (v20+) expert with deep knowledge of Signals, Standalone Components, Zoneless applications, SSR/Hydration, and reactive patterns. Use PROACTIVELY for Angular development, component architecture, state management, performance optimization, and migration to modern patterns.", + "description": "Master modern Angular development with Signals, Standalone Components, Zoneless applications, SSR/Hydration, and the latest reactive patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "angular-best-practices", @@ -312,7 +346,8 @@ "name": "angular-best-practices", "description": "Angular performance optimization and best practices guide. Use when writing, reviewing, or refactoring Angular code for optimal performance, bundle size, and rendering efficiency.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "angular-migration", @@ -321,7 +356,8 @@ "name": "angular-migration", "description": "Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates. Use when upgrading AngularJS applications, planning framework migrations, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "angular-state-management", @@ -330,7 +366,8 @@ "name": "angular-state-management", "description": "Master modern Angular state management with Signals, NgRx, and RxJS. Use when setting up global state, managing component stores, choosing between state solutions, or migrating from legacy patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "angular-ui-patterns", @@ -339,7 +376,8 @@ "name": "angular-ui-patterns", "description": "Modern Angular UI patterns for loading states, error handling, and data display. Use when building UI components, handling async data, or managing component states.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "anti-reversing-techniques", @@ -348,7 +386,8 @@ "name": "anti-reversing-techniques", "description": "Understand anti-reversing, obfuscation, and protection techniques encountered during software analysis. Use when analyzing protected binaries, bypassing anti-debugging for authorized analysis, or u...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "antigravity-workflows", @@ -357,7 +396,8 @@ "name": "antigravity-workflows", "description": "Orchestrate multiple Antigravity skills through guided workflows for SaaS MVP delivery, security audits, AI agent builds, and browser QA.", "risk": "none", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "api-design-principles", @@ -366,7 +406,8 @@ "name": "api-design-principles", "description": "Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-documentation", @@ -375,7 +416,8 @@ "name": "api-documentation", "description": "API documentation workflow for generating OpenAPI specs, creating developer guides, and maintaining comprehensive API documentation.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "api-documentation-generator", @@ -384,16 +426,18 @@ "name": "api-documentation-generator", "description": "Generate comprehensive, developer-friendly API documentation from code, including endpoints, parameters, examples, and best practices", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-documenter", "path": "skills\\api-documenter", "category": "uncategorized", "name": "api-documenter", - "description": "Master API documentation with OpenAPI 3.1, AI-powered tools, and\nmodern developer experience practices. Create interactive docs, generate SDKs,\nand build comprehensive developer portals. Use PROACTIVELY for API\ndocumentation or developer portal creation.\n", + "description": "You are an expert API documentation specialist mastering modern developer experience through comprehensive, interactive, and AI-enhanced documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-fuzzing-bug-bounty", @@ -402,7 +446,8 @@ "name": "api-fuzzing-bug-bounty", "description": "This skill should be used when the user asks to \"test API security\", \"fuzz APIs\", \"find IDOR vulnerabilities\", \"test REST API\", \"test GraphQL\", \"API penetration testing\", \"bug b...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-patterns", @@ -411,7 +456,8 @@ "name": "api-patterns", "description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-security-best-practices", @@ -420,7 +466,8 @@ "name": "api-security-best-practices", "description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "api-security-testing", @@ -429,7 +476,8 @@ "name": "api-security-testing", "description": "API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "api-testing-observability-api-mock", @@ -438,7 +486,8 @@ "name": "api-testing-observability-api-mock", "description": "You are an API mocking expert specializing in realistic mock services for development, testing, and demos. Design mocks that simulate real API behavior and enable parallel development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "app-builder", @@ -447,7 +496,8 @@ "name": "app-builder", "description": "Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "app-store-optimization", @@ -456,7 +506,8 @@ "name": "app-store-optimization", "description": "Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "appdeploy", @@ -465,7 +516,8 @@ "name": "appdeploy", "description": "Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.", "risk": "safe", - "source": "AppDeploy (MIT)" + "source": "AppDeploy (MIT)", + "date_added": "2025-02-26" }, { "id": "application-performance-performance-optimization", @@ -474,16 +526,18 @@ "name": "application-performance-performance-optimization", "description": "Optimize end-to-end application performance with profiling, observability, and backend/frontend tuning. Use when coordinating performance optimization across the stack.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architect-review", "path": "skills\\architect-review", "category": "uncategorized", "name": "architect-review", - "description": "Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions.", + "description": "Master software architect specializing in modern architecture", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architecture", @@ -492,7 +546,8 @@ "name": "architecture", "description": "Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisions or analyzing system design.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architecture-decision-records", @@ -501,7 +556,8 @@ "name": "architecture-decision-records", "description": "Write and maintain Architecture Decision Records (ADRs) following best practices for technical decision documentation. Use when documenting significant technical decisions, reviewing past architect...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "architecture-patterns", @@ -510,16 +566,18 @@ "name": "architecture-patterns", "description": "Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven Design. Use when architecting complex backend systems or refactoring existing ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "arm-cortex-expert", "path": "skills\\arm-cortex-expert", "category": "uncategorized", "name": "arm-cortex-expert", - "description": "Senior embedded software engineer specializing in firmware and driver development for ARM Cortex-M microcontrollers (Teensy, STM32, nRF52, SAMD). Decades of experience writing reliable, optimized, and maintainable embedded code with deep expertise in memory barriers, DMA/cache coherency, interrupt-driven I/O, and peripheral drivers.\n", + "description": "- Working on @arm-cortex-expert tasks or workflows - Needing guidance, best practices, or checklists for @arm-cortex-expert", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "asana-automation", @@ -528,7 +586,8 @@ "name": "asana-automation", "description": "Automate Asana tasks via Rube MCP (Composio): tasks, projects, sections, teams, workspaces. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "async-python-patterns", @@ -537,7 +596,8 @@ "name": "async-python-patterns", "description": "Master Python asyncio, concurrent programming, and async/await patterns for high-performance applications. Use when building async APIs, concurrent systems, or I/O-bound applications requiring non-...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "attack-tree-construction", @@ -546,7 +606,8 @@ "name": "attack-tree-construction", "description": "Build comprehensive attack trees to visualize threat paths. Use when mapping attack scenarios, identifying defense gaps, or communicating security risks to stakeholders.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "audio-transcriber", @@ -555,7 +616,8 @@ "name": "audio-transcriber", "description": "Transform audio recordings into professional Markdown documentation with intelligent summaries using LLM integration", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "auth-implementation-patterns", @@ -564,7 +626,8 @@ "name": "auth-implementation-patterns", "description": "Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing A...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "automate-whatsapp", @@ -573,7 +636,8 @@ "name": "automate-whatsapp", "description": "Build WhatsApp automations with Kapso workflows: configure WhatsApp triggers, edit workflow graphs, manage executions, deploy functions, and use databases/integrations for state. Use when automatin...", "risk": "safe", - "source": "https://github.com/gokapso/agent-skills/tree/master/skills/automate-whatsapp" + "source": "https://github.com/gokapso/agent-skills/tree/master/skills/automate-whatsapp", + "date_added": "2025-02-26" }, { "id": "autonomous-agent-patterns", @@ -582,7 +646,8 @@ "name": "autonomous-agent-patterns", "description": "Design patterns for building autonomous coding agents. Covers tool integration, permission systems, browser automation, and human-in-the-loop workflows. Use when building AI agents, designing tool ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "autonomous-agents", @@ -591,7 +656,8 @@ "name": "autonomous-agents", "description": "Autonomous agents are AI systems that can independently decompose goals, plan actions, execute tools, and self-correct without constant human guidance. The challenge isn't making them capable - it'...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "avalonia-layout-zafiro", @@ -600,7 +666,8 @@ "name": "avalonia-layout-zafiro", "description": "Guidelines for modern Avalonia UI layout using Zafiro.Avalonia, emphasizing shared styles, generic components, and avoiding XAML redundancy.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "avalonia-viewmodels-zafiro", @@ -609,7 +676,8 @@ "name": "avalonia-viewmodels-zafiro", "description": "Optimal ViewModel and Wizard creation patterns for Avalonia using Zafiro and ReactiveUI.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "avalonia-zafiro-development", @@ -618,7 +686,8 @@ "name": "avalonia-zafiro-development", "description": "Mandatory skills, conventions, and behavioral rules for Avalonia UI development using the Zafiro toolkit.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-compliance-checker", @@ -627,7 +696,8 @@ "name": "aws-compliance-checker", "description": "Automated compliance checking against CIS, PCI-DSS, HIPAA, and SOC 2 benchmarks", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-cost-cleanup", @@ -636,7 +706,8 @@ "name": "aws-cost-cleanup", "description": "Automated cleanup of unused AWS resources to reduce costs", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-cost-optimizer", @@ -645,7 +716,8 @@ "name": "aws-cost-optimizer", "description": "Comprehensive AWS cost analysis and optimization recommendations using AWS CLI and Cost Explorer", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-iam-best-practices", @@ -654,7 +726,8 @@ "name": "aws-iam-best-practices", "description": "IAM policy review, hardening, and least privilege implementation", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-penetration-testing", @@ -663,7 +736,8 @@ "name": "aws-penetration-testing", "description": "This skill should be used when the user asks to \"pentest AWS\", \"test AWS security\", \"enumerate IAM\", \"exploit cloud infrastructure\", \"AWS privilege escalation\", \"S3 bucket testing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-secrets-rotation", @@ -672,7 +746,8 @@ "name": "aws-secrets-rotation", "description": "Automate AWS secrets rotation for RDS, API keys, and credentials", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-security-audit", @@ -681,7 +756,8 @@ "name": "aws-security-audit", "description": "Comprehensive AWS security posture assessment using AWS CLI and security best practices", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "aws-serverless", @@ -690,7 +766,8 @@ "name": "aws-serverless", "description": "Specialized skill for building production-ready serverless applications on AWS. Covers Lambda functions, API Gateway, DynamoDB, SQS/SNS event-driven patterns, SAM/CDK deployment, and cold start opt...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "aws-skills", @@ -699,7 +776,8 @@ "name": "aws-skills", "description": "AWS development with infrastructure automation and cloud architecture patterns", "risk": "safe", - "source": "https://github.com/zxkane/aws-skills" + "source": "https://github.com/zxkane/aws-skills", + "date_added": "2025-02-26" }, { "id": "azd-deployment", @@ -708,25 +786,28 @@ "name": "azd-deployment", "description": "Deploy containerized applications to Azure Container Apps using Azure Developer CLI (azd). Use when setting up azd projects, writing azure.yaml configuration, creating Bicep infrastructure for Cont...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-agents-persistent-dotnet", "path": "skills\\azure-ai-agents-persistent-dotnet", "category": "uncategorized", "name": "azure-ai-agents-persistent-dotnet", - "description": "Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n", + "description": "Low-level SDK for creating and managing persistent AI agents with threads, messages, runs, and tools.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-agents-persistent-java", "path": "skills\\azure-ai-agents-persistent-java", "category": "uncategorized", "name": "azure-ai-agents-persistent-java", - "description": "Azure AI Agents Persistent SDK for Java. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools.\nTriggers: \"PersistentAgentsClient\", \"persistent agents java\", \"agent threads java\", \"agent runs java\", \"streaming agents java\".\n", + "description": "Low-level SDK for creating and managing persistent AI agents with threads, messages, runs, and tools.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-anomalydetector-java", @@ -735,7 +816,8 @@ "name": "azure-ai-anomalydetector-java", "description": "Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentsafety-java", @@ -744,16 +826,18 @@ "name": "azure-ai-contentsafety-java", "description": "Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual conten...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentsafety-py", "path": "skills\\azure-ai-contentsafety-py", "category": "uncategorized", "name": "azure-ai-contentsafety-py", - "description": "Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n", + "description": "Detect harmful user-generated and AI-generated content in applications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentsafety-ts", @@ -762,25 +846,28 @@ "name": "azure-ai-contentsafety-ts", "description": "Analyze text and images for harmful content using Azure AI Content Safety (@azure-rest/ai-content-safety). Use when moderating user-generated content, detecting hate speech, violence, sexual conten...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-contentunderstanding-py", "path": "skills\\azure-ai-contentunderstanding-py", "category": "uncategorized", "name": "azure-ai-contentunderstanding-py", - "description": "Azure AI Content Understanding SDK for Python. Use for multimodal content extraction from documents, images, audio, and video.\nTriggers: \"azure-ai-contentunderstanding\", \"ContentUnderstandingClient\", \"multimodal analysis\", \"document extraction\", \"video analysis\", \"audio transcription\".\n", + "description": "Multimodal AI service that extracts semantic content from documents, video, audio, and image files for RAG and automated workflows.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-document-intelligence-dotnet", "path": "skills\\azure-ai-document-intelligence-dotnet", "category": "uncategorized", "name": "azure-ai-document-intelligence-dotnet", - "description": "Azure AI Document Intelligence SDK for .NET. Extract text, tables, and structured data from documents using prebuilt and custom models. Use for invoice processing, receipt extraction, ID document analysis, and custom document models. Triggers: \"Document Intelligence\", \"DocumentIntelligenceClient\", \"form recognizer\", \"invoice extraction\", \"receipt OCR\", \"document analysis .NET\".\n", + "description": "Extract text, tables, and structured data from documents using prebuilt and custom models.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-document-intelligence-ts", @@ -789,7 +876,8 @@ "name": "azure-ai-document-intelligence-ts", "description": "Extract text, tables, and structured data from documents using Azure Document Intelligence (@azure-rest/ai-document-intelligence). Use when processing invoices, receipts, IDs, forms, or building cu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-formrecognizer-java", @@ -798,43 +886,48 @@ "name": "azure-ai-formrecognizer-java", "description": "Build document analysis applications with Azure Document Intelligence (Form Recognizer) SDK for Java. Use when extracting text, tables, key-value pairs from documents, receipts, invoices, or buildi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-ml-py", "path": "skills\\azure-ai-ml-py", "category": "uncategorized", "name": "azure-ai-ml-py", - "description": "Azure Machine Learning SDK v2 for Python. Use for ML workspaces, jobs, models, datasets, compute, and pipelines.\nTriggers: \"azure-ai-ml\", \"MLClient\", \"workspace\", \"model registry\", \"training jobs\", \"datasets\".\n", + "description": "Client library for managing Azure ML resources: workspaces, jobs, models, data, and compute.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-openai-dotnet", "path": "skills\\azure-ai-openai-dotnet", "category": "uncategorized", "name": "azure-ai-openai-dotnet", - "description": "Azure OpenAI SDK for .NET. Client library for Azure OpenAI and OpenAI services. Use for chat completions, embeddings, image generation, audio transcription, and assistants. Triggers: \"Azure OpenAI\", \"AzureOpenAIClient\", \"ChatClient\", \"chat completions .NET\", \"GPT-4\", \"embeddings\", \"DALL-E\", \"Whisper\", \"OpenAI .NET\".\n", + "description": "Client library for Azure OpenAI Service providing access to OpenAI models including GPT-4, GPT-4o, embeddings, DALL-E, and Whisper.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-dotnet", "path": "skills\\azure-ai-projects-dotnet", "category": "uncategorized", "name": "azure-ai-projects-dotnet", - "description": "Azure AI Projects SDK for .NET. High-level client for Azure AI Foundry projects including agents, connections, datasets, deployments, evaluations, and indexes. Use for AI Foundry project management, versioned agents, and orchestration. Triggers: \"AI Projects\", \"AIProjectClient\", \"Foundry project\", \"versioned agents\", \"evaluations\", \"datasets\", \"connections\", \"deployments .NET\".\n", + "description": "High-level SDK for Azure AI Foundry project operations including agents, connections, datasets, deployments, evaluations, and indexes.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-java", "path": "skills\\azure-ai-projects-java", "category": "uncategorized", "name": "azure-ai-projects-java", - "description": "Azure AI Projects SDK for Java. High-level SDK for Azure AI Foundry project management including connections, datasets, indexes, and evaluations.\nTriggers: \"AIProjectClient java\", \"azure ai projects java\", \"Foundry project java\", \"ConnectionsClient\", \"DatasetsClient\", \"IndexesClient\".\n", + "description": "High-level SDK for Azure AI Foundry project management with access to connections, datasets, indexes, and evaluations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-py", @@ -843,7 +936,8 @@ "name": "azure-ai-projects-py", "description": "Build AI applications using the Azure AI Projects Python SDK (azure-ai-projects). Use when working with Foundry project clients, creating versioned agents with PromptAgentDefinition, running evalua...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-projects-ts", @@ -852,43 +946,48 @@ "name": "azure-ai-projects-ts", "description": "Build AI applications using Azure AI Projects SDK for JavaScript (@azure/ai-projects). Use when working with Foundry project clients, agents, connections, deployments, datasets, indexes, evaluation...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-textanalytics-py", "path": "skills\\azure-ai-textanalytics-py", "category": "uncategorized", "name": "azure-ai-textanalytics-py", - "description": "Azure AI Text Analytics SDK for sentiment analysis, entity recognition, key phrases, language detection, PII, and healthcare NLP. Use for natural language processing on text.\nTriggers: \"text analytics\", \"sentiment analysis\", \"entity recognition\", \"key phrase\", \"PII detection\", \"TextAnalyticsClient\".\n", + "description": "Client library for Azure AI Language service NLP capabilities including sentiment, entities, key phrases, and more.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-transcription-py", "path": "skills\\azure-ai-transcription-py", "category": "uncategorized", "name": "azure-ai-transcription-py", - "description": "Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.\nTriggers: \"transcription\", \"speech to text\", \"Azure AI Transcription\", \"TranscriptionClient\".\n", + "description": "Client library for Azure AI Transcription (speech-to-text) with real-time and batch transcription.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-translation-document-py", "path": "skills\\azure-ai-translation-document-py", "category": "uncategorized", "name": "azure-ai-translation-document-py", - "description": "Azure AI Document Translation SDK for batch translation of documents with format preservation. Use for translating Word, PDF, Excel, PowerPoint, and other document formats at scale.\nTriggers: \"document translation\", \"batch translation\", \"translate documents\", \"DocumentTranslationClient\".\n", + "description": "Client library for Azure AI Translator document translation service for batch document translation with format preservation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-translation-text-py", "path": "skills\\azure-ai-translation-text-py", "category": "uncategorized", "name": "azure-ai-translation-text-py", - "description": "Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n", + "description": "Client library for Azure AI Translator text translation service for real-time text translation, transliteration, and language operations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-translation-ts", @@ -897,7 +996,8 @@ "name": "azure-ai-translation-ts", "description": "Build translation applications using Azure Translation SDKs for JavaScript (@azure-rest/ai-translation-text, @azure-rest/ai-translation-document). Use when implementing text translation, transliter...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-vision-imageanalysis-java", @@ -906,34 +1006,38 @@ "name": "azure-ai-vision-imageanalysis-java", "description": "Build image analysis applications with Azure AI Vision SDK for Java. Use when implementing image captioning, OCR text extraction, object detection, tagging, or smart cropping.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-vision-imageanalysis-py", "path": "skills\\azure-ai-vision-imageanalysis-py", "category": "uncategorized", "name": "azure-ai-vision-imageanalysis-py", - "description": "Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n", + "description": "Client library for Azure AI Vision 4.0 image analysis including captions, tags, objects, OCR, and more.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-dotnet", "path": "skills\\azure-ai-voicelive-dotnet", "category": "uncategorized", "name": "azure-ai-voicelive-dotnet", - "description": "Azure AI Voice Live SDK for .NET. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant .NET\", \"bidirectional audio\", \"speech-to-speech\".\n", + "description": "Real-time voice AI SDK for building bidirectional voice assistants with Azure AI.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-java", "path": "skills\\azure-ai-voicelive-java", "category": "uncategorized", "name": "azure-ai-voicelive-java", - "description": "Azure AI VoiceLive SDK for Java. Real-time bidirectional voice conversations with AI assistants using WebSocket.\nTriggers: \"VoiceLiveClient java\", \"voice assistant java\", \"real-time voice java\", \"audio streaming java\", \"voice activity detection java\".\n", + "description": "Real-time, bidirectional voice conversations with AI assistants using WebSocket technology.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-py", @@ -942,34 +1046,38 @@ "name": "azure-ai-voicelive-py", "description": "Build real-time voice AI applications using Azure AI Voice Live SDK (azure-ai-voicelive). Use this skill when creating Python applications that need real-time bidirectional audio communication with...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-ai-voicelive-ts", "path": "skills\\azure-ai-voicelive-ts", "category": "uncategorized", "name": "azure-ai-voicelive-ts", - "description": "Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots in Node.js or browser environments. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant TypeScript\", \"bidirectional audio\", \"speech-to-speech JavaScript\".\n", + "description": "Real-time voice AI SDK for building bidirectional voice assistants with Azure AI in Node.js and browser environments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-appconfiguration-java", "path": "skills\\azure-appconfiguration-java", "category": "uncategorized", "name": "azure-appconfiguration-java", - "description": "Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n", + "description": "Client library for Azure App Configuration, a managed service for centralizing application configurations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-appconfiguration-py", "path": "skills\\azure-appconfiguration-py", "category": "uncategorized", "name": "azure-appconfiguration-py", - "description": "Azure App Configuration SDK for Python. Use for centralized configuration management, feature flags, and dynamic settings.\nTriggers: \"azure-appconfiguration\", \"AzureAppConfigurationClient\", \"feature flags\", \"configuration\", \"key-value settings\".\n", + "description": "Centralized configuration management with feature flags and dynamic settings.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-appconfiguration-ts", @@ -978,7 +1086,8 @@ "name": "azure-appconfiguration-ts", "description": "Build applications using Azure App Configuration SDK for JavaScript (@azure/app-configuration). Use when working with configuration settings, feature flags, Key Vault references, dynamic refresh, o...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-callautomation-java", @@ -987,7 +1096,8 @@ "name": "azure-communication-callautomation-java", "description": "Build call automation workflows with Azure Communication Services Call Automation Java SDK. Use when implementing IVR systems, call routing, call recording, DTMF recognition, text-to-speech, or AI-...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-callingserver-java", @@ -996,7 +1106,8 @@ "name": "azure-communication-callingserver-java", "description": "Azure Communication Services CallingServer (legacy) Java SDK. Note - This SDK is deprecated. Use azure-communication-callautomation instead for new projects. Only use this skill when maintaining le...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-chat-java", @@ -1005,7 +1116,8 @@ "name": "azure-communication-chat-java", "description": "Build real-time chat applications with Azure Communication Services Chat Java SDK. Use when implementing chat threads, messaging, participants, read receipts, typing notifications, or real-time cha...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-common-java", @@ -1014,7 +1126,8 @@ "name": "azure-communication-common-java", "description": "Azure Communication Services common utilities for Java. Use when working with CommunicationTokenCredential, user identifiers, token refresh, or shared authentication across ACS services.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-communication-sms-java", @@ -1023,25 +1136,28 @@ "name": "azure-communication-sms-java", "description": "Send SMS messages with Azure Communication Services SMS Java SDK. Use when implementing SMS notifications, alerts, OTP delivery, bulk messaging, or delivery reports.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-compute-batch-java", "path": "skills\\azure-compute-batch-java", "category": "uncategorized", "name": "azure-compute-batch-java", - "description": "Azure Batch SDK for Java. Run large-scale parallel and HPC batch jobs with pools, jobs, tasks, and compute nodes.\nTriggers: \"BatchClient java\", \"azure batch java\", \"batch pool java\", \"batch job java\", \"HPC java\", \"parallel computing java\".\n", + "description": "Client library for running large-scale parallel and high-performance computing (HPC) batch jobs in Azure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-containerregistry-py", "path": "skills\\azure-containerregistry-py", "category": "uncategorized", "name": "azure-containerregistry-py", - "description": "Azure Container Registry SDK for Python. Use for managing container images, artifacts, and repositories.\nTriggers: \"azure-containerregistry\", \"ContainerRegistryClient\", \"container images\", \"docker registry\", \"ACR\".\n", + "description": "Manage container images, artifacts, and repositories in Azure Container Registry.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-db-py", @@ -1050,43 +1166,48 @@ "name": "azure-cosmos-db-py", "description": "Build Azure Cosmos DB NoSQL services with Python/FastAPI following production-grade patterns. Use when implementing database client setup with dual auth (DefaultAzureCredential + emulator), service...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-java", "path": "skills\\azure-cosmos-java", "category": "uncategorized", "name": "azure-cosmos-java", - "description": "Azure Cosmos DB SDK for Java. NoSQL database operations with global distribution, multi-model support, and reactive patterns.\nTriggers: \"CosmosClient java\", \"CosmosAsyncClient\", \"cosmos database java\", \"cosmosdb java\", \"document database java\".\n", + "description": "Client library for Azure Cosmos DB NoSQL API with global distribution and reactive patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-py", "path": "skills\\azure-cosmos-py", "category": "uncategorized", "name": "azure-cosmos-py", - "description": "Azure Cosmos DB SDK for Python (NoSQL API). Use for document CRUD, queries, containers, and globally distributed data.\nTriggers: \"cosmos db\", \"CosmosClient\", \"container\", \"document\", \"NoSQL\", \"partition key\".\n", + "description": "Client library for Azure Cosmos DB NoSQL API \u2014 globally distributed, multi-model database.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-rust", "path": "skills\\azure-cosmos-rust", "category": "uncategorized", "name": "azure-cosmos-rust", - "description": "Azure Cosmos DB SDK for Rust (NoSQL API). Use for document CRUD, queries, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"container\", \"document rust\", \"NoSQL rust\", \"partition key\".\n", + "description": "Client library for Azure Cosmos DB NoSQL API \u2014 globally distributed, multi-model database.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-cosmos-ts", "path": "skills\\azure-cosmos-ts", "category": "uncategorized", "name": "azure-cosmos-ts", - "description": "Azure Cosmos DB JavaScript/TypeScript SDK (@azure/cosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure/cosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n", + "description": "Data plane SDK for Azure Cosmos DB NoSQL API operations \u2014 CRUD on documents, queries, bulk operations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-data-tables-java", @@ -1095,25 +1216,28 @@ "name": "azure-data-tables-java", "description": "Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-data-tables-py", "path": "skills\\azure-data-tables-py", "category": "uncategorized", "name": "azure-data-tables-py", - "description": "Azure Tables SDK for Python (Storage and Cosmos DB). Use for NoSQL key-value storage, entity CRUD, and batch operations.\nTriggers: \"table storage\", \"TableServiceClient\", \"TableClient\", \"entities\", \"PartitionKey\", \"RowKey\".\n", + "description": "NoSQL key-value store for structured data (Azure Storage Tables or Cosmos DB Table API).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventgrid-dotnet", "path": "skills\\azure-eventgrid-dotnet", "category": "uncategorized", "name": "azure-eventgrid-dotnet", - "description": "Azure Event Grid SDK for .NET. Client library for publishing and consuming events with Azure Event Grid. Use for event-driven architectures, pub/sub messaging, CloudEvents, and EventGridEvents. Triggers: \"Event Grid\", \"EventGridPublisherClient\", \"CloudEvent\", \"EventGridEvent\", \"publish events .NET\", \"event-driven\", \"pub/sub\".\n", + "description": "Client library for publishing events to Azure Event Grid topics, domains, and namespaces.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventgrid-java", @@ -1122,25 +1246,28 @@ "name": "azure-eventgrid-java", "description": "Build event-driven applications with Azure Event Grid SDK for Java. Use when publishing events, implementing pub/sub patterns, or integrating with Azure services via events.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventgrid-py", "path": "skills\\azure-eventgrid-py", "category": "uncategorized", "name": "azure-eventgrid-py", - "description": "Azure Event Grid SDK for Python. Use for publishing events, handling CloudEvents, and event-driven architectures.\nTriggers: \"event grid\", \"EventGridPublisherClient\", \"CloudEvent\", \"EventGridEvent\", \"publish events\".\n", + "description": "Event routing service for building event-driven applications with pub/sub semantics.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-dotnet", "path": "skills\\azure-eventhub-dotnet", "category": "uncategorized", "name": "azure-eventhub-dotnet", - "description": "Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: \"Event Hubs\", \"event streaming\", \"EventHubProducerClient\", \"EventProcessorClient\", \"send events\", \"receive events\", \"checkpointing\", \"partition\".\n", + "description": "High-throughput event streaming SDK for sending and receiving events via Azure Event Hubs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-java", @@ -1149,25 +1276,28 @@ "name": "azure-eventhub-java", "description": "Build real-time streaming applications with Azure Event Hubs SDK for Java. Use when implementing event streaming, high-throughput data ingestion, or building event-driven architectures.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-py", "path": "skills\\azure-eventhub-py", "category": "uncategorized", "name": "azure-eventhub-py", - "description": "Azure Event Hubs SDK for Python streaming. Use for high-throughput event ingestion, producers, consumers, and checkpointing.\nTriggers: \"event hubs\", \"EventHubProducerClient\", \"EventHubConsumerClient\", \"streaming\", \"partitions\".\n", + "description": "Big data streaming platform for high-throughput event ingestion.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-rust", "path": "skills\\azure-eventhub-rust", "category": "uncategorized", "name": "azure-eventhub-rust", - "description": "Azure Event Hubs SDK for Rust. Use for sending and receiving events, streaming data ingestion.\nTriggers: \"event hubs rust\", \"ProducerClient rust\", \"ConsumerClient rust\", \"send event rust\", \"streaming rust\".\n", + "description": "Client library for Azure Event Hubs \u2014 big data streaming platform and event ingestion service.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-eventhub-ts", @@ -1176,7 +1306,8 @@ "name": "azure-eventhub-ts", "description": "Build event streaming applications using Azure Event Hubs SDK for JavaScript (@azure/event-hubs). Use when implementing high-throughput event ingestion, real-time analytics, IoT telemetry, or event...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-functions", @@ -1185,16 +1316,18 @@ "name": "azure-functions", "description": "Expert patterns for Azure Functions development including isolated worker model, Durable Functions orchestration, cold start optimization, and production patterns. Covers .NET, Python, and Node.js ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "azure-identity-dotnet", "path": "skills\\azure-identity-dotnet", "category": "uncategorized", "name": "azure-identity-dotnet", - "description": "Azure Identity SDK for .NET. Authentication library for Azure SDK clients using Microsoft Entra ID. Use for DefaultAzureCredential, managed identity, service principals, and developer credentials. Triggers: \"Azure Identity\", \"DefaultAzureCredential\", \"ManagedIdentityCredential\", \"ClientSecretCredential\", \"authentication .NET\", \"Azure auth\", \"credential chain\".\n", + "description": "Authentication library for Azure SDK clients using Microsoft Entra ID (formerly Azure AD).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-java", @@ -1203,25 +1336,28 @@ "name": "azure-identity-java", "description": "Azure Identity Java SDK for authentication with Azure services. Use when implementing DefaultAzureCredential, managed identity, service principal, or any Azure authentication pattern in Java applic...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-py", "path": "skills\\azure-identity-py", "category": "uncategorized", "name": "azure-identity-py", - "description": "Azure Identity SDK for Python authentication. Use for DefaultAzureCredential, managed identity, service principals, and token caching.\nTriggers: \"azure-identity\", \"DefaultAzureCredential\", \"authentication\", \"managed identity\", \"service principal\", \"credential\".\n", + "description": "Authentication library for Azure SDK clients using Microsoft Entra ID (formerly Azure AD).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-rust", "path": "skills\\azure-identity-rust", "category": "uncategorized", "name": "azure-identity-rust", - "description": "Azure Identity SDK for Rust authentication. Use for DeveloperToolsCredential, ManagedIdentityCredential, ClientSecretCredential, and token-based authentication.\nTriggers: \"azure-identity\", \"DeveloperToolsCredential\", \"authentication rust\", \"managed identity rust\", \"credential rust\".\n", + "description": "Authentication library for Azure SDK clients using Microsoft Entra ID (formerly Azure AD).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-identity-ts", @@ -1230,25 +1366,28 @@ "name": "azure-identity-ts", "description": "Authenticate to Azure services using Azure Identity SDK for JavaScript (@azure/identity). Use when configuring authentication with DefaultAzureCredential, managed identity, service principals, or i...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-certificates-rust", "path": "skills\\azure-keyvault-certificates-rust", "category": "uncategorized", "name": "azure-keyvault-certificates-rust", - "description": "Azure Key Vault Certificates SDK for Rust. Use for creating, importing, and managing certificates.\nTriggers: \"keyvault certificates rust\", \"CertificateClient rust\", \"create certificate rust\", \"import certificate rust\".\n", + "description": "Client library for Azure Key Vault Certificates \u2014 secure storage and management of certificates.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-keys-rust", "path": "skills\\azure-keyvault-keys-rust", "category": "uncategorized", "name": "azure-keyvault-keys-rust", - "description": "Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys.\nTriggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".\n", + "description": "Client library for Azure Key Vault Keys \u2014 secure storage and management of cryptographic keys.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-keys-ts", @@ -1257,25 +1396,28 @@ "name": "azure-keyvault-keys-ts", "description": "Manage cryptographic keys using Azure Key Vault Keys SDK for JavaScript (@azure/keyvault-keys). Use when creating, encrypting/decrypting, signing, or rotating keys.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-py", "path": "skills\\azure-keyvault-py", "category": "uncategorized", "name": "azure-keyvault-py", - "description": "Azure Key Vault SDK for Python. Use for secrets, keys, and certificates management with secure storage.\nTriggers: \"key vault\", \"SecretClient\", \"KeyClient\", \"CertificateClient\", \"secrets\", \"encryption keys\".\n", + "description": "Secure storage and management for secrets, cryptographic keys, and certificates.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-secrets-rust", "path": "skills\\azure-keyvault-secrets-rust", "category": "uncategorized", "name": "azure-keyvault-secrets-rust", - "description": "Azure Key Vault Secrets SDK for Rust. Use for storing and retrieving secrets, passwords, and API keys.\nTriggers: \"keyvault secrets rust\", \"SecretClient rust\", \"get secret rust\", \"set secret rust\".\n", + "description": "Client library for Azure Key Vault Secrets \u2014 secure storage for passwords, API keys, and other secrets.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-keyvault-secrets-ts", @@ -1284,16 +1426,18 @@ "name": "azure-keyvault-secrets-ts", "description": "Manage secrets using Azure Key Vault Secrets SDK for JavaScript (@azure/keyvault-secrets). Use when storing and retrieving application secrets or configuration values.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-maps-search-dotnet", "path": "skills\\azure-maps-search-dotnet", "category": "uncategorized", "name": "azure-maps-search-dotnet", - "description": "Azure Maps SDK for .NET. Location-based services including geocoding, routing, rendering, geolocation, and weather. Use for address search, directions, map tiles, IP geolocation, and weather data. Triggers: \"Azure Maps\", \"MapsSearchClient\", \"MapsRoutingClient\", \"MapsRenderingClient\", \"geocoding .NET\", \"route directions\", \"map tiles\", \"geolocation\".\n", + "description": "Azure Maps SDK for .NET providing location-based services: geocoding, routing, rendering, geolocation, and weather.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-messaging-webpubsub-java", @@ -1302,106 +1446,118 @@ "name": "azure-messaging-webpubsub-java", "description": "Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-messaging-webpubsubservice-py", "path": "skills\\azure-messaging-webpubsubservice-py", "category": "uncategorized", "name": "azure-messaging-webpubsubservice-py", - "description": "Azure Web PubSub Service SDK for Python. Use for real-time messaging, WebSocket connections, and pub/sub patterns.\nTriggers: \"azure-messaging-webpubsubservice\", \"WebPubSubServiceClient\", \"real-time\", \"WebSocket\", \"pub/sub\".\n", + "description": "Real-time messaging with WebSocket connections at scale.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apicenter-dotnet", "path": "skills\\azure-mgmt-apicenter-dotnet", "category": "uncategorized", "name": "azure-mgmt-apicenter-dotnet", - "description": "Azure API Center SDK for .NET. Centralized API inventory management with governance, versioning, and discovery. Use for creating API services, workspaces, APIs, versions, definitions, environments, deployments, and metadata schemas. Triggers: \"API Center\", \"ApiCenterService\", \"ApiCenterWorkspace\", \"ApiCenterApi\", \"API inventory\", \"API governance\", \"API versioning\", \"API catalog\", \"API discovery\".\n", + "description": "Centralized API inventory and governance SDK for managing APIs across your organization.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apicenter-py", "path": "skills\\azure-mgmt-apicenter-py", "category": "uncategorized", "name": "azure-mgmt-apicenter-py", - "description": "Azure API Center Management SDK for Python. Use for managing API inventory, metadata, and governance across your organization.\nTriggers: \"azure-mgmt-apicenter\", \"ApiCenterMgmtClient\", \"API Center\", \"API inventory\", \"API governance\".\n", + "description": "Manage API inventory, metadata, and governance in Azure API Center.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apimanagement-dotnet", "path": "skills\\azure-mgmt-apimanagement-dotnet", "category": "uncategorized", "name": "azure-mgmt-apimanagement-dotnet", - "description": "Azure Resource Manager SDK for API Management in .NET. Use for MANAGEMENT PLANE operations: creating/managing APIM services, APIs, products, subscriptions, policies, users, groups, gateways, and backends via Azure Resource Manager. Triggers: \"API Management\", \"APIM service\", \"create APIM\", \"manage APIs\", \"ApiManagementServiceResource\", \"API policies\", \"APIM products\", \"APIM subscriptions\".\n", + "description": "Management plane SDK for provisioning and managing Azure API Management resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-apimanagement-py", "path": "skills\\azure-mgmt-apimanagement-py", "category": "uncategorized", "name": "azure-mgmt-apimanagement-py", - "description": "Azure API Management SDK for Python. Use for managing APIM services, APIs, products, subscriptions, and policies.\nTriggers: \"azure-mgmt-apimanagement\", \"ApiManagementClient\", \"APIM\", \"API gateway\", \"API Management\".\n", + "description": "Manage Azure API Management services, APIs, products, and policies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-applicationinsights-dotnet", "path": "skills\\azure-mgmt-applicationinsights-dotnet", "category": "uncategorized", "name": "azure-mgmt-applicationinsights-dotnet", - "description": "Azure Application Insights SDK for .NET. Application performance monitoring and observability resource management. Use for creating Application Insights components, web tests, workbooks, analytics items, and API keys. Triggers: \"Application Insights\", \"ApplicationInsights\", \"App Insights\", \"APM\", \"application monitoring\", \"web tests\", \"availability tests\", \"workbooks\".\n", + "description": "Azure Resource Manager SDK for managing Application Insights resources for application performance monitoring.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-arizeaiobservabilityeval-dotnet", "path": "skills\\azure-mgmt-arizeaiobservabilityeval-dotnet", "category": "uncategorized", "name": "azure-mgmt-arizeaiobservabilityeval-dotnet", - "description": "Azure Resource Manager SDK for Arize AI Observability and Evaluation (.NET). Use when managing Arize AI organizations \non Azure via Azure Marketplace, creating/updating/deleting Arize resources, or integrating Arize ML observability \ninto .NET applications. Triggers: \"Arize AI\", \"ML observability\", \"ArizeAIObservabilityEval\", \"Arize organization\".\n", + "description": ".NET SDK for managing Arize AI Observability and Evaluation resources on Azure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-botservice-dotnet", "path": "skills\\azure-mgmt-botservice-dotnet", "category": "uncategorized", "name": "azure-mgmt-botservice-dotnet", - "description": "Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: \"Bot Service\", \"BotResource\", \"Azure Bot\", \"DirectLine channel\", \"Teams channel\", \"bot management .NET\", \"create bot\".\n", + "description": "Management plane SDK for provisioning and managing Azure Bot Service resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-botservice-py", "path": "skills\\azure-mgmt-botservice-py", "category": "uncategorized", "name": "azure-mgmt-botservice-py", - "description": "Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources.\nTriggers: \"azure-mgmt-botservice\", \"AzureBotService\", \"bot management\", \"conversational AI\", \"bot channels\".\n", + "description": "Manage Azure Bot Service resources including bots, channels, and connections.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-fabric-dotnet", "path": "skills\\azure-mgmt-fabric-dotnet", "category": "uncategorized", "name": "azure-mgmt-fabric-dotnet", - "description": "Azure Resource Manager SDK for Fabric in .NET. Use for MANAGEMENT PLANE operations: provisioning, scaling, suspending/resuming Microsoft Fabric capacities, checking name availability, and listing SKUs via Azure Resource Manager. Triggers: \"Fabric capacity\", \"create capacity\", \"suspend capacity\", \"resume capacity\", \"Fabric SKU\", \"provision Fabric\", \"ARM Fabric\", \"FabricCapacityResource\".\n", + "description": "Management plane SDK for provisioning and managing Microsoft Fabric capacity resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-fabric-py", "path": "skills\\azure-mgmt-fabric-py", "category": "uncategorized", "name": "azure-mgmt-fabric-py", - "description": "Azure Fabric Management SDK for Python. Use for managing Microsoft Fabric capacities and resources.\nTriggers: \"azure-mgmt-fabric\", \"FabricMgmtClient\", \"Fabric capacity\", \"Microsoft Fabric\", \"Power BI capacity\".\n", + "description": "Manage Microsoft Fabric capacities and resources programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-mongodbatlas-dotnet", @@ -1410,16 +1566,18 @@ "name": "azure-mgmt-mongodbatlas-dotnet", "description": "Manage MongoDB Atlas Organizations as Azure ARM resources using Azure.ResourceManager.MongoDBAtlas SDK. Use when creating, updating, listing, or deleting MongoDB Atlas organizations through Azure M...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-mgmt-weightsandbiases-dotnet", "path": "skills\\azure-mgmt-weightsandbiases-dotnet", "category": "uncategorized", "name": "azure-mgmt-weightsandbiases-dotnet", - "description": "Azure Weights & Biases SDK for .NET. ML experiment tracking and model management via Azure Marketplace. Use for creating W&B instances, managing SSO, marketplace integration, and ML observability. Triggers: \"Weights and Biases\", \"W&B\", \"WeightsAndBiases\", \"ML experiment tracking\", \"model registry\", \"experiment management\", \"wandb\".\n", + "description": "Azure Resource Manager SDK for deploying and managing Weights & Biases ML experiment tracking instances via Azure Marketplace.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-microsoft-playwright-testing-ts", @@ -1428,52 +1586,58 @@ "name": "azure-microsoft-playwright-testing-ts", "description": "Run Playwright tests at scale using Azure Playwright Workspaces (formerly Microsoft Playwright Testing). Use when scaling browser tests across cloud-hosted browsers, integrating with CI/CD pipeline...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-ingestion-java", "path": "skills\\azure-monitor-ingestion-java", "category": "uncategorized", "name": "azure-monitor-ingestion-java", - "description": "Azure Monitor Ingestion SDK for Java. Send custom logs to Azure Monitor via Data Collection Rules (DCR) and Data Collection Endpoints (DCE).\nTriggers: \"LogsIngestionClient java\", \"azure monitor ingestion java\", \"custom logs java\", \"DCR java\", \"data collection rule java\".\n", + "description": "Client library for sending custom logs to Azure Monitor using the Logs Ingestion API via Data Collection Rules.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-ingestion-py", "path": "skills\\azure-monitor-ingestion-py", "category": "uncategorized", "name": "azure-monitor-ingestion-py", - "description": "Azure Monitor Ingestion SDK for Python. Use for sending custom logs to Log Analytics workspace via Logs Ingestion API.\nTriggers: \"azure-monitor-ingestion\", \"LogsIngestionClient\", \"custom logs\", \"DCR\", \"data collection rule\", \"Log Analytics\".\n", + "description": "Send custom logs to Azure Monitor Log Analytics workspace using the Logs Ingestion API.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-exporter-java", "path": "skills\\azure-monitor-opentelemetry-exporter-java", "category": "uncategorized", "name": "azure-monitor-opentelemetry-exporter-java", - "description": "Azure Monitor OpenTelemetry Exporter for Java. Export OpenTelemetry traces, metrics, and logs to Azure Monitor/Application Insights.\nTriggers: \"AzureMonitorExporter java\", \"opentelemetry azure java\", \"application insights java otel\", \"azure monitor tracing java\".\nNote: This package is DEPRECATED. Migrate to azure-monitor-opentelemetry-autoconfigure.\n", + "description": "> **\u26a0\ufe0f DEPRECATION NOTICE**: This package is deprecated. Migrate to `azure-monitor-opentelemetry-autoconfigure`. > > See [Migration Guide](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/monitor/azure-monitor-opentelemetry-exporter/MIGRATIO", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-exporter-py", "path": "skills\\azure-monitor-opentelemetry-exporter-py", "category": "uncategorized", "name": "azure-monitor-opentelemetry-exporter-py", - "description": "Azure Monitor OpenTelemetry Exporter for Python. Use for low-level OpenTelemetry export to Application Insights.\nTriggers: \"azure-monitor-opentelemetry-exporter\", \"AzureMonitorTraceExporter\", \"AzureMonitorMetricExporter\", \"AzureMonitorLogExporter\".\n", + "description": "Low-level exporter for sending OpenTelemetry traces, metrics, and logs to Application Insights.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-py", "path": "skills\\azure-monitor-opentelemetry-py", "category": "uncategorized", "name": "azure-monitor-opentelemetry-py", - "description": "Azure Monitor OpenTelemetry Distro for Python. Use for one-line Application Insights setup with auto-instrumentation.\nTriggers: \"azure-monitor-opentelemetry\", \"configure_azure_monitor\", \"Application Insights\", \"OpenTelemetry distro\", \"auto-instrumentation\".\n", + "description": "One-line setup for Application Insights with OpenTelemetry auto-instrumentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-opentelemetry-ts", @@ -1482,115 +1646,128 @@ "name": "azure-monitor-opentelemetry-ts", "description": "Instrument applications with Azure Monitor and OpenTelemetry for JavaScript (@azure/monitor-opentelemetry). Use when adding distributed tracing, metrics, and logs to Node.js applications with Appli...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-query-java", "path": "skills\\azure-monitor-query-java", "category": "uncategorized", "name": "azure-monitor-query-java", - "description": "Azure Monitor Query SDK for Java. Execute Kusto queries against Log Analytics workspaces and query metrics from Azure resources.\nTriggers: \"LogsQueryClient java\", \"MetricsQueryClient java\", \"kusto query java\", \"log analytics java\", \"azure monitor query java\".\nNote: This package is deprecated. Migrate to azure-monitor-query-logs and azure-monitor-query-metrics.\n", + "description": "> **DEPRECATION NOTICE**: This package is deprecated in favor of: > - `azure-monitor-query-logs` \u2014 For Log Analytics queries > - `azure-monitor-query-metrics` \u2014 For metrics queries > > See migration guides: [Logs Migration](https://github.com/Azure/a", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-monitor-query-py", "path": "skills\\azure-monitor-query-py", "category": "uncategorized", "name": "azure-monitor-query-py", - "description": "Azure Monitor Query SDK for Python. Use for querying Log Analytics workspaces and Azure Monitor metrics.\nTriggers: \"azure-monitor-query\", \"LogsQueryClient\", \"MetricsQueryClient\", \"Log Analytics\", \"Kusto queries\", \"Azure metrics\".\n", + "description": "Query logs and metrics from Azure Monitor and Log Analytics workspaces.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-postgres-ts", "path": "skills\\azure-postgres-ts", "category": "uncategorized", "name": "azure-postgres-ts", - "description": "Connect to Azure Database for PostgreSQL Flexible Server from Node.js/TypeScript using the pg (node-postgres) package. Use for PostgreSQL queries, connection pooling, transactions, and Microsoft Entra ID (passwordless) authentication. Triggers: \"PostgreSQL\", \"postgres\", \"pg client\", \"node-postgres\", \"Azure PostgreSQL connection\", \"PostgreSQL TypeScript\", \"pg Pool\", \"passwordless postgres\".\n", + "description": "Connect to Azure Database for PostgreSQL Flexible Server using the `pg` (node-postgres) package with support for password and Microsoft Entra ID (passwordless) authentication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-cosmosdb-dotnet", "path": "skills\\azure-resource-manager-cosmosdb-dotnet", "category": "uncategorized", "name": "azure-resource-manager-cosmosdb-dotnet", - "description": "Azure Resource Manager SDK for Cosmos DB in .NET. Use for MANAGEMENT PLANE operations: creating/managing Cosmos DB accounts, databases, containers, throughput settings, and RBAC via Azure Resource Manager. NOT for data plane operations (CRUD on documents) - use Microsoft.Azure.Cosmos for that. Triggers: \"Cosmos DB account\", \"create Cosmos account\", \"manage Cosmos resources\", \"ARM Cosmos\", \"CosmosDBAccountResource\", \"provision Cosmos DB\".\n", + "description": "Management plane SDK for provisioning and managing Azure Cosmos DB resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-durabletask-dotnet", "path": "skills\\azure-resource-manager-durabletask-dotnet", "category": "uncategorized", "name": "azure-resource-manager-durabletask-dotnet", - "description": "Azure Resource Manager SDK for Durable Task Scheduler in .NET. Use for MANAGEMENT PLANE operations: creating/managing Durable Task Schedulers, Task Hubs, and retention policies via Azure Resource Manager. Triggers: \"Durable Task Scheduler\", \"create scheduler\", \"task hub\", \"DurableTaskSchedulerResource\", \"provision Durable Task\", \"orchestration scheduler\".\n", + "description": "Management plane SDK for provisioning and managing Azure Durable Task Scheduler resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-mysql-dotnet", "path": "skills\\azure-resource-manager-mysql-dotnet", "category": "uncategorized", "name": "azure-resource-manager-mysql-dotnet", - "description": "Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: \"MySQL\", \"MySqlFlexibleServer\", \"MySQL Flexible Server\", \"Azure Database for MySQL\", \"MySQL database management\", \"MySQL firewall\", \"MySQL backup\".\n", + "description": "Azure Resource Manager SDK for managing MySQL Flexible Server deployments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-playwright-dotnet", "path": "skills\\azure-resource-manager-playwright-dotnet", "category": "uncategorized", "name": "azure-resource-manager-playwright-dotnet", - "description": "Azure Resource Manager SDK for Microsoft Playwright Testing in .NET. Use for MANAGEMENT PLANE operations: creating/managing Playwright Testing workspaces, checking name availability, and managing workspace quotas via Azure Resource Manager. NOT for running Playwright tests - use Azure.Developer.MicrosoftPlaywrightTesting.NUnit for that. Triggers: \"Playwright workspace\", \"create Playwright Testing workspace\", \"manage Playwright resources\", \"ARM Playwright\", \"PlaywrightWorkspaceResource\", \"provision Playwright Testing\".\n", + "description": "Management plane SDK for provisioning and managing Microsoft Playwright Testing workspaces via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-postgresql-dotnet", "path": "skills\\azure-resource-manager-postgresql-dotnet", "category": "uncategorized", "name": "azure-resource-manager-postgresql-dotnet", - "description": "Azure PostgreSQL Flexible Server SDK for .NET. Database management for PostgreSQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: \"PostgreSQL\", \"PostgreSqlFlexibleServer\", \"PostgreSQL Flexible Server\", \"Azure Database for PostgreSQL\", \"PostgreSQL database management\", \"PostgreSQL firewall\", \"PostgreSQL backup\", \"Postgres\".\n", + "description": "Azure Resource Manager SDK for managing PostgreSQL Flexible Server deployments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-redis-dotnet", "path": "skills\\azure-resource-manager-redis-dotnet", "category": "uncategorized", "name": "azure-resource-manager-redis-dotnet", - "description": "Azure Resource Manager SDK for Redis in .NET. Use for MANAGEMENT PLANE operations: creating/managing Azure Cache for Redis instances, firewall rules, access keys, patch schedules, linked servers (geo-replication), and private endpoints via Azure Resource Manager. NOT for data plane operations (get/set keys, pub/sub) - use StackExchange.Redis for that. Triggers: \"Redis cache\", \"create Redis\", \"manage Redis\", \"ARM Redis\", \"RedisResource\", \"provision Redis\", \"Azure Cache for Redis\".\n", + "description": "Management plane SDK for provisioning and managing Azure Cache for Redis resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-resource-manager-sql-dotnet", "path": "skills\\azure-resource-manager-sql-dotnet", "category": "uncategorized", "name": "azure-resource-manager-sql-dotnet", - "description": "Azure Resource Manager SDK for Azure SQL in .NET. Use for MANAGEMENT PLANE operations: creating/managing SQL servers, databases, elastic pools, firewall rules, and failover groups via Azure Resource Manager. NOT for data plane operations (executing queries) - use Microsoft.Data.SqlClient for that. Triggers: \"SQL server\", \"create SQL database\", \"manage SQL resources\", \"ARM SQL\", \"SqlServerResource\", \"provision Azure SQL\", \"elastic pool\", \"firewall rule\".\n", + "description": "Management plane SDK for provisioning and managing Azure SQL resources via Azure Resource Manager.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-search-documents-dotnet", "path": "skills\\azure-search-documents-dotnet", "category": "uncategorized", "name": "azure-search-documents-dotnet", - "description": "Azure AI Search SDK for .NET (Azure.Search.Documents). Use for building search applications with full-text, vector, semantic, and hybrid search. Covers SearchClient (queries, document CRUD), SearchIndexClient (index management), and SearchIndexerClient (indexers, skillsets). Triggers: \"Azure Search .NET\", \"SearchClient\", \"SearchIndexClient\", \"vector search C#\", \"semantic search .NET\", \"hybrid search\", \"Azure.Search.Documents\".\n", + "description": "Build search applications with full-text, vector, semantic, and hybrid search capabilities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-search-documents-py", "path": "skills\\azure-search-documents-py", "category": "uncategorized", "name": "azure-search-documents-py", - "description": "Azure AI Search SDK for Python. Use for vector search, hybrid search, semantic ranking, indexing, and skillsets.\nTriggers: \"azure-search-documents\", \"SearchClient\", \"SearchIndexClient\", \"vector search\", \"hybrid search\", \"semantic search\".\n", + "description": "Full-text, vector, and hybrid search with AI enrichment capabilities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-search-documents-ts", @@ -1599,16 +1776,18 @@ "name": "azure-search-documents-ts", "description": "Build search applications using Azure AI Search SDK for JavaScript (@azure/search-documents). Use when creating/managing indexes, implementing vector/hybrid search, semantic ranking, or building ag...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-security-keyvault-keys-dotnet", "path": "skills\\azure-security-keyvault-keys-dotnet", "category": "uncategorized", "name": "azure-security-keyvault-keys-dotnet", - "description": "Azure Key Vault Keys SDK for .NET. Client library for managing cryptographic keys in Azure Key Vault and Managed HSM. Use for key creation, rotation, encryption, decryption, signing, and verification. Triggers: \"Key Vault keys\", \"KeyClient\", \"CryptographyClient\", \"RSA key\", \"EC key\", \"encrypt decrypt .NET\", \"key rotation\", \"HSM\".\n", + "description": "Client library for managing cryptographic keys in Azure Key Vault and Managed HSM.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-security-keyvault-keys-java", @@ -1617,7 +1796,8 @@ "name": "azure-security-keyvault-keys-java", "description": "Azure Key Vault Keys Java SDK for cryptographic key management. Use when creating, managing, or using RSA/EC keys, performing encrypt/decrypt/sign/verify operations, or working with HSM-backed keys.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-security-keyvault-secrets-java", @@ -1626,25 +1806,28 @@ "name": "azure-security-keyvault-secrets-java", "description": "Azure Key Vault Secrets Java SDK for secret management. Use when storing, retrieving, or managing passwords, API keys, connection strings, or other sensitive configuration data.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-servicebus-dotnet", "path": "skills\\azure-servicebus-dotnet", "category": "uncategorized", "name": "azure-servicebus-dotnet", - "description": "Azure Service Bus SDK for .NET. Enterprise messaging with queues, topics, subscriptions, and sessions. Use for reliable message delivery, pub/sub patterns, dead letter handling, and background processing. Triggers: \"Service Bus\", \"ServiceBusClient\", \"ServiceBusSender\", \"ServiceBusReceiver\", \"ServiceBusProcessor\", \"message queue\", \"pub/sub .NET\", \"dead letter queue\".\n", + "description": "Enterprise messaging SDK for reliable message delivery with queues, topics, subscriptions, and sessions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-servicebus-py", "path": "skills\\azure-servicebus-py", "category": "uncategorized", "name": "azure-servicebus-py", - "description": "Azure Service Bus SDK for Python messaging. Use for queues, topics, subscriptions, and enterprise messaging patterns.\nTriggers: \"service bus\", \"ServiceBusClient\", \"queue\", \"topic\", \"subscription\", \"message broker\".\n", + "description": "Enterprise messaging for reliable cloud communication with queues and pub/sub topics.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-servicebus-ts", @@ -1653,16 +1836,18 @@ "name": "azure-servicebus-ts", "description": "Build messaging applications using Azure Service Bus SDK for JavaScript (@azure/service-bus). Use when implementing queues, topics/subscriptions, message sessions, dead-letter handling, or enterpri...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-speech-to-text-rest-py", "path": "skills\\azure-speech-to-text-rest-py", "category": "uncategorized", "name": "azure-speech-to-text-rest-py", - "description": "Azure Speech to Text REST API for short audio (Python). Use for simple speech recognition of audio files up to 60 seconds without the Speech SDK.\nTriggers: \"speech to text REST\", \"short audio transcription\", \"speech recognition REST API\", \"STT REST\", \"recognize speech REST\".\nDO NOT USE FOR: Long audio (>60 seconds), real-time streaming, batch transcription, custom speech models, speech translation. Use Speech SDK or Batch Transcription API instead.\n", + "description": "Simple REST API for speech-to-text transcription of short audio files (up to 60 seconds). No SDK required - just HTTP requests.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-java", @@ -1671,79 +1856,88 @@ "name": "azure-storage-blob-java", "description": "Build blob storage applications with Azure Storage Blob SDK for Java. Use when uploading, downloading, or managing files in Azure Blob Storage, working with containers, or implementing streaming da...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-py", "path": "skills\\azure-storage-blob-py", "category": "uncategorized", "name": "azure-storage-blob-py", - "description": "Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.\nTriggers: \"blob storage\", \"BlobServiceClient\", \"ContainerClient\", \"BlobClient\", \"upload blob\", \"download blob\".\n", + "description": "Client library for Azure Blob Storage \u2014 object storage for unstructured data.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-rust", "path": "skills\\azure-storage-blob-rust", "category": "uncategorized", "name": "azure-storage-blob-rust", - "description": "Azure Blob Storage SDK for Rust. Use for uploading, downloading, and managing blobs and containers.\nTriggers: \"blob storage rust\", \"BlobClient rust\", \"upload blob rust\", \"download blob rust\", \"container rust\".\n", + "description": "Client library for Azure Blob Storage \u2014 Microsoft's object storage solution for the cloud.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-blob-ts", "path": "skills\\azure-storage-blob-ts", "category": "uncategorized", "name": "azure-storage-blob-ts", - "description": "Azure Blob Storage JavaScript/TypeScript SDK (@azure/storage-blob) for blob operations. Use for uploading, downloading, listing, and managing blobs and containers. Supports block blobs, append blobs, page blobs, SAS tokens, and streaming. Triggers: \"blob storage\", \"@azure/storage-blob\", \"BlobServiceClient\", \"ContainerClient\", \"upload blob\", \"download blob\", \"SAS token\", \"block blob\".\n", + "description": "SDK for Azure Blob Storage operations \u2014 upload, download, list, and manage blobs and containers.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-file-datalake-py", "path": "skills\\azure-storage-file-datalake-py", "category": "uncategorized", "name": "azure-storage-file-datalake-py", - "description": "Azure Data Lake Storage Gen2 SDK for Python. Use for hierarchical file systems, big data analytics, and file/directory operations.\nTriggers: \"data lake\", \"DataLakeServiceClient\", \"FileSystemClient\", \"ADLS Gen2\", \"hierarchical namespace\".\n", + "description": "Hierarchical file system for big data analytics workloads.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-file-share-py", "path": "skills\\azure-storage-file-share-py", "category": "uncategorized", "name": "azure-storage-file-share-py", - "description": "Azure Storage File Share SDK for Python. Use for SMB file shares, directories, and file operations in the cloud.\nTriggers: \"azure-storage-file-share\", \"ShareServiceClient\", \"ShareClient\", \"file share\", \"SMB\".\n", + "description": "Manage SMB file shares for cloud-native and lift-and-shift scenarios.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-file-share-ts", "path": "skills\\azure-storage-file-share-ts", "category": "uncategorized", "name": "azure-storage-file-share-ts", - "description": "Azure File Share JavaScript/TypeScript SDK (@azure/storage-file-share) for SMB file share operations. Use for creating shares, managing directories, uploading/downloading files, and handling file metadata. Supports Azure Files SMB protocol scenarios. Triggers: \"file share\", \"@azure/storage-file-share\", \"ShareServiceClient\", \"ShareClient\", \"SMB\", \"Azure Files\".\n", + "description": "SDK for Azure File Share operations \u2014 SMB file shares, directories, and file operations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-queue-py", "path": "skills\\azure-storage-queue-py", "category": "uncategorized", "name": "azure-storage-queue-py", - "description": "Azure Queue Storage SDK for Python. Use for reliable message queuing, task distribution, and asynchronous processing.\nTriggers: \"queue storage\", \"QueueServiceClient\", \"QueueClient\", \"message queue\", \"dequeue\".\n", + "description": "Simple, cost-effective message queuing for asynchronous communication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-storage-queue-ts", "path": "skills\\azure-storage-queue-ts", "category": "uncategorized", "name": "azure-storage-queue-ts", - "description": "Azure Queue Storage JavaScript/TypeScript SDK (@azure/storage-queue) for message queue operations. Use for sending, receiving, peeking, and deleting messages in queues. Supports visibility timeout, message encoding, and batch operations. Triggers: \"queue storage\", \"@azure/storage-queue\", \"QueueServiceClient\", \"QueueClient\", \"send message\", \"receive message\", \"dequeue\", \"visibility timeout\".\n", + "description": "SDK for Azure Queue Storage operations \u2014 send, receive, peek, and manage messages in queues.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "azure-web-pubsub-ts", @@ -1752,16 +1946,18 @@ "name": "azure-web-pubsub-ts", "description": "Build real-time messaging applications using Azure Web PubSub SDKs for JavaScript (@azure/web-pubsub, @azure/web-pubsub-client). Use when implementing WebSocket-based real-time features, pub/sub me...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-architect", "path": "skills\\backend-architect", "category": "uncategorized", "name": "backend-architect", - "description": "Expert backend architect specializing in scalable API design,\nmicroservices architecture, and distributed systems. Masters REST/GraphQL/gRPC\nAPIs, event-driven architectures, service mesh patterns, and modern backend\nframeworks. Handles service boundary definition, inter-service communication,\nresilience patterns, and observability. Use PROACTIVELY when creating new\nbackend services or APIs.\n", + "description": "You are a backend system architect specializing in scalable, resilient, and maintainable backend systems and APIs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-dev-guidelines", @@ -1770,7 +1966,8 @@ "name": "backend-dev-guidelines", "description": "Opinionated backend development standards for Node.js + Express + TypeScript microservices. Covers layered architecture, BaseController pattern, dependency injection, Prisma repositories, Zod valid...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-development-feature-development", @@ -1779,16 +1976,18 @@ "name": "backend-development-feature-development", "description": "Orchestrate end-to-end backend feature development from requirements to deployment. Use when coordinating multi-phase feature delivery across teams and services.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backend-security-coder", "path": "skills\\backend-security-coder", "category": "uncategorized", "name": "backend-security-coder", - "description": "Expert in secure backend coding practices specializing in input\nvalidation, authentication, and API security. Use PROACTIVELY for backend\nsecurity implementations or security code reviews.\n", + "description": "- Working on backend security coder tasks or workflows - Needing guidance, best practices, or checklists for backend security coder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "backtesting-frameworks", @@ -1797,7 +1996,8 @@ "name": "backtesting-frameworks", "description": "Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strateg...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bamboohr-automation", @@ -1806,7 +2006,8 @@ "name": "bamboohr-automation", "description": "Automate BambooHR tasks via Rube MCP (Composio): employees, time-off, benefits, dependents, employee updates. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "base", @@ -1815,7 +2016,8 @@ "name": "base", "description": "Database management, forms, reports, and data operations with LibreOffice Base.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "basecamp-automation", @@ -1824,7 +2026,8 @@ "name": "basecamp-automation", "description": "Automate Basecamp project management, to-dos, messages, people, and to-do list organization via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-defensive-patterns", @@ -1833,7 +2036,8 @@ "name": "bash-defensive-patterns", "description": "Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-linux", @@ -1842,16 +2046,18 @@ "name": "bash-linux", "description": "Bash/Linux terminal patterns. Critical commands, piping, error handling, scripting. Use when working on macOS or Linux systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-pro", "path": "skills\\bash-pro", "category": "uncategorized", "name": "bash-pro", - "description": "Master of defensive Bash scripting for production automation, CI/CD\npipelines, and system utilities. Expert in safe, portable, and testable shell\nscripts.\n", + "description": "- Writing or reviewing Bash scripts for automation, CI/CD, or ops - Hardening shell scripts for safety and portability", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bash-scripting", @@ -1860,7 +2066,8 @@ "name": "bash-scripting", "description": "Bash scripting workflow for creating production-ready shell scripts with defensive patterns, error handling, and testing.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "bats-testing-patterns", @@ -1869,7 +2076,8 @@ "name": "bats-testing-patterns", "description": "Master Bash Automated Testing System (Bats) for comprehensive shell script testing. Use when writing tests for shell scripts, CI/CD pipelines, or requiring test-driven development of shell utilities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bazel-build-optimization", @@ -1878,7 +2086,8 @@ "name": "bazel-build-optimization", "description": "Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "beautiful-prose", @@ -1887,7 +2096,8 @@ "name": "beautiful-prose", "description": "Hard-edged writing style contract for timeless, forceful English prose without AI tics", "risk": "safe", - "source": "https://github.com/SHADOWPR0/beautiful_prose" + "source": "https://github.com/SHADOWPR0/beautiful_prose", + "date_added": "2025-02-26" }, { "id": "behavioral-modes", @@ -1896,7 +2106,8 @@ "name": "behavioral-modes", "description": "AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Use to adapt behavior based on task type.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bevy-ecs-expert", @@ -1905,7 +2116,8 @@ "name": "bevy-ecs-expert", "description": "Master Bevy's Entity Component System (ECS) in Rust, covering Systems, Queries, Resources, and parallel scheduling.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "billing-automation", @@ -1914,7 +2126,8 @@ "name": "billing-automation", "description": "Build automated billing systems for recurring payments, invoicing, subscription lifecycle, and dunning management. Use when implementing subscription billing, automating invoicing, or managing recu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "binary-analysis-patterns", @@ -1923,7 +2136,8 @@ "name": "binary-analysis-patterns", "description": "Master binary analysis patterns including disassembly, decompilation, control flow analysis, and code pattern recognition. Use when analyzing executables, understanding compiled code, or performing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "bitbucket-automation", @@ -1932,16 +2146,18 @@ "name": "bitbucket-automation", "description": "Automate Bitbucket repositories, pull requests, branches, issues, and workspace management via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "blockchain-developer", "path": "skills\\blockchain-developer", "category": "uncategorized", "name": "blockchain-developer", - "description": "Build production-ready Web3 applications, smart contracts, and\ndecentralized systems. Implements DeFi protocols, NFT platforms, DAOs, and\nenterprise blockchain integrations. Use PROACTIVELY for smart contracts, Web3\napps, DeFi protocols, or blockchain infrastructure.\n", + "description": "- Working on blockchain developer tasks or workflows - Needing guidance, best practices, or checklists for blockchain developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "blockrun", @@ -1950,7 +2166,8 @@ "name": "blockrun", "description": "Use when user needs capabilities Claude lacks (image generation, real-time X/Twitter data) or explicitly requests external models (\\\"blockrun\\\", \\\"use grok\\\", \\\"use gpt\\\", \\\"da...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "box-automation", @@ -1959,7 +2176,8 @@ "name": "box-automation", "description": "Automate Box cloud storage operations including file upload/download, search, folder management, sharing, collaborations, and metadata queries via Rube MCP (Composio). Always search tools first for...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brainstorming", @@ -1968,7 +2186,8 @@ "name": "brainstorming", "description": "Use before creative or constructive work (features, architecture, behavior). Transforms vague ideas into validated designs through disciplined reasoning and collaboration.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brand-guidelines-anthropic", @@ -1977,7 +2196,8 @@ "name": "brand-guidelines-anthropic", "description": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatt...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brand-guidelines-community", @@ -1986,7 +2206,8 @@ "name": "brand-guidelines-community", "description": "Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatt...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "brevo-automation", @@ -1995,7 +2216,8 @@ "name": "brevo-automation", "description": "Automate Brevo (Sendinblue) tasks via Rube MCP (Composio): manage email campaigns, create/edit templates, track senders, and monitor campaign performance. Always search tools first for current sche...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "broken-authentication", @@ -2004,7 +2226,8 @@ "name": "broken-authentication", "description": "This skill should be used when the user asks to \"test for broken authentication vulnerabilities\", \"assess session management security\", \"perform credential stuffing tests\", \"evaluate ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "browser-automation", @@ -2013,7 +2236,8 @@ "name": "browser-automation", "description": "Browser automation powers web testing, scraping, and AI agent interactions. The difference between a flaky script and a reliable system comes down to understanding selectors, waiting strategies, an...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "browser-extension-builder", @@ -2022,7 +2246,8 @@ "name": "browser-extension-builder", "description": "Expert in building browser extensions that solve real problems - Chrome, Firefox, and cross-browser extensions. Covers extension architecture, manifest v3, content scripts, popup UIs, monetization ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "bullmq-specialist", @@ -2031,7 +2256,8 @@ "name": "bullmq-specialist", "description": "BullMQ expert for Redis-backed job queues, background processing, and reliable async execution in Node.js/TypeScript applications. Use when: bullmq, bull queue, redis queue, background job, job queue.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "bun-development", @@ -2040,7 +2266,8 @@ "name": "bun-development", "description": "Modern JavaScript/TypeScript development with Bun runtime. Covers package management, bundling, testing, and migration from Node.js. Use when working with Bun, optimizing JS/TS development speed, o...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "burp-suite-testing", @@ -2049,16 +2276,18 @@ "name": "burp-suite-testing", "description": "This skill should be used when the user asks to \"intercept HTTP traffic\", \"modify web requests\", \"use Burp Suite for testing\", \"perform web vulnerability scanning\", \"test with Burp ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "business-analyst", "path": "skills\\business-analyst", "category": "uncategorized", "name": "business-analyst", - "description": "Master modern business analysis with AI-powered analytics,\nreal-time dashboards, and data-driven insights. Build comprehensive KPI\nframeworks, predictive models, and strategic recommendations. Use PROACTIVELY\nfor business intelligence or strategic analysis.\n", + "description": "- Working on business analyst tasks or workflows - Needing guidance, best practices, or checklists for business analyst", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "busybox-on-windows", @@ -2067,16 +2296,18 @@ "name": "busybox-on-windows", "description": "How to use a Win32 build of BusyBox to run many of the standard UNIX command line tools on Windows.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c-pro", "path": "skills\\c-pro", "category": "uncategorized", "name": "c-pro", - "description": "Write efficient C code with proper memory management, pointer arithmetic, and system calls. Handles embedded systems, kernel modules, and performance-critical code. Use PROACTIVELY for C optimization, memory issues, or system programming.", + "description": "Write efficient C code with proper memory management, pointer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-architecture-c4-architecture", @@ -2085,43 +2316,48 @@ "name": "c4-architecture-c4-architecture", "description": "Generate comprehensive C4 architecture documentation for an existing repository/codebase using a bottom-up analysis approach.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-code", "path": "skills\\c4-code", "category": "uncategorized", "name": "c4-code", - "description": "Expert C4 Code-level documentation specialist. Analyzes code\ndirectories to create comprehensive C4 code-level documentation including\nfunction signatures, arguments, dependencies, and code structure. Use when\ndocumenting code at the lowest C4 level for individual directories and code\nmodules.\n", + "description": "- Working on c4 code level: [directory name] tasks or workflows - Needing guidance, best practices, or checklists for c4 code level: [directory name]", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-component", "path": "skills\\c4-component", "category": "uncategorized", "name": "c4-component", - "description": "Expert C4 Component-level documentation specialist. Synthesizes C4\nCode-level documentation into Component-level architecture, defining component\nboundaries, interfaces, and relationships. Creates component diagrams and\ndocumentation. Use when synthesizing code-level documentation into logical\ncomponents.\n", + "description": "- Working on c4 component level: [component name] tasks or workflows - Needing guidance, best practices, or checklists for c4 component level: [component name]", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-container", "path": "skills\\c4-container", "category": "uncategorized", "name": "c4-container", - "description": "Expert C4 Container-level documentation specialist. Synthesizes\nComponent-level documentation into Container-level architecture, mapping\ncomponents to deployment units, documenting container interfaces as APIs, and\ncreating container diagrams. Use when synthesizing components into deployment\ncontainers and documenting system deployment architecture.\n", + "description": "- Working on c4 container level: system deployment tasks or workflows - Needing guidance, best practices, or checklists for c4 container level: system deployment", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "c4-context", "path": "skills\\c4-context", "category": "uncategorized", "name": "c4-context", - "description": "Expert C4 Context-level documentation specialist. Creates\nhigh-level system context diagrams, documents personas, user journeys, system\nfeatures, and external dependencies. Synthesizes container and component\ndocumentation with system documentation to create comprehensive context-level\narchitecture. Use when creating the highest-level C4 system context\ndocumentation.\n", + "description": "- Working on c4 context level: system context tasks or workflows - Needing guidance, best practices, or checklists for c4 context level: system context", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cal-com-automation", @@ -2130,7 +2366,8 @@ "name": "cal-com-automation", "description": "Automate Cal.com tasks via Rube MCP (Composio): manage bookings, check availability, configure webhooks, and handle teams. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "calc", @@ -2139,7 +2376,8 @@ "name": "calc", "description": "Spreadsheet creation, format conversion (ODS/XLSX/CSV), formulas, data automation with LibreOffice Calc.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "calendly-automation", @@ -2148,7 +2386,8 @@ "name": "calendly-automation", "description": "Automate Calendly scheduling, event management, invitee tracking, availability checks, and organization administration via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "canva-automation", @@ -2157,7 +2396,8 @@ "name": "canva-automation", "description": "Automate Canva tasks via Rube MCP (Composio): designs, exports, folders, brand templates, autofill. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "canvas-design", @@ -2166,16 +2406,18 @@ "name": "canvas-design", "description": "Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "carrier-relationship-management", "path": "skills\\carrier-relationship-management", "category": "uncategorized", "name": "carrier-relationship-management", - "description": "Codified expertise for managing carrier portfolios, negotiating freight rates, tracking carrier performance, allocating freight, and maintaining strategic carrier relationships. Informed by transportation managers with 15+ years experience. Includes scorecarding frameworks, RFP processes, market intelligence, and compliance vetting. Use when managing carriers, negotiating rates, evaluating carrier performance, or building freight strategies.\n", + "description": "Use this skill when building and managing a carrier network, conducting freight RFPs, negotiating linehaul and accessorial rates, tracking carrier KPIs via scorecards, or ensuring regulatory compliance of transportation partners.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "cc-skill-backend-patterns", @@ -2184,7 +2426,8 @@ "name": "cc-skill-backend-patterns", "description": "Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-clickhouse-io", @@ -2193,7 +2436,8 @@ "name": "cc-skill-clickhouse-io", "description": "ClickHouse database patterns, query optimization, analytics, and data engineering best practices for high-performance analytical workloads.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-coding-standards", @@ -2202,7 +2446,8 @@ "name": "cc-skill-coding-standards", "description": "Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-continuous-learning", @@ -2211,7 +2456,8 @@ "name": "cc-skill-continuous-learning", "description": "Development skill from everything-claude-code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-frontend-patterns", @@ -2220,7 +2466,8 @@ "name": "cc-skill-frontend-patterns", "description": "Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-project-guidelines-example", @@ -2229,7 +2476,8 @@ "name": "cc-skill-project-guidelines-example", "description": "Project Guidelines Skill (Example)", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-security-review", @@ -2238,7 +2486,8 @@ "name": "cc-skill-security-review", "description": "Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist a...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cc-skill-strategic-compact", @@ -2247,7 +2496,8 @@ "name": "cc-skill-strategic-compact", "description": "Development skill from everything-claude-code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cdk-patterns", @@ -2256,7 +2506,8 @@ "name": "cdk-patterns", "description": "Common AWS CDK patterns and constructs for building cloud infrastructure with TypeScript, Python, or Java. Use when designing reusable CDK stacks and L3 constructs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "changelog-automation", @@ -2265,7 +2516,8 @@ "name": "changelog-automation", "description": "Automate changelog generation from commits, PRs, and releases following Keep a Changelog format. Use when setting up release workflows, generating release notes, or standardizing commit conventions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "chrome-extension-developer", @@ -2274,7 +2526,8 @@ "name": "chrome-extension-developer", "description": "Expert in building Chrome Extensions using Manifest V3. Covers background scripts, service workers, content scripts, and cross-context communication.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cicd-automation-workflow-automate", @@ -2283,7 +2536,8 @@ "name": "cicd-automation-workflow-automate", "description": "You are a workflow automation expert specializing in creating efficient CI/CD pipelines, GitHub Actions workflows, and automated development processes. Design automation that reduces manual work, i...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "circleci-automation", @@ -2292,7 +2546,8 @@ "name": "circleci-automation", "description": "Automate CircleCI tasks via Rube MCP (Composio): trigger pipelines, monitor workflows/jobs, retrieve artifacts and test metadata. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "clarity-gate", @@ -2301,7 +2556,8 @@ "name": "clarity-gate", "description": "Pre-ingestion verification for epistemic quality in RAG systems with 9-point verification and Two-Round HITL workflow", "risk": "safe", - "source": "https://github.com/frmoretto/clarity-gate" + "source": "https://github.com/frmoretto/clarity-gate", + "date_added": "2025-02-26" }, { "id": "claude-ally-health", @@ -2310,7 +2566,8 @@ "name": "claude-ally-health", "description": "A health assistant skill for medical information analysis, symptom tracking, and wellness guidance.", "risk": "safe", - "source": "https://github.com/huifer/Claude-Ally-Health" + "source": "https://github.com/huifer/Claude-Ally-Health", + "date_added": "2025-02-26" }, { "id": "claude-code-guide", @@ -2319,7 +2576,8 @@ "name": "claude-code-guide", "description": "Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies \\\"Thinking\\\" keywords, debugging techniques, and best practices for interacting wit...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "claude-d3js-skill", @@ -2328,7 +2586,8 @@ "name": "claude-d3js-skill", "description": "Creating interactive data visualisations using d3.js. This skill should be used when creating custom charts, graphs, network diagrams, geographic visualisations, or any complex SVG-based data visua...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "claude-scientific-skills", @@ -2337,7 +2596,8 @@ "name": "claude-scientific-skills", "description": "Scientific research and analysis skills", "risk": "safe", - "source": "https://github.com/K-Dense-AI/claude-scientific-skills" + "source": "https://github.com/K-Dense-AI/claude-scientific-skills", + "date_added": "2025-02-26" }, { "id": "claude-speed-reader", @@ -2346,7 +2606,8 @@ "name": "claude-speed-reader", "description": "-Speed read Claude's responses at 600+ WPM using RSVP with Spritz-style ORP highlighting", "risk": "safe", - "source": "https://github.com/SeanZoR/claude-speed-reader" + "source": "https://github.com/SeanZoR/claude-speed-reader", + "date_added": "2025-02-26" }, { "id": "claude-win11-speckit-update-skill", @@ -2355,7 +2616,8 @@ "name": "claude-win11-speckit-update-skill", "description": "Windows 11 system management", "risk": "safe", - "source": "https://github.com/NotMyself/claude-win11-speckit-update-skill" + "source": "https://github.com/NotMyself/claude-win11-speckit-update-skill", + "date_added": "2025-02-26" }, { "id": "clean-code", @@ -2364,7 +2626,8 @@ "name": "clean-code", "description": "Applies principles from Robert C. Martin's 'Clean Code'. Use this skill when writing, reviewing, or refactoring code to ensure high quality, readability, and maintainability. Covers naming, functio...", "risk": "safe", - "source": "ClawForge (https://github.com/jackjin1997/ClawForge)" + "source": "ClawForge (https://github.com/jackjin1997/ClawForge)", + "date_added": "2025-02-26" }, { "id": "clerk-auth", @@ -2373,7 +2636,8 @@ "name": "clerk-auth", "description": "Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync Use when: adding authentication, clerk auth, user authentication, sign in, sign up.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "clickup-automation", @@ -2382,7 +2646,8 @@ "name": "clickup-automation", "description": "Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "close-automation", @@ -2391,16 +2656,18 @@ "name": "close-automation", "description": "Automate Close CRM tasks via Rube MCP (Composio): create leads, manage calls/SMS, handle tasks, and track notes. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloud-architect", "path": "skills\\cloud-architect", "category": "uncategorized", "name": "cloud-architect", - "description": "Expert cloud architect specializing in AWS/Azure/GCP multi-cloud\ninfrastructure design, advanced IaC (Terraform/OpenTofu/CDK), FinOps cost\noptimization, and modern architectural patterns. Masters serverless,\nmicroservices, security, compliance, and disaster recovery. Use PROACTIVELY\nfor cloud architecture, cost optimization, migration planning, or multi-cloud\nstrategies.\n", + "description": "- Working on cloud architect tasks or workflows - Needing guidance, best practices, or checklists for cloud architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloud-devops", @@ -2409,7 +2676,8 @@ "name": "cloud-devops", "description": "Cloud infrastructure and DevOps workflow covering AWS, Azure, GCP, Kubernetes, Terraform, CI/CD, monitoring, and cloud-native development.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "cloud-penetration-testing", @@ -2418,7 +2686,8 @@ "name": "cloud-penetration-testing", "description": "This skill should be used when the user asks to \"perform cloud penetration testing\", \"assess Azure or AWS or GCP security\", \"enumerate cloud resources\", \"exploit cloud misconfiguratio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloudflare-workers-expert", @@ -2427,7 +2696,8 @@ "name": "cloudflare-workers-expert", "description": "Expert in Cloudflare Workers and the Edge Computing ecosystem. Covers Wrangler, KV, D1, Durable Objects, and R2 storage.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cloudformation-best-practices", @@ -2436,7 +2706,8 @@ "name": "cloudformation-best-practices", "description": "CloudFormation template optimization, nested stacks, drift detection, and production-ready patterns. Use when writing or reviewing CF templates.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "coda-automation", @@ -2445,7 +2716,8 @@ "name": "coda-automation", "description": "Automate Coda tasks via Rube MCP (Composio): manage docs, pages, tables, rows, formulas, permissions, and publishing. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-documentation-code-explain", @@ -2454,7 +2726,8 @@ "name": "code-documentation-code-explain", "description": "You are a code education expert specializing in explaining complex code through clear narratives, visual diagrams, and step-by-step breakdowns. Transform difficult concepts into understandable expl...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-documentation-doc-generate", @@ -2463,7 +2736,8 @@ "name": "code-documentation-doc-generate", "description": "You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-refactoring-context-restore", @@ -2472,7 +2746,8 @@ "name": "code-refactoring-context-restore", "description": "Use when working with code refactoring context restore", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-refactoring-refactor-clean", @@ -2481,7 +2756,8 @@ "name": "code-refactoring-refactor-clean", "description": "You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-refactoring-tech-debt", @@ -2490,7 +2766,8 @@ "name": "code-refactoring-tech-debt", "description": "You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create acti", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-review-ai-ai-review", @@ -2499,7 +2776,8 @@ "name": "code-review-ai-ai-review", "description": "You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, C", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-review-checklist", @@ -2508,7 +2786,8 @@ "name": "code-review-checklist", "description": "Comprehensive checklist for conducting thorough code reviews covering functionality, security, performance, and maintainability", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-review-excellence", @@ -2517,16 +2796,18 @@ "name": "code-review-excellence", "description": "Master effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "code-reviewer", "path": "skills\\code-reviewer", "category": "uncategorized", "name": "code-reviewer", - "description": "Elite code review expert specializing in modern AI-powered code analysis, security vulnerabilities, performance optimization, and production reliability. Masters static analysis tools, security scanning, and configuration review with 2024/2025 best practices. Use PROACTIVELY for code quality assurance.", + "description": "Elite code review expert specializing in modern AI-powered code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codebase-cleanup-deps-audit", @@ -2535,7 +2816,8 @@ "name": "codebase-cleanup-deps-audit", "description": "You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codebase-cleanup-refactor-clean", @@ -2544,7 +2826,8 @@ "name": "codebase-cleanup-refactor-clean", "description": "You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codebase-cleanup-tech-debt", @@ -2553,7 +2836,8 @@ "name": "codebase-cleanup-tech-debt", "description": "You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create acti", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "codex-review", @@ -2562,7 +2846,8 @@ "name": "codex-review", "description": "Professional code review with auto CHANGELOG generation, integrated with Codex AI", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "commit", @@ -2571,16 +2856,18 @@ "name": "commit", "description": "Create commit messages following Sentry conventions. Use when committing code changes, writing commit messages, or formatting git history. Follows conventional commits with Sentry-specific issue re...", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/commit" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/commit", + "date_added": "2025-02-26" }, { "id": "competitive-landscape", "path": "skills\\competitive-landscape", "category": "uncategorized", "name": "competitive-landscape", - "description": "This skill should be used when the user asks to \\\\\\\"analyze\ncompetitors\", \"assess competitive landscape\", \"identify differentiation\",\n\"evaluate market positioning\", \"apply Porter's Five Forces\", or requests\ncompetitive strategy analysis.\n", + "description": "Comprehensive frameworks for analyzing competition, identifying differentiation opportunities, and developing winning market positioning strategies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "competitor-alternatives", @@ -2589,7 +2876,8 @@ "name": "competitor-alternatives", "description": "When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'compa...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "comprehensive-review-full-review", @@ -2598,7 +2886,8 @@ "name": "comprehensive-review-full-review", "description": "Use when working with comprehensive review full review", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "comprehensive-review-pr-enhance", @@ -2607,7 +2896,8 @@ "name": "comprehensive-review-pr-enhance", "description": "You are a PR optimization expert specializing in creating high-quality pull requests that facilitate efficient code reviews. Generate comprehensive PR descriptions, automate review processes, and e...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "computer-use-agents", @@ -2616,7 +2906,8 @@ "name": "computer-use-agents", "description": "Build AI agents that interact with computers like humans do - viewing screens, moving cursors, clicking buttons, and typing text. Covers Anthropic's Computer Use, OpenAI's Operator/CUA, and open-so...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "computer-vision-expert", @@ -2625,7 +2916,8 @@ "name": "computer-vision-expert", "description": "SOTA Computer Vision Expert (2026). Specialized in YOLO26, Segment Anything 3 (SAM 3), Vision Language Models, and real-time spatial analysis.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "concise-planning", @@ -2634,7 +2926,8 @@ "name": "concise-planning", "description": "Use when a user asks for a plan for a coding task, to generate a clear, actionable, and atomic checklist.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-implement", @@ -2643,7 +2936,8 @@ "name": "conductor-implement", "description": "Execute tasks from a track's implementation plan following TDD workflow", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-manage", @@ -2652,7 +2946,8 @@ "name": "conductor-manage", "description": "Manage track lifecycle: archive, restore, delete, rename, and cleanup", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-new-track", @@ -2661,7 +2956,8 @@ "name": "conductor-new-track", "description": "Create a new track with specification and phased implementation plan", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-revert", @@ -2670,16 +2966,18 @@ "name": "conductor-revert", "description": "Git-aware undo by logical work unit (track, phase, or task)", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-setup", "path": "skills\\conductor-setup", "category": "uncategorized", "name": "conductor-setup", - "description": "Initialize project with Conductor artifacts (product definition,\ntech stack, workflow, style guides)\n", + "description": "Initialize or resume Conductor project setup. This command creates foundational project documentation through interactive Q&A.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-status", @@ -2688,16 +2986,18 @@ "name": "conductor-status", "description": "Display project status, active tracks, and next actions", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conductor-validator", "path": "skills\\conductor-validator", "category": "uncategorized", "name": "conductor-validator", - "description": "Validates Conductor project artifacts for completeness,\nconsistency, and correctness. Use after setup, when diagnosing issues, or\nbefore implementation to verify project context.\n", + "description": "ls -la conductor/", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "confluence-automation", @@ -2706,7 +3006,8 @@ "name": "confluence-automation", "description": "Automate Confluence page creation, content search, space management, labels, and hierarchy navigation via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "content-creator", @@ -2715,16 +3016,18 @@ "name": "content-creator", "description": "Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creati...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "content-marketer", "path": "skills\\content-marketer", "category": "uncategorized", "name": "content-marketer", - "description": "Elite content marketing strategist specializing in AI-powered\ncontent creation, omnichannel distribution, SEO optimization, and data-driven\nperformance marketing. Masters modern content tools, social media automation,\nand conversion optimization with 2024/2025 best practices. Use PROACTIVELY for\ncomprehensive content marketing.\n", + "description": "- Working on content marketer tasks or workflows - Needing guidance, best practices, or checklists for content marketer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-compression", @@ -2733,7 +3036,8 @@ "name": "context-compression", "description": "Design and evaluate compression strategies for long-running sessions", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-compression" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-compression", + "date_added": "2025-02-26" }, { "id": "context-degradation", @@ -2742,16 +3046,18 @@ "name": "context-degradation", "description": "Recognize patterns of context failure: lost-in-middle, poisoning, distraction, and clash", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-degradation" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-degradation", + "date_added": "2025-02-26" }, { "id": "context-driven-development", "path": "skills\\context-driven-development", "category": "uncategorized", "name": "context-driven-development", - "description": "Use this skill when working with Conductor's context-driven\ndevelopment methodology, managing project context artifacts, or understanding\nthe relationship between product.md, tech-stack.md, and workflow.md files.\n", + "description": "Guide for implementing and maintaining context as a managed artifact alongside code, enabling consistent AI interactions and team alignment through structured project documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-fundamentals", @@ -2760,7 +3066,8 @@ "name": "context-fundamentals", "description": "Understand what context is, why it matters, and the anatomy of context in agent systems", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-fundamentals" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-fundamentals", + "date_added": "2025-02-26" }, { "id": "context-management-context-restore", @@ -2769,7 +3076,8 @@ "name": "context-management-context-restore", "description": "Use when working with context management context restore", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-management-context-save", @@ -2778,16 +3086,18 @@ "name": "context-management-context-save", "description": "Use when working with context management context save", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-manager", "path": "skills\\context-manager", "category": "uncategorized", "name": "context-manager", - "description": "Elite AI context engineering specialist mastering dynamic context\nmanagement, vector databases, knowledge graphs, and intelligent memory\nsystems. Orchestrates context across multi-agent workflows, enterprise AI\nsystems, and long-running projects with 2024/2025 best practices. Use\nPROACTIVELY for complex AI orchestration.\n", + "description": "- Working on context manager tasks or workflows - Needing guidance, best practices, or checklists for context manager", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "context-optimization", @@ -2796,7 +3106,8 @@ "name": "context-optimization", "description": "Apply compaction, masking, and caching strategies", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-optimization" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/context-optimization", + "date_added": "2025-02-26" }, { "id": "context-window-management", @@ -2805,7 +3116,8 @@ "name": "context-window-management", "description": "Strategies for managing LLM context windows including summarization, trimming, routing, and avoiding context rot Use when: context window, token limit, context management, context engineering, long...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "context7-auto-research", @@ -2814,7 +3126,8 @@ "name": "context7-auto-research", "description": "Automatically fetch latest library/framework documentation for Claude Code via Context7 API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "conversation-memory", @@ -2823,7 +3136,8 @@ "name": "conversation-memory", "description": "Persistent memory systems for LLM conversations including short-term, long-term, and entity-based memory Use when: conversation memory, remember, memory persistence, long-term memory, chat history.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "convertkit-automation", @@ -2832,7 +3146,8 @@ "name": "convertkit-automation", "description": "Automate ConvertKit (Kit) tasks via Rube MCP (Composio): manage subscribers, tags, broadcasts, and broadcast stats. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "copilot-sdk", @@ -2841,7 +3156,8 @@ "name": "copilot-sdk", "description": "Build applications powered by GitHub Copilot using the Copilot SDK. Use when creating programmatic integrations with Copilot across Node.js/TypeScript, Python, Go, or .NET. Covers session managemen...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "copy-editing", @@ -2850,16 +3166,18 @@ "name": "copy-editing", "description": "When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "copywriting", "path": "skills\\copywriting", "category": "uncategorized", "name": "copywriting", - "description": "Use this skill when writing, rewriting, or improving marketing copy for any page (homepage, landing page, pricing, feature, product, or about page). This skill produces clear, compelling, and testable copy while enforcing alignment, honesty, and conversion best practices.\n", + "description": "Produce **clear, credible, and action-oriented marketing copy** that aligns with user intent and business goals.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "core-components", @@ -2868,7 +3186,8 @@ "name": "core-components", "description": "Core component library and design system patterns. Use when building UI, using design tokens, or working with the component library.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cost-optimization", @@ -2877,16 +3196,18 @@ "name": "cost-optimization", "description": "Optimize cloud costs through resource rightsizing, tagging strategies, reserved instances, and spending analysis. Use when reducing cloud expenses, analyzing infrastructure costs, or implementing c...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cpp-pro", "path": "skills\\cpp-pro", "category": "uncategorized", "name": "cpp-pro", - "description": "Write idiomatic C++ code with modern features, RAII, smart\npointers, and STL algorithms. Handles templates, move semantics, and\nperformance optimization. Use PROACTIVELY for C++ refactoring, memory safety,\nor complex C++ patterns.\n", + "description": "- Working on cpp pro tasks or workflows - Needing guidance, best practices, or checklists for cpp pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "cqrs-implementation", @@ -2895,7 +3216,8 @@ "name": "cqrs-implementation", "description": "Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "create-pr", @@ -2904,7 +3226,8 @@ "name": "create-pr", "description": "Create pull requests following Sentry conventions. Use when opening PRs, writing PR descriptions, or preparing changes for review. Follows Sentry's code review guidelines.", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/create-pr" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/create-pr", + "date_added": "2025-02-26" }, { "id": "crewai", @@ -2913,25 +3236,28 @@ "name": "crewai", "description": "Expert in CrewAI - the leading role-based multi-agent framework used by 60% of Fortune 500 companies. Covers agent design with roles and goals, task definition, crew orchestration, process types (s...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "crypto-bd-agent", "path": "skills\\crypto-bd-agent", "category": "uncategorized", "name": "crypto-bd-agent", - "description": "Autonomous crypto business development patterns \u2014 multi-chain token discovery, 100-point scoring with wallet forensics, x402 micropayments, ERC-8004 on-chain identity, LLM cascade routing, and pipeline automation for CEX/DEX listing acquisition. Use when building AI agents for crypto BD, token evaluation, exchange listing outreach, or autonomous commerce with payment protocols.\n", + "description": "> Production-tested patterns for building AI agents that autonomously discover, > evaluate, and acquire token listings for cryptocurrency exchanges.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "csharp-pro", "path": "skills\\csharp-pro", "category": "uncategorized", "name": "csharp-pro", - "description": "Write modern C# code with advanced features like records, pattern\nmatching, and async/await. Optimizes .NET applications, implements enterprise\npatterns, and ensures comprehensive testing. Use PROACTIVELY for C#\nrefactoring, performance optimization, or complex .NET solutions.\n", + "description": "- Working on csharp pro tasks or workflows - Needing guidance, best practices, or checklists for csharp pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "culture-index", @@ -2940,25 +3266,28 @@ "name": "culture-index", "description": "Index and search culture documentation", "risk": "safe", - "source": "https://github.com/trailofbits/skills/tree/main/plugins/culture-index" + "source": "https://github.com/trailofbits/skills/tree/main/plugins/culture-index", + "date_added": "2025-02-26" }, { "id": "customer-support", "path": "skills\\customer-support", "category": "uncategorized", "name": "customer-support", - "description": "Elite AI-powered customer support specialist mastering\nconversational AI, automated ticketing, sentiment analysis, and omnichannel\nsupport experiences. Integrates modern support tools, chatbot platforms, and\nCX optimization with 2024/2025 best practices. Use PROACTIVELY for\ncomprehensive customer experience management.\n", + "description": "- Working on customer support tasks or workflows - Needing guidance, best practices, or checklists for customer support", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "customs-trade-compliance", "path": "skills\\customs-trade-compliance", "category": "uncategorized", "name": "customs-trade-compliance", - "description": "Codified expertise for customs documentation, tariff classification, duty optimisation, restricted party screening, and regulatory compliance across multiple jurisdictions. Informed by trade compliance specialists with 15+ years experience. Includes HS classification logic, Incoterms application, FTA utilisation, and penalty mitigation. Use when handling customs clearance, tariff classification, trade compliance, import/export documentation, or duty optimisation.\n", + "description": "Use this skill when navigating international trade regulations, classifying goods under HS codes, determining appropriate Incoterms, managing import/export documentation, or optimizing customs duty payments through Free Trade Agreements.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "daily-news-report", @@ -2967,16 +3296,18 @@ "name": "daily-news-report", "description": "Scrapes content based on a preset URL list, filters high-quality technical information, and generates daily Markdown reports.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-engineer", "path": "skills\\data-engineer", "category": "uncategorized", "name": "data-engineer", - "description": "Build scalable data pipelines, modern data warehouses, and\nreal-time streaming architectures. Implements Apache Spark, dbt, Airflow, and\ncloud-native data platforms. Use PROACTIVELY for data pipeline design,\nanalytics infrastructure, or modern data stack implementation.\n", + "description": "You are a data engineer specializing in scalable data pipelines, modern data architecture, and analytics infrastructure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-engineering-data-driven-feature", @@ -2985,7 +3316,8 @@ "name": "data-engineering-data-driven-feature", "description": "Build features guided by data insights, A/B testing, and continuous measurement using specialized agents for analysis, implementation, and experimentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-engineering-data-pipeline", @@ -2994,7 +3326,8 @@ "name": "data-engineering-data-pipeline", "description": "You are a data pipeline architecture expert specializing in scalable, reliable, and cost-effective data pipelines for batch and streaming data processing.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-quality-frameworks", @@ -3003,16 +3336,18 @@ "name": "data-quality-frameworks", "description": "Implement data quality validation with Great Expectations, dbt tests, and data contracts. Use when building data quality pipelines, implementing validation rules, or establishing data contracts.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-scientist", "path": "skills\\data-scientist", "category": "uncategorized", "name": "data-scientist", - "description": "Expert data scientist for advanced analytics, machine learning, and\nstatistical modeling. Handles complex data analysis, predictive modeling, and\nbusiness intelligence. Use PROACTIVELY for data analysis tasks, ML modeling,\nstatistical analysis, and data-driven insights.\n", + "description": "- Working on data scientist tasks or workflows - Needing guidance, best practices, or checklists for data scientist", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-storytelling", @@ -3021,7 +3356,8 @@ "name": "data-storytelling", "description": "Transform data into compelling narratives using visualization, context, and persuasive structure. Use when presenting analytics to stakeholders, creating data reports, or building executive present...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "data-structure-protocol", @@ -3030,7 +3366,8 @@ "name": "data-structure-protocol", "description": "Give agents persistent structural memory of a codebase \u2014 navigate dependencies, track public APIs, and understand why connections exist without re-reading the whole repo.", "risk": "safe", - "source": "https://github.com/k-kolomeitsev/data-structure-protocol" + "source": "https://github.com/k-kolomeitsev/data-structure-protocol", + "date_added": "2025-02-26" }, { "id": "database", @@ -3039,25 +3376,28 @@ "name": "database", "description": "Database development and operations workflow covering SQL, NoSQL, database design, migrations, optimization, and data engineering.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "database-admin", "path": "skills\\database-admin", "category": "uncategorized", "name": "database-admin", - "description": "Expert database administrator specializing in modern cloud\ndatabases, automation, and reliability engineering. Masters AWS/Azure/GCP\ndatabase services, Infrastructure as Code, high availability, disaster\nrecovery, performance optimization, and compliance. Handles multi-cloud\nstrategies, container databases, and cost optimization. Use PROACTIVELY for\ndatabase architecture, operations, or reliability engineering.\n", + "description": "- Working on database admin tasks or workflows - Needing guidance, best practices, or checklists for database admin", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-architect", "path": "skills\\database-architect", "category": "uncategorized", "name": "database-architect", - "description": "Expert database architect specializing in data layer design from\nscratch, technology selection, schema modeling, and scalable database\narchitectures. Masters SQL/NoSQL/TimeSeries database selection, normalization\nstrategies, migration planning, and performance-first design. Handles both\ngreenfield architectures and re-architecture of existing systems. Use\nPROACTIVELY for database architecture, technology selection, or data modeling\ndecisions.\n", + "description": "You are a database architect specializing in designing scalable, performant, and maintainable data layers from the ground up.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-cloud-optimization-cost-optimize", @@ -3066,7 +3406,8 @@ "name": "database-cloud-optimization-cost-optimize", "description": "You are a cloud cost optimization expert specializing in reducing infrastructure expenses while maintaining performance and reliability. Analyze cloud spending, identify savings opportunities, and ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-design", @@ -3075,7 +3416,8 @@ "name": "database-design", "description": "Database design principles and decision-making. Schema design, indexing strategy, ORM selection, serverless databases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-migration", @@ -3084,7 +3426,8 @@ "name": "database-migration", "description": "Execute database migrations across ORMs and platforms with zero-downtime strategies, data transformation, and rollback procedures. Use when migrating databases, changing schemas, performing data tr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-migrations-migration-observability", @@ -3093,7 +3436,8 @@ "name": "database-migrations-migration-observability", "description": "Migration monitoring, CDC, and observability infrastructure", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-migrations-sql-migrations", @@ -3102,16 +3446,18 @@ "name": "database-migrations-sql-migrations", "description": "SQL database migrations with zero-downtime strategies for PostgreSQL, MySQL, and SQL Server. Focus on data integrity and rollback plans.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "database-optimizer", "path": "skills\\database-optimizer", "category": "uncategorized", "name": "database-optimizer", - "description": "Expert database optimizer specializing in modern performance\ntuning, query optimization, and scalable architectures. Masters advanced\nindexing, N+1 resolution, multi-tier caching, partitioning strategies, and\ncloud database optimization. Handles complex query analysis, migration\nstrategies, and performance monitoring. Use PROACTIVELY for database\noptimization, performance issues, or scalability challenges.\n", + "description": "- Working on database optimizer tasks or workflows - Needing guidance, best practices, or checklists for database optimizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "datadog-automation", @@ -3120,7 +3466,8 @@ "name": "datadog-automation", "description": "Automate Datadog tasks via Rube MCP (Composio): query metrics, search logs, manage monitors/dashboards, create events and downtimes. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dbos-golang", @@ -3129,7 +3476,8 @@ "name": "dbos-golang", "description": "DBOS Go SDK for building reliable, fault-tolerant applications with durable workflows. Use this skill when writing Go code with DBOS, creating workflows and steps, using queues, using the DBOS Clie...", "risk": "safe", - "source": "https://docs.dbos.dev/" + "source": "https://docs.dbos.dev/", + "date_added": "2025-02-26" }, { "id": "dbos-python", @@ -3138,7 +3486,8 @@ "name": "dbos-python", "description": "DBOS Python SDK for building reliable, fault-tolerant applications with durable workflows. Use this skill when writing Python code with DBOS, creating workflows and steps, using queues, using DBOSC...", "risk": "safe", - "source": "https://docs.dbos.dev/" + "source": "https://docs.dbos.dev/", + "date_added": "2025-02-26" }, { "id": "dbos-typescript", @@ -3147,7 +3496,8 @@ "name": "dbos-typescript", "description": "DBOS TypeScript SDK for building reliable, fault-tolerant applications with durable workflows. Use this skill when writing TypeScript code with DBOS, creating workflows and steps, using queues, usi...", "risk": "safe", - "source": "https://docs.dbos.dev/" + "source": "https://docs.dbos.dev/", + "date_added": "2025-02-26" }, { "id": "dbt-transformation-patterns", @@ -3156,7 +3506,8 @@ "name": "dbt-transformation-patterns", "description": "Master dbt (data build tool) for analytics engineering with model organization, testing, documentation, and incremental strategies. Use when building data transformations, creating data models, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ddd-context-mapping", @@ -3165,7 +3516,8 @@ "name": "ddd-context-mapping", "description": "Map relationships between bounded contexts and define integration contracts using DDD context mapping patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "ddd-strategic-design", @@ -3174,7 +3526,8 @@ "name": "ddd-strategic-design", "description": "Design DDD strategic artifacts including subdomains, bounded contexts, and ubiquitous language for complex business domains.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "ddd-tactical-patterns", @@ -3183,16 +3536,18 @@ "name": "ddd-tactical-patterns", "description": "Apply DDD tactical patterns in code using entities, value objects, aggregates, repositories, and domain events with explicit invariants.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "debugger", "path": "skills\\debugger", "category": "uncategorized", "name": "debugger", - "description": "Debugging specialist for errors, test failures, and unexpected\nbehavior. Use proactively when encountering any issues.\n", + "description": "- Working on debugger tasks or workflows - Needing guidance, best practices, or checklists for debugger", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "debugging-strategies", @@ -3201,7 +3556,8 @@ "name": "debugging-strategies", "description": "Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance iss...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "debugging-toolkit-smart-debug", @@ -3210,7 +3566,8 @@ "name": "debugging-toolkit-smart-debug", "description": "Use when working with debugging toolkit smart debug", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deep-research", @@ -3219,7 +3576,8 @@ "name": "deep-research", "description": "Execute autonomous multi-step research using Google Gemini Deep Research Agent. Use for: market analysis, competitive landscaping, literature reviews, technical research, due diligence. Takes 2-10 ...", "risk": "safe", - "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/deep-research" + "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/deep-research", + "date_added": "2025-02-26" }, { "id": "defi-protocol-templates", @@ -3228,7 +3586,8 @@ "name": "defi-protocol-templates", "description": "Implement DeFi protocols with production-ready templates for staking, AMMs, governance, and lending systems. Use when building decentralized finance applications or smart contract protocols.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dependency-management-deps-audit", @@ -3237,7 +3596,8 @@ "name": "dependency-management-deps-audit", "description": "You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dependency-upgrade", @@ -3246,16 +3606,18 @@ "name": "dependency-upgrade", "description": "Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing brea...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-engineer", "path": "skills\\deployment-engineer", "category": "uncategorized", "name": "deployment-engineer", - "description": "Expert deployment engineer specializing in modern CI/CD pipelines,\nGitOps workflows, and advanced deployment automation. Masters GitHub Actions,\nArgoCD/Flux, progressive delivery, container security, and platform\nengineering. Handles zero-downtime deployments, security scanning, and\ndeveloper experience optimization. Use PROACTIVELY for CI/CD design, GitOps\nimplementation, or deployment automation.\n", + "description": "You are a deployment engineer specializing in modern CI/CD pipelines, GitOps workflows, and advanced deployment automation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-pipeline-design", @@ -3264,7 +3626,8 @@ "name": "deployment-pipeline-design", "description": "Design multi-stage CI/CD pipelines with approval gates, security checks, and deployment orchestration. Use when architecting deployment workflows, setting up continuous delivery, or implementing Gi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-procedures", @@ -3273,7 +3636,8 @@ "name": "deployment-procedures", "description": "Production deployment principles and decision-making. Safe deployment workflows, rollback strategies, and verification. Teaches thinking, not scripts.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "deployment-validation-config-validate", @@ -3282,7 +3646,8 @@ "name": "deployment-validation-config-validate", "description": "You are a configuration management expert specializing in validating, testing, and ensuring the correctness of application configurations. Create comprehensive validation schemas, implement configurat", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "design-md", @@ -3291,16 +3656,18 @@ "name": "design-md", "description": "Analyze Stitch projects and synthesize a semantic design system into DESIGN.md files", "risk": "safe", - "source": "https://github.com/google-labs-code/stitch-skills/tree/main/skills/design-md" + "source": "https://github.com/google-labs-code/stitch-skills/tree/main/skills/design-md", + "date_added": "2025-02-26" }, { "id": "design-orchestration", "path": "skills\\design-orchestration", "category": "uncategorized", "name": "design-orchestration", - "description": "Orchestrates design workflows by routing work through brainstorming, multi-agent review, and execution readiness in the correct order. Prevents premature implementation, skipped validation, and unreviewed high-risk designs.", + "description": "Ensure that **ideas become designs**, **designs are reviewed**, and **only validated designs reach implementation**.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "development", @@ -3309,16 +3676,18 @@ "name": "development", "description": "Comprehensive web, mobile, and backend development workflow bundling frontend, backend, full-stack, and mobile development skills for end-to-end application delivery.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "devops-troubleshooter", "path": "skills\\devops-troubleshooter", "category": "uncategorized", "name": "devops-troubleshooter", - "description": "Expert DevOps troubleshooter specializing in rapid incident\nresponse, advanced debugging, and modern observability. Masters log analysis,\ndistributed tracing, Kubernetes debugging, performance optimization, and root\ncause analysis. Handles production outages, system reliability, and preventive\nmonitoring. Use PROACTIVELY for debugging, incident response, or system\ntroubleshooting.\n", + "description": "- Working on devops troubleshooter tasks or workflows - Needing guidance, best practices, or checklists for devops troubleshooter", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "discord-automation", @@ -3327,7 +3696,8 @@ "name": "discord-automation", "description": "Automate Discord tasks via Rube MCP (Composio): messages, channels, roles, webhooks, reactions. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "discord-bot-architect", @@ -3336,7 +3706,8 @@ "name": "discord-bot-architect", "description": "Specialized skill for building production-ready Discord bots. Covers Discord.js (JavaScript) and Pycord (Python), gateway intents, slash commands, interactive components, rate limiting, and sharding.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "dispatching-parallel-agents", @@ -3345,7 +3716,8 @@ "name": "dispatching-parallel-agents", "description": "Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "distributed-debugging-debug-trace", @@ -3354,7 +3726,8 @@ "name": "distributed-debugging-debug-trace", "description": "You are a debugging expert specializing in setting up comprehensive debugging environments, distributed tracing, and diagnostic tools. Configure debugging workflows, implement tracing solutions, an...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "distributed-tracing", @@ -3363,16 +3736,18 @@ "name": "distributed-tracing", "description": "Implement distributed tracing with Jaeger and Tempo to track requests across microservices and identify performance bottlenecks. Use when debugging microservices, analyzing request flows, or implem...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "django-pro", "path": "skills\\django-pro", "category": "uncategorized", "name": "django-pro", - "description": "Master Django 5.x with async views, DRF, Celery, and Django\nChannels. Build scalable web applications with proper architecture, testing,\nand deployment. Use PROACTIVELY for Django development, ORM optimization, or\ncomplex Django patterns.\n", + "description": "- Working on django pro tasks or workflows - Needing guidance, best practices, or checklists for django pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "doc-coauthoring", @@ -3381,7 +3756,8 @@ "name": "doc-coauthoring", "description": "Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docker-expert", @@ -3390,16 +3766,18 @@ "name": "docker-expert", "description": "Docker containerization expert with deep knowledge of multi-stage builds, image optimization, container security, Docker Compose orchestration, and production deployment patterns. Use PROACTIVELY f...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docs-architect", "path": "skills\\docs-architect", "category": "uncategorized", "name": "docs-architect", - "description": "Creates comprehensive technical documentation from existing\ncodebases. Analyzes architecture, design patterns, and implementation details\nto produce long-form technical manuals and ebooks. Use PROACTIVELY for system\ndocumentation, architecture guides, or technical deep-dives.\n", + "description": "- Working on docs architect tasks or workflows - Needing guidance, best practices, or checklists for docs architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "documentation", @@ -3408,7 +3786,8 @@ "name": "documentation", "description": "Documentation generation workflow covering API docs, architecture docs, README files, code comments, and technical writing.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "documentation-generation-doc-generate", @@ -3417,7 +3796,8 @@ "name": "documentation-generation-doc-generate", "description": "You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "documentation-templates", @@ -3426,7 +3806,8 @@ "name": "documentation-templates", "description": "Documentation templates and structure guidelines. README, API docs, code comments, and AI-friendly documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docusign-automation", @@ -3435,7 +3816,8 @@ "name": "docusign-automation", "description": "Automate DocuSign tasks via Rube MCP (Composio): templates, envelopes, signatures, document management. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "docx-official", @@ -3444,7 +3826,8 @@ "name": "docx-official", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional document...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "domain-driven-design", @@ -3453,16 +3836,18 @@ "name": "domain-driven-design", "description": "Plan and route Domain-Driven Design work from strategic modeling to tactical implementation and evented architecture patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "dotnet-architect", "path": "skills\\dotnet-architect", "category": "uncategorized", "name": "dotnet-architect", - "description": "Expert .NET backend architect specializing in C#, ASP.NET Core,\nEntity Framework, Dapper, and enterprise application patterns. Masters\nasync/await, dependency injection, caching strategies, and performance\noptimization. Use PROACTIVELY for .NET API development, code review, or\narchitecture decisions.\n", + "description": "- Working on dotnet architect tasks or workflows - Needing guidance, best practices, or checklists for dotnet architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dotnet-backend", @@ -3471,7 +3856,8 @@ "name": "dotnet-backend", "description": "Build ASP.NET Core 8+ backend services with EF Core, auth, background jobs, and production API patterns.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "dotnet-backend-patterns", @@ -3480,7 +3866,8 @@ "name": "dotnet-backend-patterns", "description": "Master C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuratio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "draw", @@ -3489,7 +3876,8 @@ "name": "draw", "description": "Vector graphics and diagram creation, format conversion (ODG/SVG/PDF) with LibreOffice Draw.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "dropbox-automation", @@ -3498,16 +3886,18 @@ "name": "dropbox-automation", "description": "Automate Dropbox file management, sharing, search, uploads, downloads, and folder operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "dx-optimizer", "path": "skills\\dx-optimizer", "category": "uncategorized", "name": "dx-optimizer", - "description": "Developer Experience specialist. Improves tooling, setup, and\nworkflows. Use PROACTIVELY when setting up new projects, after team feedback,\nor when development friction is noticed.\n", + "description": "- Working on dx optimizer tasks or workflows - Needing guidance, best practices, or checklists for dx optimizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "e2e-testing", @@ -3516,7 +3906,8 @@ "name": "e2e-testing", "description": "End-to-end testing workflow with Playwright for browser automation, visual regression, cross-browser testing, and CI/CD integration.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "e2e-testing-patterns", @@ -3525,16 +3916,18 @@ "name": "e2e-testing-patterns", "description": "Master end-to-end testing with Playwright and Cypress to build reliable test suites that catch bugs, improve confidence, and enable fast deployment. Use when implementing E2E tests, debugging flaky...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "elixir-pro", "path": "skills\\elixir-pro", "category": "uncategorized", "name": "elixir-pro", - "description": "Write idiomatic Elixir code with OTP patterns, supervision trees,\nand Phoenix LiveView. Masters concurrency, fault tolerance, and distributed\nsystems. Use PROACTIVELY for Elixir refactoring, OTP design, or complex BEAM\noptimizations.\n", + "description": "- Working on elixir pro tasks or workflows - Needing guidance, best practices, or checklists for elixir pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "email-sequence", @@ -3543,7 +3936,8 @@ "name": "email-sequence", "description": "When the user wants to create or optimize an email sequence, drip campaign, automated email flow, or lifecycle email program. Also use when the user mentions \"email sequence,\" \"drip campa...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "email-systems", @@ -3552,7 +3946,8 @@ "name": "email-systems", "description": "Email has the highest ROI of any marketing channel. $36 for every $1 spent. Yet most startups treat it as an afterthought - bulk blasts, no personalization, landing in spam folders. This skill cov...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "embedding-strategies", @@ -3561,7 +3956,8 @@ "name": "embedding-strategies", "description": "Select and optimize embedding models for semantic search and RAG applications. Use when choosing embedding models, implementing chunking strategies, or optimizing embedding quality for specific dom...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "employment-contract-templates", @@ -3570,16 +3966,18 @@ "name": "employment-contract-templates", "description": "Create employment contracts, offer letters, and HR policy documents following legal best practices. Use when drafting employment agreements, creating HR policies, or standardizing employment docume...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "energy-procurement", "path": "skills\\energy-procurement", "category": "uncategorized", "name": "energy-procurement", - "description": "Codified expertise for electricity and gas procurement, tariff optimisation, demand charge management, renewable PPA evaluation, and multi-facility energy cost management. Informed by energy procurement managers with 15+ years experience at large commercial and industrial consumers. Includes market structure analysis, hedging strategies, load profiling, and sustainability reporting frameworks. Use when procuring energy, optimising tariffs, managing demand charges, evaluating PPAs, or developing energy strategies.\n", + "description": "Use this skill when managing energy procurement tasks, such as optimizing electricity or gas tariffs, evaluating Power Purchase Agreements (PPAs), or developing long-term energy cost management strategies for commercial or industrial facilities.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "environment-setup-guide", @@ -3588,7 +3986,8 @@ "name": "environment-setup-guide", "description": "Guide developers through setting up development environments with proper tools, dependencies, and configurations", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-debugging-error-analysis", @@ -3597,7 +3996,8 @@ "name": "error-debugging-error-analysis", "description": "You are an expert error analysis specialist with deep expertise in debugging distributed systems, analyzing production incidents, and implementing comprehensive observability solutions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-debugging-error-trace", @@ -3606,7 +4006,8 @@ "name": "error-debugging-error-trace", "description": "You are an error tracking and observability expert specializing in implementing comprehensive error monitoring solutions. Set up error tracking systems, configure alerts, implement structured loggi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-debugging-multi-agent-review", @@ -3615,16 +4016,18 @@ "name": "error-debugging-multi-agent-review", "description": "Use when working with error debugging multi agent review", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-detective", "path": "skills\\error-detective", "category": "uncategorized", "name": "error-detective", - "description": "Search logs and codebases for error patterns, stack traces, and\nanomalies. Correlates errors across systems and identifies root causes. Use\nPROACTIVELY when debugging issues, analyzing logs, or investigating production\nerrors.\n", + "description": "- Working on error detective tasks or workflows - Needing guidance, best practices, or checklists for error detective", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-diagnostics-error-analysis", @@ -3633,7 +4036,8 @@ "name": "error-diagnostics-error-analysis", "description": "You are an expert error analysis specialist with deep expertise in debugging distributed systems, analyzing production incidents, and implementing comprehensive observability solutions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-diagnostics-error-trace", @@ -3642,7 +4046,8 @@ "name": "error-diagnostics-error-trace", "description": "You are an error tracking and observability expert specializing in implementing comprehensive error monitoring solutions. Set up error tracking systems, configure alerts, implement structured logging,", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-diagnostics-smart-debug", @@ -3651,7 +4056,8 @@ "name": "error-diagnostics-smart-debug", "description": "Use when working with error diagnostics smart debug", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "error-handling-patterns", @@ -3660,7 +4066,8 @@ "name": "error-handling-patterns", "description": "Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ethical-hacking-methodology", @@ -3669,7 +4076,8 @@ "name": "ethical-hacking-methodology", "description": "This skill should be used when the user asks to \"learn ethical hacking\", \"understand penetration testing lifecycle\", \"perform reconnaissance\", \"conduct security scanning\", \"exploit ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "evaluation", @@ -3678,7 +4086,8 @@ "name": "evaluation", "description": "Build evaluation frameworks for agent systems", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/evaluation" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/evaluation", + "date_added": "2025-02-26" }, { "id": "event-sourcing-architect", @@ -3687,7 +4096,8 @@ "name": "event-sourcing-architect", "description": "Expert in event sourcing, CQRS, and event-driven architecture patterns. Masters event store design, projection building, saga orchestration, and eventual consistency patterns. Use PROACTIVELY for e...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "event-store-design", @@ -3696,7 +4106,8 @@ "name": "event-store-design", "description": "Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "exa-search", @@ -3705,7 +4116,8 @@ "name": "exa-search", "description": "Semantic search, similar content discovery, and structured research using Exa API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "executing-plans", @@ -3714,7 +4126,8 @@ "name": "executing-plans", "description": "Use when you have a written implementation plan to execute in a separate session with review checkpoints", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "expo-deployment", @@ -3723,7 +4136,8 @@ "name": "expo-deployment", "description": "Deploy Expo apps to production", "risk": "safe", - "source": "https://github.com/expo/skills/tree/main/plugins/expo-deployment" + "source": "https://github.com/expo/skills/tree/main/plugins/expo-deployment", + "date_added": "2025-02-26" }, { "id": "fal-audio", @@ -3732,7 +4146,8 @@ "name": "fal-audio", "description": "Text-to-speech and speech-to-text using fal.ai audio models", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-audio/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-audio/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-generate", @@ -3741,7 +4156,8 @@ "name": "fal-generate", "description": "Generate images and videos using fal.ai AI models", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-generate/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-generate/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-image-edit", @@ -3750,7 +4166,8 @@ "name": "fal-image-edit", "description": "AI-powered image editing with style transfer and object removal", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-image-edit/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-image-edit/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-platform", @@ -3759,7 +4176,8 @@ "name": "fal-platform", "description": "Platform APIs for model management, pricing, and usage tracking", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-platform/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-platform/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-upscale", @@ -3768,7 +4186,8 @@ "name": "fal-upscale", "description": "Upscale and enhance image and video resolution using AI", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-upscale/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-upscale/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fal-workflow", @@ -3777,16 +4196,18 @@ "name": "fal-workflow", "description": "Generate workflow JSON files for chaining AI models", "risk": "safe", - "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-workflow/SKILL.md" + "source": "https://github.com/fal-ai-community/skills/blob/main/skills/claude.ai/fal-workflow/SKILL.md", + "date_added": "2025-02-26" }, { "id": "fastapi-pro", "path": "skills\\fastapi-pro", "category": "uncategorized", "name": "fastapi-pro", - "description": "Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and\nPydantic V2. Master microservices, WebSockets, and modern Python async\npatterns. Use PROACTIVELY for FastAPI development, async optimization, or API\narchitecture.\n", + "description": "- Working on fastapi pro tasks or workflows - Needing guidance, best practices, or checklists for fastapi pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fastapi-router-py", @@ -3795,7 +4216,8 @@ "name": "fastapi-router-py", "description": "Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or add...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fastapi-templates", @@ -3804,7 +4226,8 @@ "name": "fastapi-templates", "description": "Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ffuf-claude-skill", @@ -3813,7 +4236,8 @@ "name": "ffuf-claude-skill", "description": "Web fuzzing with ffuf", "risk": "safe", - "source": "https://github.com/jthack/ffuf_claude_skill" + "source": "https://github.com/jthack/ffuf_claude_skill", + "date_added": "2025-02-26" }, { "id": "figma-automation", @@ -3822,7 +4246,8 @@ "name": "figma-automation", "description": "Automate Figma tasks via Rube MCP (Composio): files, components, design tokens, comments, exports. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "file-organizer", @@ -3831,7 +4256,8 @@ "name": "file-organizer", "description": "Intelligently organizes files and folders by understanding context, finding duplicates, and suggesting better organizational structures. Use when user wants to clean up directories, organize downlo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "file-path-traversal", @@ -3840,7 +4266,8 @@ "name": "file-path-traversal", "description": "This skill should be used when the user asks to \"test for directory traversal\", \"exploit path traversal vulnerabilities\", \"read arbitrary files through web applications\", \"find LFI vu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "file-uploads", @@ -3849,7 +4276,8 @@ "name": "file-uploads", "description": "Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking. Use when: f...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "find-bugs", @@ -3858,7 +4286,8 @@ "name": "find-bugs", "description": "Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/find-bugs" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/find-bugs", + "date_added": "2025-02-26" }, { "id": "finishing-a-development-branch", @@ -3867,7 +4296,8 @@ "name": "finishing-a-development-branch", "description": "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "firebase", @@ -3876,7 +4306,8 @@ "name": "firebase", "description": "Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they'r...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "firecrawl-scraper", @@ -3885,16 +4316,18 @@ "name": "firecrawl-scraper", "description": "Deep web scraping, screenshots, PDF parsing, and website crawling using Firecrawl API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "firmware-analyst", "path": "skills\\firmware-analyst", "category": "uncategorized", "name": "firmware-analyst", - "description": "Expert firmware analyst specializing in embedded systems, IoT\nsecurity, and hardware reverse engineering. Masters firmware extraction,\nanalysis, and vulnerability research for routers, IoT devices, automotive\nsystems, and industrial controllers. Use PROACTIVELY for firmware security\naudits, IoT penetration testing, or embedded systems research.\n", + "description": "wget http://vendor.com/firmware/update.bin", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fix-review", @@ -3903,25 +4336,28 @@ "name": "fix-review", "description": "Verify fix commits address audit findings without new bugs", "risk": "safe", - "source": "https://github.com/trailofbits/skills/tree/main/plugins/fix-review" + "source": "https://github.com/trailofbits/skills/tree/main/plugins/fix-review", + "date_added": "2025-02-26" }, { "id": "flutter-expert", "path": "skills\\flutter-expert", "category": "uncategorized", "name": "flutter-expert", - "description": "Master Flutter development with Dart 3, advanced widgets, and\nmulti-platform deployment. Handles state management, animations, testing, and\nperformance optimization for mobile, web, desktop, and embedded platforms. Use\nPROACTIVELY for Flutter architecture, UI implementation, or cross-platform\nfeatures.\n", + "description": "- Working on flutter expert tasks or workflows - Needing guidance, best practices, or checklists for flutter expert", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "form-cro", "path": "skills\\form-cro", "category": "uncategorized", "name": "form-cro", - "description": "Optimize any form that is NOT signup or account registration \u2014 including lead capture, contact, demo request, application, survey, quote, and checkout forms. Use when the goal is to increase form completion rate, reduce friction, or improve lead quality without breaking compliance or downstream workflows.\n", + "description": "You are an expert in **form optimization and friction reduction**. Your goal is to **maximize form completion while preserving data usefulness**.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "fp-ts-errors", @@ -3930,7 +4366,8 @@ "name": "fp-ts-errors", "description": "Handle errors as values using fp-ts Either and TaskEither for cleaner, more predictable TypeScript code. Use when implementing error handling patterns with fp-ts.", "risk": "safe", - "source": "https://github.com/whatiskadudoing/fp-ts-skills" + "source": "https://github.com/whatiskadudoing/fp-ts-skills", + "date_added": "2025-02-26" }, { "id": "fp-ts-pragmatic", @@ -3939,7 +4376,8 @@ "name": "fp-ts-pragmatic", "description": "A practical, jargon-free guide to fp-ts functional programming - the 80/20 approach that gets results without the academic overhead. Use when writing TypeScript with fp-ts library.", "risk": "safe", - "source": "https://github.com/whatiskadudoing/fp-ts-skills" + "source": "https://github.com/whatiskadudoing/fp-ts-skills", + "date_added": "2025-02-26" }, { "id": "fp-ts-react", @@ -3948,7 +4386,8 @@ "name": "fp-ts-react", "description": "Practical patterns for using fp-ts with React - hooks, state, forms, data fetching. Use when building React apps with functional programming patterns. Works with React 18/19, Next.js 14/15.", "risk": "safe", - "source": "https://github.com/whatiskadudoing/fp-ts-skills" + "source": "https://github.com/whatiskadudoing/fp-ts-skills", + "date_added": "2025-02-26" }, { "id": "framework-migration-code-migrate", @@ -3957,7 +4396,8 @@ "name": "framework-migration-code-migrate", "description": "You are a code migration expert specializing in transitioning codebases between frameworks, languages, versions, and platforms. Generate comprehensive migration plans, automated migration scripts, and", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "framework-migration-deps-upgrade", @@ -3966,7 +4406,8 @@ "name": "framework-migration-deps-upgrade", "description": "You are a dependency management expert specializing in safe, incremental upgrades of project dependencies. Plan and execute dependency updates with minimal risk, proper testing, and clear migration pa", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "framework-migration-legacy-modernize", @@ -3975,7 +4416,8 @@ "name": "framework-migration-legacy-modernize", "description": "Orchestrate a comprehensive legacy system modernization using the strangler fig pattern, enabling gradual replacement of outdated components while maintaining continuous business operations through ex", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "free-tool-strategy", @@ -3984,7 +4426,8 @@ "name": "free-tool-strategy", "description": "When the user wants to plan, evaluate, or build a free tool for marketing purposes \u2014 lead generation, SEO value, or brand awareness. Also use when the user mentions \"engineering as mar...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "freshdesk-automation", @@ -3993,7 +4436,8 @@ "name": "freshdesk-automation", "description": "Automate Freshdesk helpdesk operations including tickets, contacts, companies, notes, and replies via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "freshservice-automation", @@ -4002,7 +4446,8 @@ "name": "freshservice-automation", "description": "Automate Freshservice ITSM tasks via Rube MCP (Composio): create/update tickets, bulk operations, service requests, and outbound emails. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-design", @@ -4011,7 +4456,8 @@ "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with intentional aesthetics, high craft, and non-generic visual identity. Use when building or styling web UIs, components, pages, dashboard...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-dev-guidelines", @@ -4020,16 +4466,18 @@ "name": "frontend-dev-guidelines", "description": "Opinionated frontend development standards for modern React + TypeScript applications. Covers Suspense-first data fetching, lazy loading, feature-based architecture, MUI v7 styling, TanStack Router...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-developer", "path": "skills\\frontend-developer", "category": "uncategorized", "name": "frontend-developer", - "description": "Build React components, implement responsive layouts, and handle\nclient-side state management. Masters React 19, Next.js 15, and modern\nfrontend architecture. Optimizes performance and ensures accessibility. Use\nPROACTIVELY when creating UI components or fixing frontend issues.\n", + "description": "You are a frontend development expert specializing in modern React applications, Next.js, and cutting-edge frontend architecture.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-mobile-development-component-scaffold", @@ -4038,7 +4486,8 @@ "name": "frontend-mobile-development-component-scaffold", "description": "You are a React component architecture expert specializing in scaffolding production-ready, accessible, and performant components. Generate complete component implementations with TypeScript, tests, s", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-mobile-security-xss-scan", @@ -4047,16 +4496,18 @@ "name": "frontend-mobile-security-xss-scan", "description": "You are a frontend security specialist focusing on Cross-Site Scripting (XSS) vulnerability detection and prevention. Analyze React, Vue, Angular, and vanilla JavaScript code to identify injection poi", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-security-coder", "path": "skills\\frontend-security-coder", "category": "uncategorized", "name": "frontend-security-coder", - "description": "Expert in secure frontend coding practices specializing in XSS\nprevention, output sanitization, and client-side security patterns. Use\nPROACTIVELY for frontend security implementations or client-side security code\nreviews.\n", + "description": "- Working on frontend security coder tasks or workflows - Needing guidance, best practices, or checklists for frontend security coder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "frontend-slides", @@ -4065,7 +4516,8 @@ "name": "frontend-slides", "description": "Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a...", "risk": "safe", - "source": "https://github.com/zarazhangrui/frontend-slides" + "source": "https://github.com/zarazhangrui/frontend-slides", + "date_added": "2025-02-26" }, { "id": "frontend-ui-dark-ts", @@ -4074,7 +4526,8 @@ "name": "frontend-ui-dark-ts", "description": "Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "full-stack-orchestration-full-stack-feature", @@ -4083,7 +4536,8 @@ "name": "full-stack-orchestration-full-stack-feature", "description": "Use when working with full stack orchestration full stack feature", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-art", @@ -4092,7 +4546,8 @@ "name": "game-art", "description": "Game art principles. Visual style selection, asset pipeline, animation workflow.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-audio", @@ -4101,7 +4556,8 @@ "name": "game-audio", "description": "Game audio principles. Sound design, music integration, adaptive audio systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-design", @@ -4110,7 +4566,8 @@ "name": "game-design", "description": "Game design principles. GDD structure, balancing, player psychology, progression.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "game-development", @@ -4119,7 +4576,8 @@ "name": "game-development", "description": "Game development orchestrator. Routes to platform-specific skills based on project needs.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gcp-cloud-run", @@ -4128,7 +4586,8 @@ "name": "gcp-cloud-run", "description": "Specialized skill for building production-ready serverless applications on GCP. Covers Cloud Run services (containerized), Cloud Run Functions (event-driven), cold start optimization, and event-dri...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "gdpr-data-handling", @@ -4137,7 +4596,8 @@ "name": "gdpr-data-handling", "description": "Implement GDPR-compliant data handling with consent management, data subject rights, and privacy by design. Use when building systems that process EU personal data, implementing privacy controls, o...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gemini-api-dev", @@ -4146,7 +4606,8 @@ "name": "gemini-api-dev", "description": "Use this skill when building applications with Gemini models, Gemini API, working with multimodal content (text, images, audio, video), implementing function calling, using structured outputs, or n...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "geo-fundamentals", @@ -4155,7 +4616,8 @@ "name": "geo-fundamentals", "description": "Generative Engine Optimization for AI search engines (ChatGPT, Claude, Perplexity).", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-advanced-workflows", @@ -4164,7 +4626,8 @@ "name": "git-advanced-workflows", "description": "Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, co...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pr-workflows-git-workflow", @@ -4173,7 +4636,8 @@ "name": "git-pr-workflows-git-workflow", "description": "Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern g", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pr-workflows-onboard", @@ -4182,7 +4646,8 @@ "name": "git-pr-workflows-onboard", "description": "You are an **expert onboarding specialist and knowledge transfer architect** with deep experience in remote-first organizations, technical team integration, and accelerated learning methodologies. You", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pr-workflows-pr-enhance", @@ -4191,7 +4656,8 @@ "name": "git-pr-workflows-pr-enhance", "description": "You are a PR optimization expert specializing in creating high-quality pull requests that facilitate efficient code reviews. Generate comprehensive PR descriptions, automate review processes, and ensu", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "git-pushing", @@ -4200,7 +4666,8 @@ "name": "git-pushing", "description": "Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activate...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-actions-templates", @@ -4209,7 +4676,8 @@ "name": "github-actions-templates", "description": "Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or cre...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-automation", @@ -4218,7 +4686,8 @@ "name": "github-automation", "description": "Automate GitHub repositories, issues, pull requests, branches, CI/CD, and permissions via Rube MCP (Composio). Manage code workflows, review PRs, search code, and handle deployments programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-issue-creator", @@ -4227,7 +4696,8 @@ "name": "github-issue-creator", "description": "Convert raw notes, error logs, voice dictation, or screenshots into crisp GitHub-flavored markdown issue reports. Use when the user pastes bug info, error messages, or informal descriptions and wan...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "github-workflow-automation", @@ -4236,7 +4706,8 @@ "name": "github-workflow-automation", "description": "Automate GitHub workflows with AI assistance. Includes PR reviews, issue triage, CI/CD integration, and Git operations. Use when automating GitHub workflows, setting up PR review automation, creati...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gitlab-automation", @@ -4245,7 +4716,8 @@ "name": "gitlab-automation", "description": "Automate GitLab project management, issues, merge requests, pipelines, branches, and user operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gitlab-ci-patterns", @@ -4254,7 +4726,8 @@ "name": "gitlab-ci-patterns", "description": "Build GitLab CI/CD pipelines with multi-stage workflows, caching, and distributed runners for scalable automation. Use when implementing GitLab CI/CD, optimizing pipeline performance, or setting up...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gitops-workflow", @@ -4263,7 +4736,8 @@ "name": "gitops-workflow", "description": "Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deplo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "gmail-automation", @@ -4272,7 +4746,8 @@ "name": "gmail-automation", "description": "Automate Gmail tasks via Rube MCP (Composio): send/reply, search, labels, drafts, attachments. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "go-concurrency-patterns", @@ -4281,7 +4756,8 @@ "name": "go-concurrency-patterns", "description": "Master Go concurrency with goroutines, channels, sync primitives, and context. Use when building concurrent Go applications, implementing worker pools, or debugging race conditions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "go-playwright", @@ -4290,7 +4766,8 @@ "name": "go-playwright", "description": "Expert capability for robust, stealthy, and efficient browser automation using Playwright Go.", "risk": "safe", - "source": "https://github.com/playwright-community/playwright-go" + "source": "https://github.com/playwright-community/playwright-go", + "date_added": "2025-02-26" }, { "id": "go-rod-master", @@ -4299,7 +4776,8 @@ "name": "go-rod-master", "description": "Comprehensive guide for browser automation and web scraping with go-rod (Chrome DevTools Protocol) including stealth anti-bot-detection patterns.", "risk": "safe", - "source": "https://github.com/go-rod/rod" + "source": "https://github.com/go-rod/rod", + "date_added": "2025-02-26" }, { "id": "godot-4-migration", @@ -4308,7 +4786,8 @@ "name": "godot-4-migration", "description": "Specialized guide for migrating Godot 3.x projects to Godot 4 (GDScript 2.0), covering syntax changes, Tweens, and exports.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "godot-gdscript-patterns", @@ -4317,16 +4796,18 @@ "name": "godot-gdscript-patterns", "description": "Master Godot 4 GDScript patterns including signals, scenes, state machines, and optimization. Use when building Godot games, implementing game systems, or learning GDScript best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "golang-pro", "path": "skills\\golang-pro", "category": "uncategorized", "name": "golang-pro", - "description": "Master Go 1.21+ with modern patterns, advanced concurrency,\nperformance optimization, and production-ready microservices. Expert in the\nlatest Go ecosystem including generics, workspaces, and cutting-edge\nframeworks. Use PROACTIVELY for Go development, architecture design, or\nperformance optimization.\n", + "description": "You are a Go expert specializing in modern Go 1.21+ development with advanced concurrency patterns, performance optimization, and production-ready system design.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "google-analytics-automation", @@ -4335,7 +4816,8 @@ "name": "google-analytics-automation", "description": "Automate Google Analytics tasks via Rube MCP (Composio): run reports, list accounts/properties, funnels, pivots, key events. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "google-calendar-automation", @@ -4344,7 +4826,8 @@ "name": "google-calendar-automation", "description": "Automate Google Calendar events, scheduling, availability checks, and attendee management via Rube MCP (Composio). Create events, find free slots, manage attendees, and list calendars programmatica...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "google-drive-automation", @@ -4353,7 +4836,8 @@ "name": "google-drive-automation", "description": "Automate Google Drive file operations (upload, download, search, share, organize) via Rube MCP (Composio). Upload/download files, manage folders, share with permissions, and search across drives pr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "googlesheets-automation", @@ -4362,7 +4846,8 @@ "name": "googlesheets-automation", "description": "Automate Google Sheets operations (read, write, format, filter, manage spreadsheets) via Rube MCP (Composio). Read/write data, manage tabs, apply formatting, and search rows programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "grafana-dashboards", @@ -4371,7 +4856,8 @@ "name": "grafana-dashboards", "description": "Create and manage production Grafana dashboards for real-time visualization of system and application metrics. Use when building monitoring dashboards, visualizing metrics, or creating operational ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "graphql", @@ -4380,16 +4866,18 @@ "name": "graphql", "description": "GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper co...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "graphql-architect", "path": "skills\\graphql-architect", "category": "uncategorized", "name": "graphql-architect", - "description": "Master modern GraphQL with federation, performance optimization,\nand enterprise security. Build scalable schemas, implement advanced caching,\nand design real-time systems. Use PROACTIVELY for GraphQL architecture or\nperformance optimization.\n", + "description": "- Working on graphql architect tasks or workflows - Needing guidance, best practices, or checklists for graphql architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "grpc-golang", @@ -4398,16 +4886,18 @@ "name": "grpc-golang", "description": "Build production-ready gRPC services in Go with mTLS, streaming, and observability. Use when designing Protobuf contracts with Buf or implementing secure service-to-service transport.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "haskell-pro", "path": "skills\\haskell-pro", "category": "uncategorized", "name": "haskell-pro", - "description": "Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.", + "description": "Expert Haskell engineer specializing in advanced type systems, pure", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "helm-chart-scaffolding", @@ -4416,7 +4906,8 @@ "name": "helm-chart-scaffolding", "description": "Design, organize, and manage Helm charts for templating and packaging Kubernetes applications with reusable configurations. Use when creating Helm charts, packaging Kubernetes applications, or impl...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "helpdesk-automation", @@ -4425,133 +4916,148 @@ "name": "helpdesk-automation", "description": "Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-content", "path": "skills\\hig-components-content", "category": "uncategorized", "name": "hig-components-content", - "description": "Apple Human Interface Guidelines for content display components. Use this skill when the user asks about \"charts component\", \"collection view\", \"image view\", \"web view\", \"color well\", \"image well\", \"activity view\", \"lockup\", \"data visualization\", \"content display\", displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says \"how should I display charts\", \"what's the best way to show images\", \"should I use a web view\", \"how do I build a grid of items\", \"what component shows media\", or \"how do I present a share sheet\". Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-controls", "path": "skills\\hig-components-controls", "category": "uncategorized", "name": "hig-components-controls", - "description": "Apple HIG guidance for selection and input controls including pickers, toggles, sliders, steppers, segmented controls, combo boxes, text fields, text views, labels, token fields, virtual keyboards, rating indicators, and gauges. Use this skill when the user says \"picker or segmented control,\" \"how should my form look,\" \"what keyboard type should I use,\" \"toggle vs checkbox,\" or asks about picker design, toggle, switch, slider, stepper, text field, text input, segmented control, combo box, label, token field, virtual keyboard, rating indicator, gauge, form design, input validation, or control state management. Cross-references: hig-components-menus, hig-components-dialogs, hig-components-search.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-dialogs", "path": "skills\\hig-components-dialogs", "category": "uncategorized", "name": "hig-components-dialogs", - "description": "Apple HIG guidance for presentation components including alerts, action sheets, popovers, sheets, and digit entry views. Use this skill when the user says \"should I use an alert or a sheet,\" \"how do I show a confirmation dialog,\" \"when should I use a popover,\" \"my modals are annoying users,\" or asks about alert design, action sheet, popover, sheet, modal, dialog, digit entry, confirmation dialog, warning dialog, modal presentation, non-modal content, destructive action confirmation, or overlay UI patterns. Cross-references: hig-components-menus, hig-components-controls, hig-components-search, hig-patterns.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-layout", "path": "skills\\hig-components-layout", "category": "uncategorized", "name": "hig-components-layout", - "description": "Apple Human Interface Guidelines for layout and navigation components. Use this skill when the user asks about \"sidebar\", \"split view\", \"tab bar\", \"tab view\", \"scroll view\", \"window design\", \"panel\", \"list view\", \"table view\", \"column view\", \"outline view\", \"navigation structure\", \"app layout\", \"boxes\", \"ornaments\", or organizing content hierarchically in Apple apps. Also use when the user says \"how should I organize my app\", \"what navigation pattern should I use\", \"my layout breaks on iPad\", \"how do I build a sidebar\", \"should I use tabs or a sidebar\", or \"my app doesn't adapt to different screen sizes\". Cross-references: hig-foundations for layout/spacing principles, hig-platforms for platform-specific navigation, hig-patterns for multitasking and full-screen, hig-components-content for content display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-menus", "path": "skills\\hig-components-menus", "category": "uncategorized", "name": "hig-components-menus", - "description": "Apple HIG guidance for menu and button components including menus, context menus, dock menus, edit menus, the menu bar, toolbars, action buttons, pop-up buttons, pull-down buttons, disclosure controls, and standard buttons. Use this skill when the user says \"how should my buttons look,\" \"what goes in the menu bar,\" \"should I use a context menu or action sheet,\" \"how do I design a toolbar,\" or asks about button design, menu design, context menu, toolbar, menu bar, action button, pop-up button, pull-down button, disclosure control, dock menu, edit menu, or any menu/button component layout and behavior. Cross-references: hig-components-search, hig-components-controls, hig-components-dialogs.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-search", "path": "skills\\hig-components-search", "category": "uncategorized", "name": "hig-components-search", - "description": "Apple HIG guidance for navigation-related components including search fields, page controls, and path controls. Use this skill when the user says \"how should search work in my app,\" \"I need a breadcrumb,\" \"how do I paginate content,\" or asks about search field, search bar, page control, path control, breadcrumb, navigation component, search UX, search suggestions, search scopes, paginated content navigation, or file path hierarchy display. Cross-references: hig-components-menus, hig-components-controls, hig-components-dialogs, hig-patterns.", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-status", "path": "skills\\hig-components-status", "category": "uncategorized", "name": "hig-components-status", - "description": "Apple HIG guidance for status and progress UI components including progress indicators, status bars, and activity rings. Use this skill when asked about: \"progress indicator\", \"progress bar\", \"loading spinner\", \"status bar\", \"activity ring\", \"progress display\", determinate vs indeterminate progress, loading states, or fitness tracking rings. Also use when the user says \"how do I show loading state,\" \"should I use a spinner or progress bar,\" \"what goes in the status bar,\" or asks about activity indicators. Cross-references: hig-components-system for widgets and complications, hig-inputs for gesture-driven progress controls, hig-technologies for HealthKit and activity ring data integration.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-components-system", "path": "skills\\hig-components-system", "category": "uncategorized", "name": "hig-components-system", - "description": "Apple HIG guidance for system experience components: widgets, live activities, notifications, complications, home screen quick actions, top shelf, watch faces, app clips, and app shortcuts. Use when asked about: \"widget design\", \"live activity\", \"notification design\", \"complication\", \"home screen quick action\", \"top shelf\", \"watch face\", \"app clip\", \"app shortcut\", \"system experience\". Also use when the user says \"how do I design a widget,\" \"what should my notification look like,\" \"how do Live Activities work,\" \"should I make an App Clip,\" or asks about surfaces outside the main app. Cross-references: hig-components-status for progress in widgets, hig-inputs for interaction patterns, hig-technologies for Siri and system integration.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-foundations", "path": "skills\\hig-foundations", "category": "uncategorized", "name": "hig-foundations", - "description": "Apple Human Interface Guidelines design foundations. Use this skill when the user asks about \"HIG color\", \"Apple typography\", \"SF Symbols\", \"dark mode guidelines\", \"accessible design\", \"Apple design foundations\", \"app icon\", \"layout guidelines\", \"materials\", \"motion\", \"privacy\", \"right to left\", \"RTL\", \"inclusive design\", branding, images, spatial layout, or writing style. Also use when the user says \"my colors look wrong in dark mode\", \"what font should I use\", \"is my app accessible enough\", \"how do I support Dynamic Type\", \"what contrast ratio do I need\", \"how do I pick system colors\", or \"my icons don't match the system style\". Cross-references: hig-platforms for platform-specific guidance, hig-patterns for interaction patterns, hig-components-layout for structural components, hig-components-content for display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-inputs", "path": "skills\\hig-inputs", "category": "uncategorized", "name": "hig-inputs", - "description": "Apple HIG guidance for input methods and interaction patterns: gestures, Apple Pencil, keyboards, game controllers, pointers, Digital Crown, eye tracking, focus system, remotes, spatial interactions, gyroscope, accelerometer, and nearby interactions. Use when asked about: \"gesture design\", \"Apple Pencil\", \"keyboard shortcuts\", \"game controller\", \"pointer support\", \"mouse support\", \"trackpad\", \"Digital Crown\", \"eye tracking\", \"visionOS input\", \"focus system\", \"remote control\", \"gyroscope\", \"spatial interaction\". Also use when the user says \"what gestures should I support,\" \"how do I add keyboard shortcuts,\" \"how does input work on Apple TV,\" \"should I support Apple Pencil,\" or asks about input device handling. Cross-references: hig-components-status, hig-components-system, hig-technologies for VoiceOver and Siri.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-patterns", "path": "skills\\hig-patterns", "category": "uncategorized", "name": "hig-patterns", - "description": "Apple Human Interface Guidelines interaction and UX patterns. Use this skill when the user asks about \"onboarding flow\", \"user onboarding\", \"app launch\", \"loading state\", \"drag and drop\", \"search pattern\", \"settings design\", \"notifications\", \"modality\", \"multitasking\", \"feedback pattern\", \"haptics\", \"undo redo\", \"file management\", data entry, sharing, collaboration, full screen, audio, video, haptic feedback, ratings, printing, help, or account management in Apple apps. Also use when the user says \"how should onboarding work\", \"my app takes too long to load\", \"should I use a modal here\", \"how do I handle errors\", \"when should I ask for permissions\", \"how to show progress\", or \"what's the right way to confirm a delete\". Cross-references: hig-foundations for underlying principles, hig-platforms for platform specifics, hig-components-layout for navigation, hig-components-content for data display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-platforms", "path": "skills\\hig-platforms", "category": "uncategorized", "name": "hig-platforms", - "description": "Apple Human Interface Guidelines for platform-specific design. Use this skill when the user asks about \"designing for iOS\", \"iPad app design\", \"macOS design\", \"tvOS\", \"visionOS\", \"watchOS\", \"Apple platform\", \"which platform\", platform differences, platform-specific conventions, or multi-platform app design. Also use when the user says \"should I design differently for iPad vs iPhone\", \"how does my app work on visionOS\", \"what's different about macOS apps\", \"porting my app to another platform\", \"universal app design\", or \"what input methods does this platform use\". Cross-references: hig-foundations for shared design foundations, hig-patterns for interaction patterns, hig-components-layout for navigation structures, hig-components-content for content display.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-project-context", "path": "skills\\hig-project-context", "category": "uncategorized", "name": "hig-project-context", - "description": "Create or update a shared Apple design context document that other HIG skills use to tailor guidance. Use when the user says \"set up my project context,\" \"what platforms am I targeting,\" \"configure HIG settings,\" or when starting a new Apple platform project. Also activates when other HIG skills need project context but none exists yet. This skill creates .claude/apple-design-context.md so that hig-foundations, hig-platforms, hig-components-*, hig-inputs, and hig-technologies can provide targeted advice without repetitive questions.", + "description": "Create and maintain `.claude/apple-design-context.md` so other HIG skills can skip redundant questions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hig-technologies", "path": "skills\\hig-technologies", "category": "uncategorized", "name": "hig-technologies", - "description": "Apple HIG guidance for Apple technology integrations: Siri, Apple Pay, HealthKit, HomeKit, ARKit, machine learning, generative AI, iCloud, Sign in with Apple, SharePlay, CarPlay, Game Center, in-app purchase, NFC, Wallet, VoiceOver, Maps, Mac Catalyst, and more. Use when asked about: \"Siri integration\", \"Apple Pay\", \"HealthKit\", \"HomeKit\", \"ARKit\", \"augmented reality\", \"machine learning\", \"generative AI\", \"iCloud sync\", \"Sign in with Apple\", \"SharePlay\", \"CarPlay\", \"in-app purchase\", \"NFC\", \"VoiceOver\", \"Maps\", \"Mac Catalyst\". Also use when the user says \"how do I integrate Siri,\" \"what are the Apple Pay guidelines,\" \"how should my AR experience work,\" \"how do I use Sign in with Apple,\" or asks about any Apple framework or service integration. Cross-references: hig-inputs for input methods, hig-components-system for widgets.\n", + "description": "Check for `.claude/apple-design-context.md` before asking questions. Use existing context and only ask for information not already covered.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hosted-agents-v2-py", @@ -4560,16 +5066,18 @@ "name": "hosted-agents-v2-py", "description": "Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDefinition. Use when creating container-based agents in Azure AI Foundry.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hr-pro", "path": "skills\\hr-pro", "category": "uncategorized", "name": "hr-pro", - "description": "Professional, ethical HR partner for hiring,\nonboarding/offboarding, PTO and leave, performance, compliant policies, and\nemployee relations. Ask for jurisdiction and company context before advising;\nproduce structured, bias-mitigated, lawful templates.\n", + "description": "- Working on hr pro tasks or workflows - Needing guidance, best practices, or checklists for hr pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "html-injection-testing", @@ -4578,7 +5086,8 @@ "name": "html-injection-testing", "description": "This skill should be used when the user asks to \"test for HTML injection\", \"inject HTML into web pages\", \"perform HTML injection attacks\", \"deface web applications\", or \"test conten...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hubspot-automation", @@ -4587,7 +5096,8 @@ "name": "hubspot-automation", "description": "Automate HubSpot CRM operations (contacts, companies, deals, tickets, properties) via Rube MCP using Composio integration.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hubspot-integration", @@ -4596,7 +5106,8 @@ "name": "hubspot-integration", "description": "Expert patterns for HubSpot CRM integration including OAuth authentication, CRM objects, associations, batch operations, webhooks, and custom objects. Covers Node.js and Python SDKs. Use when: hubs...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "hugging-face-cli", @@ -4605,7 +5116,8 @@ "name": "hugging-face-cli", "description": "Execute Hugging Face Hub operations using the `hf` CLI. Use when the user needs to download models/datasets/spaces, upload files to Hub repositories, create repos, manage local cache, or run comput...", "risk": "safe", - "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-cli" + "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-cli", + "date_added": "2025-02-26" }, { "id": "hugging-face-jobs", @@ -4614,16 +5126,18 @@ "name": "hugging-face-jobs", "description": "This skill should be used when users want to run any workload on Hugging Face Jobs infrastructure. Covers UV scripts, Docker-based jobs, hardware selection, cost estimation, authentication with tok...", "risk": "safe", - "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-jobs" + "source": "https://github.com/huggingface/skills/tree/main/skills/hugging-face-jobs", + "date_added": "2025-02-26" }, { "id": "hybrid-cloud-architect", "path": "skills\\hybrid-cloud-architect", "category": "uncategorized", "name": "hybrid-cloud-architect", - "description": "Expert hybrid cloud architect specializing in complex multi-cloud\nsolutions across AWS/Azure/GCP and private clouds (OpenStack/VMware). Masters\nhybrid connectivity, workload placement optimization, edge computing, and\ncross-cloud automation. Handles compliance, cost optimization, disaster\nrecovery, and migration strategies. Use PROACTIVELY for hybrid architecture,\nmulti-cloud strategy, or complex infrastructure integration.\n", + "description": "- Working on hybrid cloud architect tasks or workflows - Needing guidance, best practices, or checklists for hybrid cloud architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hybrid-cloud-networking", @@ -4632,7 +5146,8 @@ "name": "hybrid-cloud-networking", "description": "Configure secure, high-performance connectivity between on-premises infrastructure and cloud platforms using VPN and dedicated connections. Use when building hybrid cloud architectures, connecting ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "hybrid-search-implementation", @@ -4641,7 +5156,8 @@ "name": "hybrid-search-implementation", "description": "Combine vector and keyword search for improved retrieval. Use when implementing RAG systems, building search engines, or when neither approach alone provides sufficient recall.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "i18n-localization", @@ -4650,7 +5166,8 @@ "name": "i18n-localization", "description": "Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "idor-testing", @@ -4659,7 +5176,8 @@ "name": "idor-testing", "description": "This skill should be used when the user asks to \"test for insecure direct object references,\" \"find IDOR vulnerabilities,\" \"exploit broken access control,\" \"enumerate user IDs or obje...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "imagen", @@ -4668,7 +5186,8 @@ "name": "imagen", "description": "This skill generates images using Google Gemini's image generation model (`gemini-3-pro-image-preview`). It enables seamless image creation during any Claude Code session - whether you're building frontend UIs, creating documentation, or need visual", "risk": "safe", - "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/imagen" + "source": "https://github.com/sanjay3290/ai-skills/tree/main/skills/imagen", + "date_added": "2025-02-26" }, { "id": "impress", @@ -4677,16 +5196,18 @@ "name": "impress", "description": "Presentation creation, format conversion (ODP/PPTX/PDF), slide automation with LibreOffice Impress.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "incident-responder", "path": "skills\\incident-responder", "category": "uncategorized", "name": "incident-responder", - "description": "Expert SRE incident responder specializing in rapid problem\nresolution, modern observability, and comprehensive incident management.\nMasters incident command, blameless post-mortems, error budget management, and\nsystem reliability patterns. Handles critical outages, communication\nstrategies, and continuous improvement. Use IMMEDIATELY for production\nincidents or SRE practices.\n", + "description": "- Working on incident responder tasks or workflows - Needing guidance, best practices, or checklists for incident responder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "incident-response-incident-response", @@ -4695,7 +5216,8 @@ "name": "incident-response-incident-response", "description": "Use when working with incident response incident response", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "incident-response-smart-fix", @@ -4704,7 +5226,8 @@ "name": "incident-response-smart-fix", "description": "[Extended thinking: This workflow implements a sophisticated debugging and resolution pipeline that leverages AI-assisted debugging tools and observability platforms to systematically diagnose and res", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "incident-runbook-templates", @@ -4713,7 +5236,8 @@ "name": "incident-runbook-templates", "description": "Create structured incident response runbooks with step-by-step procedures, escalation paths, and recovery actions. Use when building runbooks, responding to incidents, or establishing incident resp...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "infinite-gratitude", @@ -4722,7 +5246,8 @@ "name": "infinite-gratitude", "description": "Multi-agent research skill for parallel research execution (10 agents, battle-tested with real case studies).", "risk": "safe", - "source": "https://github.com/sstklen/infinite-gratitude" + "source": "https://github.com/sstklen/infinite-gratitude", + "date_added": "2025-02-26" }, { "id": "inngest", @@ -4731,7 +5256,8 @@ "name": "inngest", "description": "Inngest expert for serverless-first background jobs, event-driven workflows, and durable execution without managing queues or workers. Use when: inngest, serverless background job, event-driven wor...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "instagram-automation", @@ -4740,7 +5266,8 @@ "name": "instagram-automation", "description": "Automate Instagram tasks via Rube MCP (Composio): create posts, carousels, manage media, get insights, and publishing limits. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "interactive-portfolio", @@ -4749,7 +5276,8 @@ "name": "interactive-portfolio", "description": "Expert in building portfolios that actually land jobs and clients - not just showing work, but creating memorable experiences. Covers developer portfolios, designer portfolios, creative portfolios,...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "intercom-automation", @@ -4758,7 +5286,8 @@ "name": "intercom-automation", "description": "Automate Intercom tasks via Rube MCP (Composio): conversations, contacts, companies, segments, admins. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "internal-comms-anthropic", @@ -4767,7 +5296,8 @@ "name": "internal-comms-anthropic", "description": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "internal-comms-community", @@ -4776,25 +5306,28 @@ "name": "internal-comms-community", "description": "A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "inventory-demand-planning", "path": "skills\\inventory-demand-planning", "category": "uncategorized", "name": "inventory-demand-planning", - "description": "Codified expertise for demand forecasting, safety stock optimisation, replenishment planning, and promotional lift estimation at multi-location retailers. Informed by demand planners with 15+ years experience managing hundreds of SKUs. Includes forecasting method selection, ABC/XYZ analysis, seasonal transition management, and vendor negotiation frameworks. Use when forecasting demand, setting safety stock, planning replenishment, managing promotions, or optimising inventory levels.\n", + "description": "Use this skill when forecasting product demand, calculating optimal safety stock levels, planning inventory replenishment cycles, estimating the impact of retail promotions, or conducting ABC/XYZ inventory segmentation.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "ios-developer", "path": "skills\\ios-developer", "category": "uncategorized", "name": "ios-developer", - "description": "Develop native iOS applications with Swift/SwiftUI. Masters iOS 18,\nSwiftUI, UIKit integration, Core Data, networking, and App Store optimization.\nUse PROACTIVELY for iOS-specific features, App Store optimization, or native\niOS development.\n", + "description": "- Working on ios developer tasks or workflows - Needing guidance, best practices, or checklists for ios developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "istio-traffic-management", @@ -4803,7 +5336,8 @@ "name": "istio-traffic-management", "description": "Configure Istio traffic management including routing, load balancing, circuit breakers, and canary deployments. Use when implementing service mesh traffic policies, progressive delivery, or resilie...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "iterate-pr", @@ -4812,16 +5346,18 @@ "name": "iterate-pr", "description": "Iterate on a PR until CI passes. Use when you need to fix CI failures, address review feedback, or continuously push fixes until all checks are green. Automates the feedback-fix-push-wait cycle.", "risk": "safe", - "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/iterate-pr" + "source": "https://github.com/getsentry/skills/tree/main/plugins/sentry-skills/skills/iterate-pr", + "date_added": "2025-02-26" }, { "id": "java-pro", "path": "skills\\java-pro", "category": "uncategorized", "name": "java-pro", - "description": "Master Java 21+ with modern features like virtual threads, pattern\nmatching, and Spring Boot 3.x. Expert in the latest Java ecosystem including\nGraalVM, Project Loom, and cloud-native patterns. Use PROACTIVELY for Java\ndevelopment, microservices architecture, or performance optimization.\n", + "description": "- Working on java pro tasks or workflows - Needing guidance, best practices, or checklists for java pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-mastery", @@ -4830,16 +5366,18 @@ "name": "javascript-mastery", "description": "Comprehensive JavaScript reference covering 33+ essential concepts every developer should know. From fundamentals like primitives and closures to advanced patterns like async/await and functional p...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-pro", "path": "skills\\javascript-pro", "category": "uncategorized", "name": "javascript-pro", - "description": "Master modern JavaScript with ES6+, async patterns, and Node.js\nAPIs. Handles promises, event loops, and browser/Node compatibility. Use\nPROACTIVELY for JavaScript optimization, async debugging, or complex JS\npatterns.\n", + "description": "You are a JavaScript expert specializing in modern JS and async programming.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-testing-patterns", @@ -4848,7 +5386,8 @@ "name": "javascript-testing-patterns", "description": "Implement comprehensive testing strategies using Jest, Vitest, and Testing Library for unit tests, integration tests, and end-to-end testing with mocking, fixtures, and test-driven development. Use...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "javascript-typescript-typescript-scaffold", @@ -4857,7 +5396,8 @@ "name": "javascript-typescript-typescript-scaffold", "description": "You are a TypeScript project architecture expert specializing in scaffolding production-ready Node.js and frontend applications. Generate complete project structures with modern tooling (pnpm, Vite, N", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "jira-automation", @@ -4866,16 +5406,18 @@ "name": "jira-automation", "description": "Automate Jira tasks via Rube MCP (Composio): issues, projects, sprints, boards, comments, users. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "julia-pro", "path": "skills\\julia-pro", "category": "uncategorized", "name": "julia-pro", - "description": "Master Julia 1.10+ with modern features, performance optimization,\nmultiple dispatch, and production-ready practices. Expert in the Julia\necosystem including package management, scientific computing, and\nhigh-performance numerical code. Use PROACTIVELY for Julia development,\noptimization, or advanced Julia patterns.\n", + "description": "- Working on julia pro tasks or workflows - Needing guidance, best practices, or checklists for julia pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "k8s-manifest-generator", @@ -4884,7 +5426,8 @@ "name": "k8s-manifest-generator", "description": "Create production-ready Kubernetes manifests for Deployments, Services, ConfigMaps, and Secrets following best practices and security standards. Use when generating Kubernetes YAML manifests, creat...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "k8s-security-policies", @@ -4893,7 +5436,8 @@ "name": "k8s-security-policies", "description": "Implement Kubernetes security policies including NetworkPolicy, PodSecurityPolicy, and RBAC for production-grade security. Use when securing Kubernetes clusters, implementing network isolation, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kaizen", @@ -4902,7 +5446,8 @@ "name": "kaizen", "description": "Guide for continuous improvement, error proofing, and standardization. Use this skill when the user wants to improve code quality, refactor, or discuss process improvements.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "klaviyo-automation", @@ -4911,7 +5456,8 @@ "name": "klaviyo-automation", "description": "Automate Klaviyo tasks via Rube MCP (Composio): manage email/SMS campaigns, inspect campaign messages, track tags, and monitor send jobs. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kotlin-coroutines-expert", @@ -4920,7 +5466,8 @@ "name": "kotlin-coroutines-expert", "description": "Expert patterns for Kotlin Coroutines and Flow, covering structured concurrency, error handling, and testing.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kpi-dashboard-design", @@ -4929,16 +5476,18 @@ "name": "kpi-dashboard-design", "description": "Design effective KPI dashboards with metrics selection, visualization best practices, and real-time monitoring patterns. Use when building business dashboards, selecting metrics, or designing data ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kubernetes-architect", "path": "skills\\kubernetes-architect", "category": "uncategorized", "name": "kubernetes-architect", - "description": "Expert Kubernetes architect specializing in cloud-native\ninfrastructure, advanced GitOps workflows (ArgoCD/Flux), and enterprise\ncontainer orchestration. Masters EKS/AKS/GKE, service mesh (Istio/Linkerd),\nprogressive delivery, multi-tenancy, and platform engineering. Handles\nsecurity, observability, cost optimization, and developer experience. Use\nPROACTIVELY for K8s architecture, GitOps implementation, or cloud-native\nplatform design.\n", + "description": "You are a Kubernetes architect specializing in cloud-native infrastructure, modern GitOps workflows, and enterprise container orchestration at scale.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "kubernetes-deployment", @@ -4947,7 +5496,8 @@ "name": "kubernetes-deployment", "description": "Kubernetes deployment workflow for container orchestration, Helm charts, service mesh, and production-ready K8s configurations.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "langchain-architecture", @@ -4956,7 +5506,8 @@ "name": "langchain-architecture", "description": "Design LLM applications using the LangChain framework with agents, memory, and tool integration patterns. Use when building LangChain applications, implementing AI agents, or creating complex LLM w...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "langfuse", @@ -4965,7 +5516,8 @@ "name": "langfuse", "description": "Expert in Langfuse - the open-source LLM observability platform. Covers tracing, prompt management, evaluation, datasets, and integration with LangChain, LlamaIndex, and OpenAI. Essential for debug...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "langgraph", @@ -4974,7 +5526,8 @@ "name": "langgraph", "description": "Expert in LangGraph - the production-grade framework for building stateful, multi-actor AI applications. Covers graph construction, state management, cycles and branches, persistence with checkpoin...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "laravel-expert", @@ -4983,7 +5536,8 @@ "name": "laravel-expert", "description": "Senior Laravel Engineer role for production-grade, maintainable, and idiomatic Laravel solutions. Focuses on clean architecture, security, performance, and modern standards (Laravel 10/11+).", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "laravel-security-audit", @@ -4992,7 +5546,8 @@ "name": "laravel-security-audit", "description": "Security auditor for Laravel applications. Analyzes code for vulnerabilities, misconfigurations, and insecure practices using OWASP standards and Laravel security best practices.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "last30days", @@ -5001,7 +5556,8 @@ "name": "last30days", "description": "Research a topic from the last 30 days on Reddit + X + Web, become an expert, and write copy-paste-ready prompts for the user's target tool.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "launch-strategy", @@ -5010,25 +5566,28 @@ "name": "launch-strategy", "description": "When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,'...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "legacy-modernizer", "path": "skills\\legacy-modernizer", "category": "uncategorized", "name": "legacy-modernizer", - "description": "Refactor legacy codebases, migrate outdated frameworks, and\nimplement gradual modernization. Handles technical debt, dependency updates,\nand backward compatibility. Use PROACTIVELY for legacy system updates,\nframework migrations, or technical debt reduction.\n", + "description": "- Working on legacy modernizer tasks or workflows - Needing guidance, best practices, or checklists for legacy modernizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "legal-advisor", "path": "skills\\legal-advisor", "category": "uncategorized", "name": "legal-advisor", - "description": "Draft privacy policies, terms of service, disclaimers, and legal\nnotices. Creates GDPR-compliant texts, cookie policies, and data processing\nagreements. Use PROACTIVELY for legal documentation, compliance texts, or\nregulatory requirements.\n", + "description": "- Working on legal advisor tasks or workflows - Needing guidance, best practices, or checklists for legal advisor", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linear-automation", @@ -5037,7 +5596,8 @@ "name": "linear-automation", "description": "Automate Linear tasks via Rube MCP (Composio): issues, projects, cycles, teams, labels. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linear-claude-skill", @@ -5046,7 +5606,8 @@ "name": "linear-claude-skill", "description": "Manage Linear issues, projects, and teams", "risk": "safe", - "source": "https://github.com/wrsmith108/linear-claude-skill" + "source": "https://github.com/wrsmith108/linear-claude-skill", + "date_added": "2025-02-26" }, { "id": "linkedin-automation", @@ -5055,7 +5616,8 @@ "name": "linkedin-automation", "description": "Automate LinkedIn tasks via Rube MCP (Composio): create posts, manage profile, company info, comments, and image uploads. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linkedin-cli", @@ -5064,7 +5626,8 @@ "name": "linkedin-cli", "description": "Use when automating LinkedIn via CLI: fetch profiles, search people/companies, send messages, manage connections, create posts, and Sales Navigator.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linkerd-patterns", @@ -5073,7 +5636,8 @@ "name": "linkerd-patterns", "description": "Implement Linkerd service mesh patterns for lightweight, security-focused service mesh deployments. Use when setting up Linkerd, configuring traffic policies, or implementing zero-trust networking ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "lint-and-validate", @@ -5082,7 +5646,8 @@ "name": "lint-and-validate", "description": "Automatic quality control, linting, and static analysis procedures. Use after every code modification to ensure syntax correctness and project standards. Triggers onKeywords: lint, format, check, v...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linux-privilege-escalation", @@ -5091,7 +5656,8 @@ "name": "linux-privilege-escalation", "description": "This skill should be used when the user asks to \"escalate privileges on Linux\", \"find privesc vectors on Linux systems\", \"exploit sudo misconfigurations\", \"abuse SUID binaries\", \"ex...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linux-shell-scripting", @@ -5100,7 +5666,8 @@ "name": "linux-shell-scripting", "description": "This skill should be used when the user asks to \"create bash scripts\", \"automate Linux tasks\", \"monitor system resources\", \"backup files\", \"manage users\", or \"write production she...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "linux-troubleshooting", @@ -5109,7 +5676,8 @@ "name": "linux-troubleshooting", "description": "Linux system troubleshooting workflow for diagnosing and resolving system issues, performance problems, and service failures.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "llm-app-patterns", @@ -5118,7 +5686,8 @@ "name": "llm-app-patterns", "description": "Production-ready patterns for building LLM applications. Covers RAG pipelines, agent architectures, prompt IDEs, and LLMOps monitoring. Use when designing AI applications, implementing RAG, buildin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-application-dev-ai-assistant", @@ -5127,7 +5696,8 @@ "name": "llm-application-dev-ai-assistant", "description": "You are an AI assistant development expert specializing in creating intelligent conversational interfaces, chatbots, and AI-powered applications. Design comprehensive AI assistant solutions with natur", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-application-dev-langchain-agent", @@ -5136,7 +5706,8 @@ "name": "llm-application-dev-langchain-agent", "description": "You are an expert LangChain agent developer specializing in production-grade AI systems using LangChain 0.1+ and LangGraph.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-application-dev-prompt-optimize", @@ -5145,7 +5716,8 @@ "name": "llm-application-dev-prompt-optimize", "description": "You are an expert prompt engineer specializing in crafting effective prompts for LLMs through advanced techniques including constitutional AI, chain-of-thought reasoning, and model-specific optimizati", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "llm-evaluation", @@ -5154,16 +5726,18 @@ "name": "llm-evaluation", "description": "Implement comprehensive evaluation strategies for LLM applications using automated metrics, human feedback, and benchmarking. Use when testing LLM performance, measuring AI application quality, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "logistics-exception-management", "path": "skills\\logistics-exception-management", "category": "uncategorized", "name": "logistics-exception-management", - "description": "Codified expertise for handling freight exceptions, shipment delays, damages, losses, and carrier disputes. Informed by logistics professionals with 15+ years operational experience. Includes escalation protocols, carrier-specific behaviours, claims procedures, and judgment frameworks. Use when handling shipping exceptions, freight claims, delivery issues, or carrier disputes.\n", + "description": "Use this skill when dealing with deviations from planned logistics operations, such as transit delays, damaged shipments, lost cargo, or when initiating and managing claims and disputes with freight carriers.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "loki-mode", @@ -5172,34 +5746,38 @@ "name": "loki-mode", "description": "Multi-agent autonomous startup system for Claude Code. Triggers on \"Loki Mode\". Orchestrates 100+ specialized agents across engineering, QA, DevOps, security, data/ML, business operations,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "m365-agents-dotnet", "path": "skills\\m365-agents-dotnet", "category": "uncategorized", "name": "m365-agents-dotnet", - "description": "Microsoft 365 Agents SDK for .NET. Build multichannel agents for Teams/M365/Copilot Studio with ASP.NET Core hosting, AgentApplication routing, and MSAL-based auth. Triggers: \"Microsoft 365 Agents SDK\", \"Microsoft.Agents\", \"AddAgentApplicationOptions\", \"AgentApplication\", \"AddAgentAspNetAuthentication\", \"Copilot Studio client\", \"IAgentHttpAdapter\".\n", + "description": "Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft.Agents SDK with ASP.NET Core hosting, agent routing, and MSAL-based authentication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "m365-agents-py", "path": "skills\\m365-agents-py", "category": "uncategorized", "name": "m365-agents-py", - "description": "Microsoft 365 Agents SDK for Python. Build multichannel agents for Teams/M365/Copilot Studio with aiohttp hosting, AgentApplication routing, streaming responses, and MSAL-based auth. Triggers: \"Microsoft 365 Agents SDK\", \"microsoft_agents\", \"AgentApplication\", \"start_agent_process\", \"TurnContext\", \"Copilot Studio client\", \"CloudAdapter\".\n", + "description": "Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft Agents SDK with aiohttp hosting, AgentApplication routing, streaming responses, and MSAL-based authentication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "m365-agents-ts", "path": "skills\\m365-agents-ts", "category": "uncategorized", "name": "m365-agents-ts", - "description": "Microsoft 365 Agents SDK for TypeScript/Node.js. Build multichannel agents for Teams/M365/Copilot Studio with AgentApplication routing, Express hosting, streaming responses, and Copilot Studio client integration. Triggers: \"Microsoft 365 Agents SDK\", \"@microsoft/agents-hosting\", \"AgentApplication\", \"startServer\", \"streamingResponse\", \"Copilot Studio client\", \"@microsoft/agents-copilotstudio-client\".\n", + "description": "Build enterprise agents for Microsoft 365, Teams, and Copilot Studio using the Microsoft 365 Agents SDK with Express hosting, AgentApplication routing, streaming responses, and Copilot Studio client integrations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "machine-learning-ops-ml-pipeline", @@ -5208,7 +5786,8 @@ "name": "machine-learning-ops-ml-pipeline", "description": "Design and implement a complete ML pipeline for: $ARGUMENTS", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mailchimp-automation", @@ -5217,7 +5796,8 @@ "name": "mailchimp-automation", "description": "Automate Mailchimp email marketing including campaigns, audiences, subscribers, segments, and analytics via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "make-automation", @@ -5226,7 +5806,8 @@ "name": "make-automation", "description": "Automate Make (Integromat) tasks via Rube MCP (Composio): operations, enums, language and timezone lookups. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "makepad-skills", @@ -5235,16 +5816,18 @@ "name": "makepad-skills", "description": "Makepad UI development skills for Rust apps: setup, patterns, shaders, packaging, and troubleshooting.", "risk": "safe", - "source": "https://github.com/ZhangHanDong/makepad-skills" + "source": "https://github.com/ZhangHanDong/makepad-skills", + "date_added": "2025-02-26" }, { "id": "malware-analyst", "path": "skills\\malware-analyst", "category": "uncategorized", "name": "malware-analyst", - "description": "Expert malware analyst specializing in defensive malware research,\nthreat intelligence, and incident response. Masters sandbox analysis,\nbehavioral analysis, and malware family identification. Handles static/dynamic\nanalysis, unpacking, and IOC extraction. Use PROACTIVELY for malware triage,\nthreat hunting, incident response, or security research.\n", + "description": "file sample.exe sha256sum sample.exe", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "manifest", @@ -5253,16 +5836,18 @@ "name": "manifest", "description": "Install and configure the Manifest observability plugin for your agents. Use when setting up telemetry, configuring API keys, or troubleshooting the plugin.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "market-sizing-analysis", "path": "skills\\market-sizing-analysis", "category": "uncategorized", "name": "market-sizing-analysis", - "description": "This skill should be used when the user asks to \\\\\\\"calculate TAM\\\\\\\",\n\"determine SAM\", \"estimate SOM\", \"size the market\", \"calculate market\nopportunity\", \"what's the total addressable market\", or requests market sizing\nanalysis for a startup or business opportunity.\n", + "description": "Comprehensive market sizing methodologies for calculating Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) for startup opportunities.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "marketing-ideas", @@ -5271,7 +5856,8 @@ "name": "marketing-ideas", "description": "Provide proven marketing strategies and growth ideas for SaaS and software products, prioritized using a marketing feasibility scoring system.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "marketing-psychology", @@ -5280,7 +5866,8 @@ "name": "marketing-psychology", "description": "Apply behavioral science and mental models to marketing decisions, prioritized using a psychological leverage and feasibility scoring system.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mcp-builder", @@ -5289,7 +5876,8 @@ "name": "mcp-builder", "description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate exte...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mcp-builder-ms", @@ -5298,7 +5886,8 @@ "name": "mcp-builder-ms", "description": "Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate exte...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "memory-forensics", @@ -5307,7 +5896,8 @@ "name": "memory-forensics", "description": "Master memory forensics techniques including memory acquisition, process analysis, and artifact extraction using Volatility and related tools. Use when analyzing memory dumps, investigating inciden...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "memory-safety-patterns", @@ -5316,7 +5906,8 @@ "name": "memory-safety-patterns", "description": "Implement memory-safe programming with RAII, ownership, smart pointers, and resource management across Rust, C++, and C. Use when writing safe systems code, managing resources, or preventing memory...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "memory-systems", @@ -5325,16 +5916,18 @@ "name": "memory-systems", "description": "Design short-term, long-term, and graph-based memory architectures", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/memory-systems" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/memory-systems", + "date_added": "2025-02-26" }, { "id": "mermaid-expert", "path": "skills\\mermaid-expert", "category": "uncategorized", "name": "mermaid-expert", - "description": "Create Mermaid diagrams for flowcharts, sequences, ERDs, and\narchitectures. Masters syntax for all diagram types and styling. Use\nPROACTIVELY for visual documentation, system diagrams, or process flows.\n", + "description": "- Working on mermaid expert tasks or workflows - Needing guidance, best practices, or checklists for mermaid expert", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "metasploit-framework", @@ -5343,7 +5936,8 @@ "name": "metasploit-framework", "description": "This skill should be used when the user asks to \"use Metasploit for penetration testing\", \"exploit vulnerabilities with msfconsole\", \"create payloads with msfvenom\", \"perform post-exp...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "micro-saas-launcher", @@ -5352,7 +5946,8 @@ "name": "micro-saas-launcher", "description": "Expert in launching small, focused SaaS products fast - the indie hacker approach to building profitable software. Covers idea validation, MVP development, pricing, launch strategies, and growing t...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "microservices-patterns", @@ -5361,16 +5956,18 @@ "name": "microservices-patterns", "description": "Design microservices architectures with service boundaries, event-driven communication, and resilience patterns. Use when building distributed systems, decomposing monoliths, or implementing micros...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "microsoft-azure-webjobs-extensions-authentication-events-dotnet", "path": "skills\\microsoft-azure-webjobs-extensions-authentication-events-dotnet", "category": "uncategorized", "name": "microsoft-azure-webjobs-extensions-authentication-events-dotnet", - "description": "Microsoft Entra Authentication Events SDK for .NET. Azure Functions triggers for custom authentication extensions. Use for token enrichment, custom claims, attribute collection, and OTP customization in Entra ID. Triggers: \"Authentication Events\", \"WebJobsAuthenticationEventsTrigger\", \"OnTokenIssuanceStart\", \"OnAttributeCollectionStart\", \"custom claims\", \"token enrichment\", \"Entra custom extension\", \"authentication extension\".\n", + "description": "Azure Functions extension for handling Microsoft Entra ID custom authentication events.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "microsoft-teams-automation", @@ -5379,16 +5976,18 @@ "name": "microsoft-teams-automation", "description": "Automate Microsoft Teams tasks via Rube MCP (Composio): send messages, manage channels, create meetings, handle chats, and search messages. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "minecraft-bukkit-pro", "path": "skills\\minecraft-bukkit-pro", "category": "uncategorized", "name": "minecraft-bukkit-pro", - "description": "Master Minecraft server plugin development with Bukkit, Spigot, and\nPaper APIs. Specializes in event-driven architecture, command systems, world\nmanipulation, player management, and performance optimization. Use PROACTIVELY\nfor plugin architecture, gameplay mechanics, server-side features, or\ncross-version compatibility.\n", + "description": "- Working on minecraft bukkit pro tasks or workflows - Needing guidance, best practices, or checklists for minecraft bukkit pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "miro-automation", @@ -5397,7 +5996,8 @@ "name": "miro-automation", "description": "Automate Miro tasks via Rube MCP (Composio): boards, items, sticky notes, frames, sharing, connectors. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mixpanel-automation", @@ -5406,16 +6006,18 @@ "name": "mixpanel-automation", "description": "Automate Mixpanel tasks via Rube MCP (Composio): events, segmentation, funnels, cohorts, user profiles, JQL queries. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ml-engineer", "path": "skills\\ml-engineer", "category": "uncategorized", "name": "ml-engineer", - "description": "Build production ML systems with PyTorch 2.x, TensorFlow, and\nmodern ML frameworks. Implements model serving, feature engineering, A/B\ntesting, and monitoring. Use PROACTIVELY for ML model deployment, inference\noptimization, or production ML infrastructure.\n", + "description": "- Working on ml engineer tasks or workflows - Needing guidance, best practices, or checklists for ml engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ml-pipeline-workflow", @@ -5424,16 +6026,18 @@ "name": "ml-pipeline-workflow", "description": "Build end-to-end MLOps pipelines from data preparation through model training, validation, and production deployment. Use when creating ML pipelines, implementing MLOps practices, or automating mod...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mlops-engineer", "path": "skills\\mlops-engineer", "category": "uncategorized", "name": "mlops-engineer", - "description": "Build comprehensive ML pipelines, experiment tracking, and model\nregistries with MLflow, Kubeflow, and modern MLOps tools. Implements automated\ntraining, deployment, and monitoring across cloud platforms. Use PROACTIVELY\nfor ML infrastructure, experiment management, or pipeline automation.\n", + "description": "- Working on mlops engineer tasks or workflows - Needing guidance, best practices, or checklists for mlops engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-design", @@ -5442,16 +6046,18 @@ "name": "mobile-design", "description": "Mobile-first design and engineering doctrine for iOS and Android apps. Covers touch interaction, performance, platform conventions, offline behavior, and mobile-specific decision-making. Teaches pr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-developer", "path": "skills\\mobile-developer", "category": "uncategorized", "name": "mobile-developer", - "description": "Develop React Native, Flutter, or native mobile apps with modern\narchitecture patterns. Masters cross-platform development, native\nintegrations, offline sync, and app store optimization. Use PROACTIVELY for\nmobile features, cross-platform code, or app optimization.\n", + "description": "- Working on mobile developer tasks or workflows - Needing guidance, best practices, or checklists for mobile developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-games", @@ -5460,16 +6066,18 @@ "name": "mobile-games", "description": "Mobile game development principles. Touch input, battery, performance, app stores.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mobile-security-coder", "path": "skills\\mobile-security-coder", "category": "uncategorized", "name": "mobile-security-coder", - "description": "Expert in secure mobile coding practices specializing in input\nvalidation, WebView security, and mobile-specific security patterns. Use\nPROACTIVELY for mobile security implementations or mobile security code\nreviews.\n", + "description": "- Working on mobile security coder tasks or workflows - Needing guidance, best practices, or checklists for mobile security coder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "modern-javascript-patterns", @@ -5478,7 +6086,8 @@ "name": "modern-javascript-patterns", "description": "Master ES6+ features including async/await, destructuring, spread operators, arrow functions, promises, modules, iterators, generators, and functional programming patterns for writing clean, effici...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "monday-automation", @@ -5487,7 +6096,8 @@ "name": "monday-automation", "description": "Automate Monday.com work management including boards, items, columns, groups, subitems, and updates via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "monorepo-architect", @@ -5496,7 +6106,8 @@ "name": "monorepo-architect", "description": "Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup,", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "monorepo-management", @@ -5505,7 +6116,8 @@ "name": "monorepo-management", "description": "Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monor...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "moodle-external-api-development", @@ -5514,7 +6126,8 @@ "name": "moodle-external-api-development", "description": "Create custom external web service APIs for Moodle LMS. Use when implementing web services for course management, user tracking, quiz operations, or custom plugin functionality. Covers parameter va...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "mtls-configuration", @@ -5523,16 +6136,18 @@ "name": "mtls-configuration", "description": "Configure mutual TLS (mTLS) for zero-trust service-to-service communication. Use when implementing zero-trust networking, certificate management, or securing internal service communication.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multi-agent-brainstorming", "path": "skills\\multi-agent-brainstorming", "category": "uncategorized", "name": "multi-agent-brainstorming", - "description": "Use this skill when a design or idea requires higher confidence, risk reduction, or formal review. This skill orchestrates a structured, sequential multi-agent design review where each agent has a strict, non-overlapping role. It prevents blind spots, false confidence, and premature convergence.", + "description": "Transform a single-agent design into a **robust, review-validated design** by simulating a formal peer-review process using multiple constrained agents.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multi-agent-patterns", @@ -5541,7 +6156,8 @@ "name": "multi-agent-patterns", "description": "Master orchestrator, peer-to-peer, and hierarchical multi-agent architectures", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/multi-agent-patterns" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/multi-agent-patterns", + "date_added": "2025-02-26" }, { "id": "multi-cloud-architecture", @@ -5550,7 +6166,8 @@ "name": "multi-cloud-architecture", "description": "Design multi-cloud architectures using a decision framework to select and integrate services across AWS, Azure, and GCP. Use when building multi-cloud systems, avoiding vendor lock-in, or leveragin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multi-platform-apps-multi-platform", @@ -5559,7 +6176,8 @@ "name": "multi-platform-apps-multi-platform", "description": "Build and deploy the same feature consistently across web, mobile, and desktop platforms using API-first architecture and parallel implementation strategies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "multiplayer", @@ -5568,7 +6186,8 @@ "name": "multiplayer", "description": "Multiplayer game development principles. Architecture, networking, synchronization.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "n8n-code-python", @@ -5577,7 +6196,8 @@ "name": "n8n-code-python", "description": "Write Python code in n8n Code nodes. Use when writing Python in n8n, using _input/_json/_node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes.", "risk": "safe", - "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-code-python" + "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-code-python", + "date_added": "2025-02-26" }, { "id": "n8n-mcp-tools-expert", @@ -5586,7 +6206,8 @@ "name": "n8n-mcp-tools-expert", "description": "Expert guide for using n8n-mcp MCP tools effectively. Use when searching for nodes, validating configurations, accessing templates, managing workflows, or using any n8n-mcp tool. Provides tool sele...", "risk": "safe", - "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-mcp-tools-expert" + "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-mcp-tools-expert", + "date_added": "2025-02-26" }, { "id": "n8n-node-configuration", @@ -5595,7 +6216,8 @@ "name": "n8n-node-configuration", "description": "Operation-aware node configuration guidance. Use when configuring nodes, understanding property dependencies, determining required fields, choosing between get_node detail levels, or learning commo...", "risk": "safe", - "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-node-configuration" + "source": "https://github.com/czlonkowski/n8n-skills/tree/main/skills/n8n-node-configuration", + "date_added": "2025-02-26" }, { "id": "nanobanana-ppt-skills", @@ -5604,7 +6226,8 @@ "name": "nanobanana-ppt-skills", "description": "AI-powered PPT generation with document analysis and styled images", "risk": "safe", - "source": "https://github.com/op7418/NanoBanana-PPT-Skills" + "source": "https://github.com/op7418/NanoBanana-PPT-Skills", + "date_added": "2025-02-26" }, { "id": "neon-postgres", @@ -5613,7 +6236,8 @@ "name": "neon-postgres", "description": "Expert patterns for Neon serverless Postgres, branching, connection pooling, and Prisma/Drizzle integration Use when: neon database, serverless postgres, database branching, neon postgres, postgres...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "nerdzao-elite", @@ -5622,7 +6246,8 @@ "name": "nerdzao-elite", "description": "Senior Elite Software Engineer (15+) and Senior Product Designer. Full workflow with planning, architecture, TDD, clean code, and pixel-perfect UX validation.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nerdzao-elite-gemini-high", @@ -5631,7 +6256,8 @@ "name": "nerdzao-elite-gemini-high", "description": "Modo Elite Coder + UX Pixel-Perfect otimizado especificamente para Gemini 3.1 Pro High. Workflow completo com foco em qualidade m\u00e1xima e efici\u00eancia de tokens.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nestjs-expert", @@ -5640,7 +6266,8 @@ "name": "nestjs-expert", "description": "Nest.js framework expert specializing in module architecture, dependency injection, middleware, guards, interceptors, testing with Jest/Supertest, TypeORM/Mongoose integration, and Passport.js auth...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "network-101", @@ -5649,16 +6276,18 @@ "name": "network-101", "description": "This skill should be used when the user asks to \"set up a web server\", \"configure HTTP or HTTPS\", \"perform SNMP enumeration\", \"configure SMB shares\", \"test network services\", or ne...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "network-engineer", "path": "skills\\network-engineer", "category": "uncategorized", "name": "network-engineer", - "description": "Expert network engineer specializing in modern cloud networking,\nsecurity architectures, and performance optimization. Masters multi-cloud\nconnectivity, service mesh, zero-trust networking, SSL/TLS, global load\nbalancing, and advanced troubleshooting. Handles CDN optimization, network\nautomation, and compliance. Use PROACTIVELY for network design, connectivity\nissues, or performance optimization.\n", + "description": "- Working on network engineer tasks or workflows - Needing guidance, best practices, or checklists for network engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nextjs-app-router-patterns", @@ -5667,7 +6296,8 @@ "name": "nextjs-app-router-patterns", "description": "Master Next.js 14+ App Router with Server Components, streaming, parallel routes, and advanced data fetching. Use when building Next.js applications, implementing SSR/SSG, or optimizing React Serve...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nextjs-best-practices", @@ -5676,7 +6306,8 @@ "name": "nextjs-best-practices", "description": "Next.js App Router principles. Server Components, data fetching, routing patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nextjs-supabase-auth", @@ -5685,7 +6316,8 @@ "name": "nextjs-supabase-auth", "description": "Expert integration of Supabase Auth with Next.js App Router Use when: supabase auth next, authentication next.js, login supabase, auth middleware, protected route.", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "nft-standards", @@ -5694,7 +6326,8 @@ "name": "nft-standards", "description": "Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nodejs-backend-patterns", @@ -5703,7 +6336,8 @@ "name": "nodejs-backend-patterns", "description": "Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nodejs-best-practices", @@ -5712,7 +6346,8 @@ "name": "nodejs-best-practices", "description": "Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "nosql-expert", @@ -5721,7 +6356,8 @@ "name": "nosql-expert", "description": "Expert guidance for distributed NoSQL databases (Cassandra, DynamoDB). Focuses on mental models, query-first modeling, single-table design, and avoiding hot partitions in high-scale systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "notebooklm", @@ -5730,7 +6366,8 @@ "name": "notebooklm", "description": "Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth....", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "notion-automation", @@ -5739,7 +6376,8 @@ "name": "notion-automation", "description": "Automate Notion tasks via Rube MCP (Composio): pages, databases, blocks, comments, users. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "notion-template-business", @@ -5748,7 +6386,8 @@ "name": "notion-template-business", "description": "Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, market...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "nx-workspace-patterns", @@ -5757,16 +6396,18 @@ "name": "nx-workspace-patterns", "description": "Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observability-engineer", "path": "skills\\observability-engineer", "category": "uncategorized", "name": "observability-engineer", - "description": "Build production-ready monitoring, logging, and tracing systems.\nImplements comprehensive observability strategies, SLI/SLO management, and\nincident response workflows. Use PROACTIVELY for monitoring infrastructure,\nperformance optimization, or production reliability.\n", + "description": "You are an observability engineer specializing in production-grade monitoring, logging, tracing, and reliability systems for enterprise-scale applications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observability-monitoring-monitor-setup", @@ -5775,7 +6416,8 @@ "name": "observability-monitoring-monitor-setup", "description": "You are a monitoring and observability expert specializing in implementing comprehensive monitoring solutions. Set up metrics collection, distributed tracing, log aggregation, and create insightful da", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observability-monitoring-slo-implement", @@ -5784,7 +6426,8 @@ "name": "observability-monitoring-slo-implement", "description": "You are an SLO (Service Level Objective) expert specializing in implementing reliability standards and error budget-based practices. Design SLO frameworks, define SLIs, and build monitoring that ba...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "observe-whatsapp", @@ -5793,7 +6436,8 @@ "name": "observe-whatsapp", "description": "Observe and troubleshoot WhatsApp in Kapso: debug message delivery, inspect webhook deliveries/retries, triage API errors, and run health checks. Use when investigating production issues, message f...", "risk": "safe", - "source": "https://github.com/gokapso/agent-skills/tree/master/skills/observe-whatsapp" + "source": "https://github.com/gokapso/agent-skills/tree/master/skills/observe-whatsapp", + "date_added": "2025-02-26" }, { "id": "obsidian-clipper-template-creator", @@ -5802,7 +6446,8 @@ "name": "obsidian-clipper-template-creator", "description": "Guide for creating templates for the Obsidian Web Clipper. Use when you want to create a new clipping template, understand available variables, or format clipped content.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "office-productivity", @@ -5811,7 +6456,8 @@ "name": "office-productivity", "description": "Office productivity workflow covering document creation, spreadsheet automation, presentation generation, and integration with LibreOffice and Microsoft Office formats.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "on-call-handoff-patterns", @@ -5820,7 +6466,8 @@ "name": "on-call-handoff-patterns", "description": "Master on-call shift handoffs with context transfer, escalation procedures, and documentation. Use when transitioning on-call responsibilities, documenting shift summaries, or improving on-call pro...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "onboarding-cro", @@ -5829,7 +6476,8 @@ "name": "onboarding-cro", "description": "When the user wants to optimize post-signup onboarding, user activation, first-run experience, or time-to-value. Also use when the user mentions \"onboarding flow,\" \"activation rate,\" \"u...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "one-drive-automation", @@ -5838,7 +6486,8 @@ "name": "one-drive-automation", "description": "Automate OneDrive file management, search, uploads, downloads, sharing, permissions, and folder operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "openapi-spec-generation", @@ -5847,7 +6496,8 @@ "name": "openapi-spec-generation", "description": "Generate and maintain OpenAPI 3.1 specifications from code, design-first specs, and validation patterns. Use when creating API documentation, generating SDKs, or ensuring API contract compliance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "os-scripting", @@ -5856,7 +6506,8 @@ "name": "os-scripting", "description": "Operating system and shell scripting troubleshooting workflow for Linux, macOS, and Windows. Covers bash scripting, system administration, debugging, and automation.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "oss-hunter", @@ -5865,7 +6516,8 @@ "name": "oss-hunter", "description": "Automatically hunt for high-impact OSS contribution opportunities in trending repositories.", "risk": "safe", - "source": "https://github.com/jackjin1997/ClawForge" + "source": "https://github.com/jackjin1997/ClawForge", + "date_added": "2025-02-26" }, { "id": "outlook-automation", @@ -5874,7 +6526,8 @@ "name": "outlook-automation", "description": "Automate Outlook tasks via Rube MCP (Composio): emails, calendar, contacts, folders, attachments. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "outlook-calendar-automation", @@ -5883,16 +6536,18 @@ "name": "outlook-calendar-automation", "description": "Automate Outlook Calendar tasks via Rube MCP (Composio): create events, manage attendees, find meeting times, and handle invitations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "page-cro", "path": "skills\\page-cro", "category": "uncategorized", "name": "page-cro", - "description": "Analyze and optimize individual pages for conversion performance. Use when the user wants to improve conversion rates, diagnose why a page is underperforming, or increase the effectiveness of marketing pages (homepage, landing pages, pricing, feature pages, or blog posts). This skill focuses on diagnosis, prioritization, and testable recommendations\u2014 not blind optimization.\n", + "description": "You are an expert in **page-level conversion optimization**. Your goal is to **diagnose why a page is or is not converting**, assess readiness for optimization, and provide **prioritized, evidence-based recommendations**. You do **not** guarantee con", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pagerduty-automation", @@ -5901,7 +6556,8 @@ "name": "pagerduty-automation", "description": "Automate PagerDuty tasks via Rube MCP (Composio): manage incidents, services, schedules, escalation policies, and on-call rotations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "paid-ads", @@ -5910,7 +6566,8 @@ "name": "paid-ads", "description": "When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' '...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "parallel-agents", @@ -5919,16 +6576,18 @@ "name": "parallel-agents", "description": "Multi-agent orchestration patterns. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectives.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "payment-integration", "path": "skills\\payment-integration", "category": "uncategorized", "name": "payment-integration", - "description": "Integrate Stripe, PayPal, and payment processors. Handles checkout\nflows, subscriptions, webhooks, and PCI compliance. Use PROACTIVELY when\nimplementing payments, billing, or subscription features.\n", + "description": "- Working on payment integration tasks or workflows - Needing guidance, best practices, or checklists for payment integration", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "paypal-integration", @@ -5937,7 +6596,8 @@ "name": "paypal-integration", "description": "Integrate PayPal payment processing with support for express checkout, subscriptions, and refund management. Use when implementing PayPal payments, processing online transactions, or building e-com...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "paywall-upgrade-cro", @@ -5946,7 +6606,8 @@ "name": "paywall-upgrade-cro", "description": "When the user wants to create or optimize in-app paywalls, upgrade screens, upsell modals, or feature gates. Also use when the user mentions \"paywall,\" \"upgrade screen,\" \"upgrade modal,...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pc-games", @@ -5955,7 +6616,8 @@ "name": "pc-games", "description": "PC and console game development principles. Engine selection, platform features, optimization strategies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pci-compliance", @@ -5964,7 +6626,8 @@ "name": "pci-compliance", "description": "Implement PCI DSS compliance requirements for secure handling of payment card data and payment systems. Use when securing payment processing, achieving PCI compliance, or implementing payment card ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pdf-official", @@ -5973,7 +6636,8 @@ "name": "pdf-official", "description": "Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmaticall...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pentest-checklist", @@ -5982,7 +6646,8 @@ "name": "pentest-checklist", "description": "This skill should be used when the user asks to \"plan a penetration test\", \"create a security assessment checklist\", \"prepare for penetration testing\", \"define pentest scope\", \"foll...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pentest-commands", @@ -5991,16 +6656,18 @@ "name": "pentest-commands", "description": "This skill should be used when the user asks to \"run pentest commands\", \"scan with nmap\", \"use metasploit exploits\", \"crack passwords with hydra or john\", \"scan web vulnerabilities ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-engineer", "path": "skills\\performance-engineer", "category": "uncategorized", "name": "performance-engineer", - "description": "Expert performance engineer specializing in modern observability, application optimization, and scalable system performance. Masters OpenTelemetry, distributed tracing, load testing, multi-tier caching, Core Web Vitals, and performance monitoring. Handles end-to-end optimization, real user monitoring, and scalability patterns. Use PROACTIVELY for performance optimization, observability, or scalability challenges.", + "description": "Expert performance engineer specializing in modern observability,", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-profiling", @@ -6009,7 +6676,8 @@ "name": "performance-profiling", "description": "Performance profiling principles. Measurement, analysis, and optimization techniques.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-testing-review-ai-review", @@ -6018,7 +6686,8 @@ "name": "performance-testing-review-ai-review", "description": "You are an expert AI-powered code review specialist combining automated static analysis, intelligent pattern recognition, and modern DevOps practices. Leverage AI tools (GitHub Copilot, Qodo, GPT-5, C", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "performance-testing-review-multi-agent-review", @@ -6027,7 +6696,8 @@ "name": "performance-testing-review-multi-agent-review", "description": "Use when working with performance testing review multi agent review", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "personal-tool-builder", @@ -6036,16 +6706,18 @@ "name": "personal-tool-builder", "description": "Expert in building custom tools that solve your own problems first. The best products often start as personal tools - scratch your own itch, build for yourself, then discover others have the same i...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "php-pro", "path": "skills\\php-pro", "category": "uncategorized", "name": "php-pro", - "description": "Write idiomatic PHP code with generators, iterators, SPL data\nstructures, and modern OOP features. Use PROACTIVELY for high-performance PHP\napplications.\n", + "description": "- Working on php pro tasks or workflows - Needing guidance, best practices, or checklists for php pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pipedrive-automation", @@ -6054,7 +6726,8 @@ "name": "pipedrive-automation", "description": "Automate Pipedrive CRM operations including deals, contacts, organizations, activities, notes, and pipeline management via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "plaid-fintech", @@ -6063,7 +6736,8 @@ "name": "plaid-fintech", "description": "Expert patterns for Plaid API integration including Link token flows, transactions sync, identity verification, Auth for ACH, balance checks, webhook handling, and fintech compliance best practices...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "plan-writing", @@ -6072,7 +6746,8 @@ "name": "plan-writing", "description": "Structured task planning with clear breakdowns, dependencies, and verification criteria. Use when implementing features, refactoring, or any multi-step work.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "planning-with-files", @@ -6081,7 +6756,8 @@ "name": "planning-with-files", "description": "Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requirin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "playwright-skill", @@ -6090,7 +6766,8 @@ "name": "playwright-skill", "description": "Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "podcast-generation", @@ -6099,7 +6776,8 @@ "name": "podcast-generation", "description": "Generate AI-powered podcast-style audio narratives using Azure OpenAI's GPT Realtime Mini model via WebSocket. Use when building text-to-speech features, audio narrative generation, podcast creatio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "popup-cro", @@ -6108,16 +6786,18 @@ "name": "popup-cro", "description": "Create and optimize popups, modals, overlays, slide-ins, and banners to increase conversions without harming user experience or brand trust.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "posix-shell-pro", "path": "skills\\posix-shell-pro", "category": "uncategorized", "name": "posix-shell-pro", - "description": "Expert in strict POSIX sh scripting for maximum portability across\nUnix-like systems. Specializes in shell scripts that run on any\nPOSIX-compliant shell (dash, ash, sh, bash --posix).\n", + "description": "- Working on posix shell pro tasks or workflows - Needing guidance, best practices, or checklists for posix shell pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postgres-best-practices", @@ -6126,7 +6806,8 @@ "name": "postgres-best-practices", "description": "Postgres performance optimization and best practices from Supabase. Use this skill when writing, reviewing, or optimizing Postgres queries, schema designs, or database configurations.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postgresql", @@ -6135,7 +6816,8 @@ "name": "postgresql", "description": "Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postgresql-optimization", @@ -6144,7 +6826,8 @@ "name": "postgresql-optimization", "description": "PostgreSQL database optimization workflow for query tuning, indexing strategies, performance analysis, and production database management.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "posthog-automation", @@ -6153,7 +6836,8 @@ "name": "posthog-automation", "description": "Automate PostHog tasks via Rube MCP (Composio): events, feature flags, projects, user profiles, annotations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postmark-automation", @@ -6162,7 +6846,8 @@ "name": "postmark-automation", "description": "Automate Postmark email delivery tasks via Rube MCP (Composio): send templated emails, manage templates, monitor delivery stats and bounces. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "postmortem-writing", @@ -6171,7 +6856,8 @@ "name": "postmortem-writing", "description": "Write effective blameless postmortems with root cause analysis, timelines, and action items. Use when conducting incident reviews, writing postmortem documents, or improving incident response proce...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "powershell-windows", @@ -6180,7 +6866,8 @@ "name": "powershell-windows", "description": "PowerShell Windows patterns. Critical pitfalls, operator syntax, error handling.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pptx-official", @@ -6189,7 +6876,8 @@ "name": "pptx-official", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pricing-strategy", @@ -6198,7 +6886,8 @@ "name": "pricing-strategy", "description": "Design pricing, packaging, and monetization strategies based on value, customer willingness to pay, and growth objectives.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prisma-expert", @@ -6207,7 +6896,8 @@ "name": "prisma-expert", "description": "Prisma ORM expert for schema design, migrations, query optimization, relations modeling, and database operations. Use PROACTIVELY for Prisma schema issues, migration problems, query performance, re...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "privilege-escalation-methods", @@ -6216,7 +6906,8 @@ "name": "privilege-escalation-methods", "description": "This skill should be used when the user asks to \"escalate privileges\", \"get root access\", \"become administrator\", \"privesc techniques\", \"abuse sudo\", \"exploit SUID binaries\", \"K...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "product-manager-toolkit", @@ -6225,7 +6916,8 @@ "name": "product-manager-toolkit", "description": "Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use for feature prioritizati...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "production-code-audit", @@ -6234,25 +6926,28 @@ "name": "production-code-audit", "description": "Autonomously deep-scan entire codebase line-by-line, understand architecture and patterns, then systematically transform it to production-grade, corporate-level professional quality with optimizations", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "production-scheduling", "path": "skills\\production-scheduling", "category": "uncategorized", "name": "production-scheduling", - "description": "Codified expertise for production scheduling, job sequencing, line balancing, changeover optimisation, and bottleneck resolution in discrete and batch manufacturing. Informed by production schedulers with 15+ years experience. Includes TOC/drum-buffer-rope, SMED, OEE analysis, disruption response frameworks, and ERP/MES interaction patterns. Use when scheduling production, resolving bottlenecks, optimising changeovers, responding to disruptions, or balancing manufacturing lines.\n", + "description": "Use this skill when planning manufacturing operations, sequencing jobs to minimize changeover times, balancing production lines, resolving factory bottlenecks, or responding to unexpected equipment downtime and supply disruptions.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "programmatic-seo", "path": "skills\\programmatic-seo", "category": "uncategorized", "name": "programmatic-seo", - "description": "Design and evaluate programmatic SEO strategies for creating SEO-driven pages at scale using templates and structured data. Use when the user mentions programmatic SEO, pages at scale, template pages, directory pages, location pages, comparison pages, integration pages, or keyword-pattern page generation. This skill focuses on feasibility, strategy, and page system design\u2014not execution unless explicitly requested.\n", + "description": "---", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "projection-patterns", @@ -6261,7 +6956,8 @@ "name": "projection-patterns", "description": "Build read models and projections from event streams. Use when implementing CQRS read sides, building materialized views, or optimizing query performance in event-sourced systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prometheus-configuration", @@ -6270,7 +6966,8 @@ "name": "prometheus-configuration", "description": "Set up Prometheus for comprehensive metric collection, storage, and monitoring of infrastructure and applications. Use when implementing metrics collection, setting up monitoring infrastructure, or...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-caching", @@ -6279,7 +6976,8 @@ "name": "prompt-caching", "description": "Caching strategies for LLM prompts including Anthropic prompt caching, response caching, and CAG (Cache Augmented Generation) Use when: prompt caching, cache prompt, response cache, cag, cache augm...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "prompt-engineer", @@ -6288,7 +6986,8 @@ "name": "prompt-engineer", "description": "Transforms user prompts into optimized prompts using frameworks (RTF, RISEN, Chain of Thought, RODES, Chain of Density, RACE, RISE, STAR, SOAP, CLEAR, GROW)", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-engineering", @@ -6297,7 +6996,8 @@ "name": "prompt-engineering", "description": "Expert guide on prompt engineering patterns, best practices, and optimization techniques. Use when user wants to improve prompts, learn prompting strategies, or debug agent behavior.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-engineering-patterns", @@ -6306,7 +7006,8 @@ "name": "prompt-engineering-patterns", "description": "Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability in production. Use when optimizing prompts, improving LLM outputs, or designing productio...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "prompt-library", @@ -6315,7 +7016,8 @@ "name": "prompt-library", "description": "Curated collection of high-quality prompts for various use cases. Includes role-based prompts, task-specific templates, and prompt refinement techniques. Use when user needs prompt templates, role-...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "protocol-reverse-engineering", @@ -6324,7 +7026,8 @@ "name": "protocol-reverse-engineering", "description": "Master network protocol reverse engineering including packet analysis, protocol dissection, and custom protocol documentation. Use when analyzing network traffic, understanding proprietary protocol...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pydantic-models-py", @@ -6333,7 +7036,8 @@ "name": "pydantic-models-py", "description": "Create Pydantic models following the multi-model pattern with Base, Create, Update, Response, and InDB variants. Use when defining API request/response schemas, database models, or data validation ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "pypict-skill", @@ -6342,7 +7046,8 @@ "name": "pypict-skill", "description": "Pairwise test generation", "risk": "safe", - "source": "https://github.com/omkamal/pypict-claude-skill/blob/main/SKILL.md" + "source": "https://github.com/omkamal/pypict-claude-skill/blob/main/SKILL.md", + "date_added": "2025-02-26" }, { "id": "python-development-python-scaffold", @@ -6351,7 +7056,8 @@ "name": "python-development-python-scaffold", "description": "You are a Python project architecture expert specializing in scaffolding production-ready Python applications. Generate complete project structures with modern tooling (uv, FastAPI, Django), type hint", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-fastapi-development", @@ -6360,7 +7066,8 @@ "name": "python-fastapi-development", "description": "Python FastAPI backend development with async patterns, SQLAlchemy, Pydantic, authentication, and production API patterns.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "python-packaging", @@ -6369,7 +7076,8 @@ "name": "python-packaging", "description": "Create distributable Python packages with proper project structure, setup.py/pyproject.toml, and publishing to PyPI. Use when packaging Python libraries, creating CLI tools, or distributing Python ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-patterns", @@ -6378,7 +7086,8 @@ "name": "python-patterns", "description": "Python development principles and decision-making. Framework selection, async patterns, type hints, project structure. Teaches thinking, not copying.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-performance-optimization", @@ -6387,16 +7096,18 @@ "name": "python-performance-optimization", "description": "Profile and optimize Python code using cProfile, memory profilers, and performance best practices. Use when debugging slow Python code, optimizing bottlenecks, or improving application performance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-pro", "path": "skills\\python-pro", "category": "uncategorized", "name": "python-pro", - "description": "Master Python 3.12+ with modern features, async programming,\nperformance optimization, and production-ready practices. Expert in the latest\nPython ecosystem including uv, ruff, pydantic, and FastAPI. Use PROACTIVELY\nfor Python development, optimization, or advanced Python patterns.\n", + "description": "You are a Python expert specializing in modern Python 3.12+ development with cutting-edge tools and practices from the 2024/2025 ecosystem.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "python-testing-patterns", @@ -6405,25 +7116,28 @@ "name": "python-testing-patterns", "description": "Implement comprehensive testing strategies with pytest, fixtures, mocking, and test-driven development. Use when writing Python tests, setting up test suites, or implementing testing best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "quality-nonconformance", "path": "skills\\quality-nonconformance", "category": "uncategorized", "name": "quality-nonconformance", - "description": "Codified expertise for quality control, non-conformance investigation, root cause analysis, corrective action, and supplier quality management in regulated manufacturing. Informed by quality engineers with 15+ years experience across FDA, IATF 16949, and AS9100 environments. Includes NCR lifecycle management, CAPA systems, SPC interpretation, and audit methodology. Use when investigating non-conformances, performing root cause analysis, managing CAPAs, interpreting SPC data, or handling supplier quality issues.\n", + "description": "Use this skill when investigating product defects or process deviations, performing root cause analysis (RCA), managing Corrective and Preventive Actions (CAPA), interpreting Statistical Process Control (SPC) data, or auditing supplier quality.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "quant-analyst", "path": "skills\\quant-analyst", "category": "uncategorized", "name": "quant-analyst", - "description": "Build financial models, backtest trading strategies, and analyze\nmarket data. Implements risk metrics, portfolio optimization, and statistical\narbitrage. Use PROACTIVELY for quantitative finance, trading algorithms, or\nrisk analysis.\n", + "description": "- Working on quant analyst tasks or workflows - Needing guidance, best practices, or checklists for quant analyst", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "radix-ui-design-system", @@ -6432,7 +7146,8 @@ "name": "radix-ui-design-system", "description": "Build accessible design systems with Radix UI primitives. Headless component customization, theming strategies, and compound component patterns for production-grade UI libraries.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "rag-engineer", @@ -6441,7 +7156,8 @@ "name": "rag-engineer", "description": "Expert in building Retrieval-Augmented Generation systems. Masters embedding models, vector databases, chunking strategies, and retrieval optimization for LLM applications. Use when: building RAG, ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "rag-implementation", @@ -6450,7 +7166,8 @@ "name": "rag-implementation", "description": "RAG (Retrieval-Augmented Generation) implementation workflow covering embedding selection, vector database setup, chunking strategies, and retrieval optimization.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "react-best-practices", @@ -6459,7 +7176,8 @@ "name": "react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance pat...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-flow-architect", @@ -6468,7 +7186,8 @@ "name": "react-flow-architect", "description": "Expert ReactFlow architect for building interactive graph applications with hierarchical node-edge systems, performance optimization, and auto-layout integration. Use when Claude needs to create or...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-flow-node-ts", @@ -6477,7 +7196,8 @@ "name": "react-flow-node-ts", "description": "Create React Flow node components with TypeScript types, handles, and Zustand integration. Use when building custom nodes for React Flow canvas, creating visual workflow editors, or implementing no...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-modernization", @@ -6486,7 +7206,8 @@ "name": "react-modernization", "description": "Upgrade React applications to latest versions, migrate from class components to hooks, and adopt concurrent features. Use when modernizing React codebases, migrating to React Hooks, or upgrading to...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-native-architecture", @@ -6495,7 +7216,8 @@ "name": "react-native-architecture", "description": "Build production React Native apps with Expo, navigation, native modules, offline sync, and cross-platform patterns. Use when developing mobile apps, implementing native integrations, or architecti...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-nextjs-development", @@ -6504,7 +7226,8 @@ "name": "react-nextjs-development", "description": "React and Next.js 14+ application development with App Router, Server Components, TypeScript, Tailwind CSS, and modern frontend patterns.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "react-patterns", @@ -6513,7 +7236,8 @@ "name": "react-patterns", "description": "Modern React patterns and principles. Hooks, composition, performance, TypeScript best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-state-management", @@ -6522,7 +7246,8 @@ "name": "react-state-management", "description": "Master modern React state management with Redux Toolkit, Zustand, Jotai, and React Query. Use when setting up global state, managing server state, or choosing between state management solutions.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "react-ui-patterns", @@ -6531,7 +7256,8 @@ "name": "react-ui-patterns", "description": "Modern React UI patterns for loading states, error handling, and data fetching. Use when building UI components, handling async data, or managing UI states.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "readme", @@ -6540,7 +7266,8 @@ "name": "readme", "description": "When the user wants to create or update a README.md file for a project. Also use when the user says 'write readme,' 'create readme,' 'document this project,' 'project documentation,' or asks for he...", "risk": "safe", - "source": "https://github.com/Shpigford/skills/tree/main/readme" + "source": "https://github.com/Shpigford/skills/tree/main/readme", + "date_added": "2025-02-26" }, { "id": "receiving-code-review", @@ -6549,7 +7276,8 @@ "name": "receiving-code-review", "description": "Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performat...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "red-team-tactics", @@ -6558,7 +7286,8 @@ "name": "red-team-tactics", "description": "Red team tactics principles based on MITRE ATT&CK. Attack phases, detection evasion, reporting.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "red-team-tools", @@ -6567,7 +7296,8 @@ "name": "red-team-tools", "description": "This skill should be used when the user asks to \"follow red team methodology\", \"perform bug bounty hunting\", \"automate reconnaissance\", \"hunt for XSS vulnerabilities\", \"enumerate su...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "reddit-automation", @@ -6576,16 +7306,18 @@ "name": "reddit-automation", "description": "Automate Reddit tasks via Rube MCP (Composio): search subreddits, create posts, manage comments, and browse top content. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "reference-builder", "path": "skills\\reference-builder", "category": "uncategorized", "name": "reference-builder", - "description": "Creates exhaustive technical references and API documentation.\nGenerates comprehensive parameter listings, configuration guides, and\nsearchable reference materials. Use PROACTIVELY for API docs, configuration\nreferences, or complete technical specifications.\n", + "description": "- Working on reference builder tasks or workflows - Needing guidance, best practices, or checklists for reference builder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "referral-program", @@ -6594,7 +7326,8 @@ "name": "referral-program", "description": "When the user wants to create, optimize, or analyze a referral program, affiliate program, or word-of-mouth strategy. Also use when the user mentions 'referral,' 'affiliate,' 'ambassador,' 'word of...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "remotion-best-practices", @@ -6603,7 +7336,8 @@ "name": "remotion-best-practices", "description": "Best practices for Remotion - Video creation in React", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "render-automation", @@ -6612,7 +7346,8 @@ "name": "render-automation", "description": "Automate Render tasks via Rube MCP (Composio): services, deployments, projects. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "requesting-code-review", @@ -6621,7 +7356,8 @@ "name": "requesting-code-review", "description": "Use when completing tasks, implementing major features, or before merging to verify work meets requirements", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "research-engineer", @@ -6630,34 +7366,38 @@ "name": "research-engineer", "description": "An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal impl...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "returns-reverse-logistics", "path": "skills\\returns-reverse-logistics", "category": "uncategorized", "name": "returns-reverse-logistics", - "description": "Codified expertise for returns authorisation, receipt and inspection, disposition decisions, refund processing, fraud detection, and warranty claims management. Informed by returns operations managers with 15+ years experience. Includes grading frameworks, disposition economics, fraud pattern recognition, and vendor recovery processes. Use when handling product returns, reverse logistics, refund decisions, return fraud detection, or warranty claims.\n", + "description": "Use this skill when managing the product return lifecycle, including authorization, physical inspection, making disposition decisions (e.g., restock vs. liquidator), detecting return fraud, or processing warranty claims.", "risk": "safe", - "source": "https://github.com/ai-evos/agent-skills" + "source": "https://github.com/ai-evos/agent-skills", + "date_added": "2025-02-26" }, { "id": "reverse-engineer", "path": "skills\\reverse-engineer", "category": "uncategorized", "name": "reverse-engineer", - "description": "Expert reverse engineer specializing in binary analysis,\ndisassembly, decompilation, and software analysis. Masters IDA Pro, Ghidra,\nradare2, x64dbg, and modern RE toolchains. Handles executable analysis,\nlibrary inspection, protocol extraction, and vulnerability research. Use\nPROACTIVELY for binary analysis, CTF challenges, security research, or\nunderstanding undocumented software.\n", + "description": "- IDAPython (IDA Pro scripting) - Ghidra scripting (Java/Python via Jython) - r2pipe (radare2 Python API) - pwntools (CTF/exploitation toolkit) - capstone (disassembly framework) - keystone (assembly framework) - unicorn (CPU emulator framework) - an", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "risk-manager", "path": "skills\\risk-manager", "category": "uncategorized", "name": "risk-manager", - "description": "Monitor portfolio risk, R-multiples, and position limits. Creates\nhedging strategies, calculates expectancy, and implements stop-losses. Use\nPROACTIVELY for risk assessment, trade tracking, or portfolio protection.\n", + "description": "- Working on risk manager tasks or workflows - Needing guidance, best practices, or checklists for risk manager", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "risk-metrics-calculation", @@ -6666,16 +7406,18 @@ "name": "risk-metrics-calculation", "description": "Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ruby-pro", "path": "skills\\ruby-pro", "category": "uncategorized", "name": "ruby-pro", - "description": "Write idiomatic Ruby code with metaprogramming, Rails patterns, and\nperformance optimization. Specializes in Ruby on Rails, gem development, and\ntesting frameworks. Use PROACTIVELY for Ruby refactoring, optimization, or\ncomplex Ruby features.\n", + "description": "- Working on ruby pro tasks or workflows - Needing guidance, best practices, or checklists for ruby pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "rust-async-patterns", @@ -6684,16 +7426,18 @@ "name": "rust-async-patterns", "description": "Master Rust async programming with Tokio, async traits, error handling, and concurrent patterns. Use when building async Rust applications, implementing concurrent systems, or debugging async code.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "rust-pro", "path": "skills\\rust-pro", "category": "uncategorized", "name": "rust-pro", - "description": "Master Rust 1.75+ with modern async patterns, advanced type system\nfeatures, and production-ready systems programming. Expert in the latest Rust\necosystem including Tokio, axum, and cutting-edge crates. Use PROACTIVELY for\nRust development, performance optimization, or systems programming.\n", + "description": "You are a Rust expert specializing in modern Rust 1.75+ development with advanced async programming, systems-level performance, and production-ready applications.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "saga-orchestration", @@ -6702,16 +7446,18 @@ "name": "saga-orchestration", "description": "Implement saga patterns for distributed transactions and cross-aggregate workflows. Use when coordinating multi-step business processes, handling compensating transactions, or managing long-running...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sales-automator", "path": "skills\\sales-automator", "category": "uncategorized", "name": "sales-automator", - "description": "Draft cold emails, follow-ups, and proposal templates. Creates\npricing pages, case studies, and sales scripts. Use PROACTIVELY for sales\noutreach or lead nurturing.\n", + "description": "- Working on sales automator tasks or workflows - Needing guidance, best practices, or checklists for sales automator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "salesforce-automation", @@ -6720,7 +7466,8 @@ "name": "salesforce-automation", "description": "Automate Salesforce tasks via Rube MCP (Composio): leads, contacts, accounts, opportunities, SOQL queries. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "salesforce-development", @@ -6729,7 +7476,8 @@ "name": "salesforce-development", "description": "Expert patterns for Salesforce platform development including Lightning Web Components (LWC), Apex triggers and classes, REST/Bulk APIs, Connected Apps, and Salesforce DX with scratch orgs and 2nd ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "sast-configuration", @@ -6738,16 +7486,18 @@ "name": "sast-configuration", "description": "Configure Static Application Security Testing (SAST) tools for automated vulnerability detection in application code. Use when setting up security scanning, implementing DevSecOps practices, or aut...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "scala-pro", "path": "skills\\scala-pro", "category": "uncategorized", "name": "scala-pro", - "description": "Master enterprise-grade Scala development with functional\nprogramming, distributed systems, and big data processing. Expert in Apache\nPekko, Akka, Spark, ZIO/Cats Effect, and reactive architectures. Use\nPROACTIVELY for Scala system design, performance optimization, or enterprise\nintegration.\n", + "description": "- Working on scala pro tasks or workflows - Needing guidance, best practices, or checklists for scala pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "scanning-tools", @@ -6756,16 +7506,18 @@ "name": "scanning-tools", "description": "This skill should be used when the user asks to \"perform vulnerability scanning\", \"scan networks for open ports\", \"assess web application security\", \"scan wireless networks\", \"detec...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "schema-markup", "path": "skills\\schema-markup", "category": "uncategorized", "name": "schema-markup", - "description": "Design, validate, and optimize schema.org structured data for eligibility, correctness, and measurable SEO impact. Use when the user wants to add, fix, audit, or scale schema markup (JSON-LD) for rich results. This skill evaluates whether schema should be implemented, what types are valid, and how to deploy safely according to Google guidelines.\n", + "description": "---", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "screen-reader-testing", @@ -6774,7 +7526,8 @@ "name": "screen-reader-testing", "description": "Test web applications with screen readers including VoiceOver, NVDA, and JAWS. Use when validating screen reader compatibility, debugging accessibility issues, or ensuring assistive technology supp...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "screenshots", @@ -6783,7 +7536,8 @@ "name": "screenshots", "description": "Generate marketing screenshots of your app using Playwright. Use when the user wants to create screenshots for Product Hunt, social media, landing pages, or documentation.", "risk": "safe", - "source": "https://github.com/Shpigford/skills/tree/main/screenshots" + "source": "https://github.com/Shpigford/skills/tree/main/screenshots", + "date_added": "2025-02-26" }, { "id": "scroll-experience", @@ -6792,16 +7546,18 @@ "name": "scroll-experience", "description": "Expert in building immersive scroll-driven experiences - parallax storytelling, scroll animations, interactive narratives, and cinematic web experiences. Like NY Times interactives, Apple product p...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "search-specialist", "path": "skills\\search-specialist", "category": "uncategorized", "name": "search-specialist", - "description": "Expert web researcher using advanced search techniques and synthesis. Masters search operators, result filtering, and multi-source verification. Handles competitive analysis and fact-checking. Use PROACTIVELY for deep research, information gathering, or trend analysis.", + "description": "Expert web researcher using advanced search techniques and", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "secrets-management", @@ -6810,7 +7566,8 @@ "name": "secrets-management", "description": "Implement secure secrets management for CI/CD pipelines using Vault, AWS Secrets Manager, or native platform solutions. Use when handling sensitive credentials, rotating secrets, or securing CI/CD ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-audit", @@ -6819,16 +7576,18 @@ "name": "security-audit", "description": "Comprehensive security auditing workflow covering web application testing, API security, penetration testing, vulnerability scanning, and security hardening.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "security-auditor", "path": "skills\\security-auditor", "category": "uncategorized", "name": "security-auditor", - "description": "Expert security auditor specializing in DevSecOps, comprehensive\ncybersecurity, and compliance frameworks. Masters vulnerability assessment,\nthreat modeling, secure authentication (OAuth2/OIDC), OWASP standards, cloud\nsecurity, and security automation. Handles DevSecOps integration, compliance\n(GDPR/HIPAA/SOC2), and incident response. Use PROACTIVELY for security audits,\nDevSecOps, or compliance implementation.\n", + "description": "You are a security auditor specializing in DevSecOps, application security, and comprehensive cybersecurity practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-bluebook-builder", @@ -6837,7 +7596,8 @@ "name": "security-bluebook-builder", "description": "Build security Blue Books for sensitive apps", "risk": "safe", - "source": "https://github.com/SHADOWPR0/security-bluebook-builder" + "source": "https://github.com/SHADOWPR0/security-bluebook-builder", + "date_added": "2025-02-26" }, { "id": "security-compliance-compliance-check", @@ -6846,7 +7606,8 @@ "name": "security-compliance-compliance-check", "description": "You are a compliance expert specializing in regulatory requirements for software systems including GDPR, HIPAA, SOC2, PCI-DSS, and other industry standards. Perform compliance audits and provide im...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-requirement-extraction", @@ -6855,7 +7616,8 @@ "name": "security-requirement-extraction", "description": "Derive security requirements from threat models and business context. Use when translating threats into actionable requirements, creating security user stories, or building security test cases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-scanning-security-dependencies", @@ -6864,7 +7626,8 @@ "name": "security-scanning-security-dependencies", "description": "You are a security expert specializing in dependency vulnerability analysis, SBOM generation, and supply chain security. Scan project dependencies across ecosystems to identify vulnerabilities, ass...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-scanning-security-hardening", @@ -6873,16 +7636,18 @@ "name": "security-scanning-security-hardening", "description": "Coordinate multi-layer security scanning and hardening across application, infrastructure, and compliance controls.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "security-scanning-security-sast", "path": "skills\\security-scanning-security-sast", "category": "uncategorized", "name": "security-scanning-security-sast", - "description": "Static Application Security Testing (SAST) for code vulnerability\nanalysis across multiple languages and frameworks\n", + "description": "Static Application Security Testing (SAST) for comprehensive code vulnerability detection across multiple languages, frameworks, and security patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "segment-automation", @@ -6891,7 +7656,8 @@ "name": "segment-automation", "description": "Automate Segment tasks via Rube MCP (Composio): track events, identify users, manage groups, page views, aliases, batch operations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "segment-cdp", @@ -6900,7 +7666,8 @@ "name": "segment-cdp", "description": "Expert patterns for Segment Customer Data Platform including Analytics.js, server-side tracking, tracking plans with Protocols, identity resolution, destinations configuration, and data governance ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "sendgrid-automation", @@ -6909,7 +7676,8 @@ "name": "sendgrid-automation", "description": "Automate SendGrid email operations including sending emails, managing contacts/lists, sender identities, templates, and analytics via Rube MCP (Composio). Always search tools first for current sche...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "senior-architect", @@ -6918,7 +7686,8 @@ "name": "senior-architect", "description": "Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. I...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "senior-fullstack", @@ -6927,7 +7696,8 @@ "name": "senior-fullstack", "description": "Comprehensive fullstack development skill for building complete web applications with React, Next.js, Node.js, GraphQL, and PostgreSQL. Includes project scaffolding, code quality analysis, architec...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sentry-automation", @@ -6936,115 +7706,128 @@ "name": "sentry-automation", "description": "Automate Sentry tasks via Rube MCP (Composio): manage issues/events, configure alerts, track releases, monitor projects and teams. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-audit", "path": "skills\\seo-audit", "category": "uncategorized", "name": "seo-audit", - "description": "Diagnose and audit SEO issues affecting crawlability, indexation, rankings, and organic performance. Use when the user asks for an SEO audit, technical SEO review, ranking diagnosis, on-page SEO review, meta tag audit, or SEO health check. This skill identifies issues and prioritizes actions but does not execute changes. For large-scale page creation, use programmatic-seo. For structured data, use schema-markup.\n", + "description": "You are an **SEO diagnostic specialist**. Your role is to **identify, explain, and prioritize SEO issues** that affect organic visibility\u2014**not to implement fixes unless explicitly requested**.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-authority-builder", "path": "skills\\seo-authority-builder", "category": "uncategorized", "name": "seo-authority-builder", - "description": "Analyzes content for E-E-A-T signals and suggests improvements to\nbuild authority and trust. Identifies missing credibility elements. Use\nPROACTIVELY for YMYL topics.\n", + "description": "- Working on seo authority builder tasks or workflows - Needing guidance, best practices, or checklists for seo authority builder", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-cannibalization-detector", "path": "skills\\seo-cannibalization-detector", "category": "uncategorized", "name": "seo-cannibalization-detector", - "description": "Analyzes multiple provided pages to identify keyword overlap and\npotential cannibalization issues. Suggests differentiation strategies. Use\nPROACTIVELY when reviewing similar content.\n", + "description": "- Working on seo cannibalization detector tasks or workflows - Needing guidance, best practices, or checklists for seo cannibalization detector", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-auditor", "path": "skills\\seo-content-auditor", "category": "uncategorized", "name": "seo-content-auditor", - "description": "Analyzes provided content for quality, E-E-A-T signals, and SEO\nbest practices. Scores content and provides improvement recommendations based\non established guidelines. Use PROACTIVELY for content review.\n", + "description": "- Working on seo content auditor tasks or workflows - Needing guidance, best practices, or checklists for seo content auditor", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-planner", "path": "skills\\seo-content-planner", "category": "uncategorized", "name": "seo-content-planner", - "description": "Creates comprehensive content outlines and topic clusters for SEO.\nPlans content calendars and identifies topic gaps. Use PROACTIVELY for content\nstrategy and planning.\n", + "description": "- Working on seo content planner tasks or workflows - Needing guidance, best practices, or checklists for seo content planner", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-refresher", "path": "skills\\seo-content-refresher", "category": "uncategorized", "name": "seo-content-refresher", - "description": "Identifies outdated elements in provided content and suggests\nupdates to maintain freshness. Finds statistics, dates, and examples that need\nupdating. Use PROACTIVELY for older content.\n", + "description": "- Working on seo content refresher tasks or workflows - Needing guidance, best practices, or checklists for seo content refresher", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-content-writer", "path": "skills\\seo-content-writer", "category": "uncategorized", "name": "seo-content-writer", - "description": "Writes SEO-optimized content based on provided keywords and topic\nbriefs. Creates engaging, comprehensive content following best practices. Use\nPROACTIVELY for content creation tasks.\n", + "description": "- Working on seo content writer tasks or workflows - Needing guidance, best practices, or checklists for seo content writer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-fundamentals", "path": "skills\\seo-fundamentals", "category": "uncategorized", "name": "seo-fundamentals", - "description": "Core principles of SEO including E-E-A-T, Core Web Vitals, technical foundations, content quality, and how modern search engines evaluate pages. This skill explains *why* SEO works, not how to execute specific optimizations.\n", + "description": "---", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-keyword-strategist", "path": "skills\\seo-keyword-strategist", "category": "uncategorized", "name": "seo-keyword-strategist", - "description": "Analyzes keyword usage in provided content, calculates density,\nsuggests semantic variations and LSI keywords based on the topic. Prevents\nover-optimization. Use PROACTIVELY for content optimization.\n", + "description": "- Working on seo keyword strategist tasks or workflows - Needing guidance, best practices, or checklists for seo keyword strategist", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-meta-optimizer", "path": "skills\\seo-meta-optimizer", "category": "uncategorized", "name": "seo-meta-optimizer", - "description": "Creates optimized meta titles, descriptions, and URL suggestions\nbased on character limits and best practices. Generates compelling,\nkeyword-rich metadata. Use PROACTIVELY for new content.\n", + "description": "- Working on seo meta optimizer tasks or workflows - Needing guidance, best practices, or checklists for seo meta optimizer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-snippet-hunter", "path": "skills\\seo-snippet-hunter", "category": "uncategorized", "name": "seo-snippet-hunter", - "description": "Formats content to be eligible for featured snippets and SERP\nfeatures. Creates snippet-optimized content blocks based on best practices.\nUse PROACTIVELY for question-based content.\n", + "description": "- Working on seo snippet hunter tasks or workflows - Needing guidance, best practices, or checklists for seo snippet hunter", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "seo-structure-architect", "path": "skills\\seo-structure-architect", "category": "uncategorized", "name": "seo-structure-architect", - "description": "Analyzes and optimizes content structure including header\nhierarchy, suggests schema markup, and internal linking opportunities. Creates\nsearch-friendly content organization. Use PROACTIVELY for content structuring.\n", + "description": "- Working on seo structure architect tasks or workflows - Needing guidance, best practices, or checklists for seo structure architect", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "server-management", @@ -7053,7 +7836,8 @@ "name": "server-management", "description": "Server management principles and decision-making. Process management, monitoring strategy, and scaling decisions. Teaches thinking, not commands.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "service-mesh-expert", @@ -7062,7 +7846,8 @@ "name": "service-mesh-expert", "description": "Expert service mesh architect specializing in Istio, Linkerd, and cloud-native networking patterns. Masters traffic management, security policies, observability integration, and multi-cluster mesh con", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "service-mesh-observability", @@ -7071,7 +7856,8 @@ "name": "service-mesh-observability", "description": "Implement comprehensive observability for service meshes including distributed tracing, metrics, and visualization. Use when setting up mesh monitoring, debugging latency issues, or implementing SL...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shader-programming-glsl", @@ -7080,7 +7866,8 @@ "name": "shader-programming-glsl", "description": "Expert guide for writing efficient GLSL shaders (Vertex/Fragment) for web and game engines, covering syntax, uniforms, and common effects.", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sharp-edges", @@ -7089,7 +7876,8 @@ "name": "sharp-edges", "description": "Identify error-prone APIs and dangerous configurations", "risk": "safe", - "source": "https://github.com/trailofbits/skills/tree/main/plugins/sharp-edges" + "source": "https://github.com/trailofbits/skills/tree/main/plugins/sharp-edges", + "date_added": "2025-02-26" }, { "id": "shellcheck-configuration", @@ -7098,7 +7886,8 @@ "name": "shellcheck-configuration", "description": "Master ShellCheck static analysis configuration and usage for shell script quality. Use when setting up linting infrastructure, fixing code issues, or ensuring script portability.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shodan-reconnaissance", @@ -7107,7 +7896,8 @@ "name": "shodan-reconnaissance", "description": "This skill should be used when the user asks to \"search for exposed devices on the internet,\" \"perform Shodan reconnaissance,\" \"find vulnerable services using Shodan,\" \"scan IP ranges...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shopify-apps", @@ -7116,7 +7906,8 @@ "name": "shopify-apps", "description": "Expert patterns for Shopify app development including Remix/React Router apps, embedded apps with App Bridge, webhook handling, GraphQL Admin API, Polaris components, billing, and app extensions. U...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "shopify-automation", @@ -7125,16 +7916,18 @@ "name": "shopify-automation", "description": "Automate Shopify tasks via Rube MCP (Composio): products, orders, customers, inventory, collections. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "shopify-development", "path": "skills\\shopify-development", "category": "uncategorized", "name": "shopify-development", - "description": "Build Shopify apps, extensions, themes using GraphQL Admin API, Shopify CLI, Polaris UI, and Liquid.\nTRIGGER: \"shopify\", \"shopify app\", \"checkout extension\", \"admin extension\", \"POS extension\",\n\"shopify theme\", \"liquid template\", \"polaris\", \"shopify graphql\", \"shopify webhook\",\n\"shopify billing\", \"app subscription\", \"metafields\", \"shopify functions\"\n", + "description": "Use this skill when the user asks about:", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "signup-flow-cro", @@ -7143,7 +7936,8 @@ "name": "signup-flow-cro", "description": "When the user wants to optimize signup, registration, account creation, or trial activation flows. Also use when the user mentions \"signup conversions,\" \"registration friction,\" \"signup...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "similarity-search-patterns", @@ -7152,7 +7946,8 @@ "name": "similarity-search-patterns", "description": "Implement efficient similarity search with vector databases. Use when building semantic search, implementing nearest neighbor queries, or optimizing retrieval performance.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-creator", @@ -7161,7 +7956,8 @@ "name": "skill-creator", "description": "This skill should be used when the user asks to create a new skill, build a skill, make a custom skill, develop a CLI skill, or wants to extend the CLI with new capabilities. Automates the entire s...", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-creator-ms", @@ -7170,7 +7966,8 @@ "name": "skill-creator-ms", "description": "Guide for creating effective skills for AI coding agents working with Azure SDKs and Microsoft Foundry services. Use when creating new skills or updating existing skills.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-developer", @@ -7179,7 +7976,8 @@ "name": "skill-developer", "description": "Create and manage Claude Code skills following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger patterns, working with hooks, debugging skil...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "skill-rails-upgrade", @@ -7188,7 +7986,8 @@ "name": "skill-rails-upgrade", "description": "Analyze Rails apps and provide upgrade assessments", "risk": "safe", - "source": "https://github.com/robzolkos/skill-rails-upgrade" + "source": "https://github.com/robzolkos/skill-rails-upgrade", + "date_added": "2025-02-26" }, { "id": "skill-seekers", @@ -7197,7 +7996,8 @@ "name": "skill-seekers", "description": "-Automatically convert documentation websites, GitHub repositories, and PDFs into Claude AI skills in minutes.", "risk": "safe", - "source": "https://github.com/yusufkaraaslan/Skill_Seekers" + "source": "https://github.com/yusufkaraaslan/Skill_Seekers", + "date_added": "2025-02-26" }, { "id": "slack-automation", @@ -7206,7 +8006,8 @@ "name": "slack-automation", "description": "Automate Slack messaging, channel management, search, reactions, and threads via Rube MCP (Composio). Send messages, search conversations, manage channels/users, and react to messages programmatica...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "slack-bot-builder", @@ -7215,7 +8016,8 @@ "name": "slack-bot-builder", "description": "Build Slack apps using the Bolt framework across Python, JavaScript, and Java. Covers Block Kit for rich UIs, interactive components, slash commands, event handling, OAuth installation flows, and W...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "slack-gif-creator", @@ -7224,7 +8026,8 @@ "name": "slack-gif-creator", "description": "Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like \"...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "slo-implementation", @@ -7233,7 +8036,8 @@ "name": "slo-implementation", "description": "Define and implement Service Level Indicators (SLIs) and Service Level Objectives (SLOs) with error budgets and alerting. Use when establishing reliability targets, implementing SRE practices, or m...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "smtp-penetration-testing", @@ -7242,7 +8046,8 @@ "name": "smtp-penetration-testing", "description": "This skill should be used when the user asks to \"perform SMTP penetration testing\", \"enumerate email users\", \"test for open mail relays\", \"grab SMTP banners\", \"brute force email cre...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "social-content", @@ -7251,7 +8056,8 @@ "name": "social-content", "description": "When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms. Also use when the user mentions 'LinkedIn...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "software-architecture", @@ -7260,7 +8066,8 @@ "name": "software-architecture", "description": "Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "solidity-security", @@ -7269,7 +8076,8 @@ "name": "solidity-security", "description": "Master smart contract security best practices to prevent common vulnerabilities and implement secure Solidity patterns. Use when writing smart contracts, auditing existing contracts, or implementin...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "spark-optimization", @@ -7278,7 +8086,8 @@ "name": "spark-optimization", "description": "Optimize Apache Spark jobs with partitioning, caching, shuffle optimization, and memory tuning. Use when improving Spark performance, debugging slow jobs, or scaling data processing pipelines.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sql-injection-testing", @@ -7287,7 +8096,8 @@ "name": "sql-injection-testing", "description": "This skill should be used when the user asks to \"test for SQL injection vulnerabilities\", \"perform SQLi attacks\", \"bypass authentication using SQL injection\", \"extract database inform...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sql-optimization-patterns", @@ -7296,16 +8106,18 @@ "name": "sql-optimization-patterns", "description": "Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sql-pro", "path": "skills\\sql-pro", "category": "uncategorized", "name": "sql-pro", - "description": "Master modern SQL with cloud-native databases, OLTP/OLAP\noptimization, and advanced query techniques. Expert in performance tuning,\ndata modeling, and hybrid analytical systems. Use PROACTIVELY for database\noptimization or complex analysis.\n", + "description": "You are an expert SQL specialist mastering modern database systems, performance optimization, and advanced analytical techniques across cloud-native and hybrid OLTP/OLAP environments.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "sqlmap-database-pentesting", @@ -7314,7 +8126,8 @@ "name": "sqlmap-database-pentesting", "description": "This skill should be used when the user asks to \"automate SQL injection testing,\" \"enumerate database structure,\" \"extract database credentials using sqlmap,\" \"dump tables and columns...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "square-automation", @@ -7323,7 +8136,8 @@ "name": "square-automation", "description": "Automate Square tasks via Rube MCP (Composio): payments, orders, invoices, locations. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ssh-penetration-testing", @@ -7332,61 +8146,68 @@ "name": "ssh-penetration-testing", "description": "This skill should be used when the user asks to \"pentest SSH services\", \"enumerate SSH configurations\", \"brute force SSH credentials\", \"exploit SSH vulnerabilities\", \"perform SSH tu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-analyst", "path": "skills\\startup-analyst", "category": "uncategorized", "name": "startup-analyst", - "description": "Expert startup business analyst specializing in market sizing,\nfinancial modeling, competitive analysis, and strategic planning for\nearly-stage companies. Use PROACTIVELY when the user asks about market\nopportunity, TAM/SAM/SOM, financial projections, unit economics, competitive\nlandscape, team planning, startup metrics, or business strategy for pre-seed\nthrough Series A startups.\n", + "description": "- Working on startup analyst tasks or workflows - Needing guidance, best practices, or checklists for startup analyst", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-business-analyst-business-case", "path": "skills\\startup-business-analyst-business-case", "category": "uncategorized", "name": "startup-business-analyst-business-case", - "description": "Generate comprehensive investor-ready business case document with\nmarket, solution, financials, and strategy\n", + "description": "Generate a comprehensive, investor-ready business case document covering market opportunity, solution, competitive landscape, financial projections, team, risks, and funding ask for startup fundraising and strategic planning.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-business-analyst-financial-projections", "path": "skills\\startup-business-analyst-financial-projections", "category": "uncategorized", "name": "startup-business-analyst-financial-projections", - "description": "Create detailed 3-5 year financial model with revenue, costs, cash\nflow, and scenarios\n", + "description": "Create a comprehensive 3-5 year financial model with revenue projections, cost structure, headcount planning, cash flow analysis, and three-scenario modeling (conservative, base, optimistic) for startup financial planning and fundraising.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-business-analyst-market-opportunity", "path": "skills\\startup-business-analyst-market-opportunity", "category": "uncategorized", "name": "startup-business-analyst-market-opportunity", - "description": "Generate comprehensive market opportunity analysis with TAM/SAM/SOM\ncalculations\n", + "description": "Generate a comprehensive market opportunity analysis for a startup, including Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) calculations using both bottom-up and top-down methodologies.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-financial-modeling", "path": "skills\\startup-financial-modeling", "category": "uncategorized", "name": "startup-financial-modeling", - "description": "This skill should be used when the user asks to \\\\\\\"create financial\nprojections\", \"build a financial model\", \"forecast revenue\", \"calculate burn\nrate\", \"estimate runway\", \"model cash flow\", or requests 3-5 year financial\nplanning for a startup.\n", + "description": "Build comprehensive 3-5 year financial models with revenue projections, cost structures, cash flow analysis, and scenario planning for early-stage startups.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "startup-metrics-framework", "path": "skills\\startup-metrics-framework", "category": "uncategorized", "name": "startup-metrics-framework", - "description": "This skill should be used when the user asks about \\\\\\\"key startup\nmetrics\", \"SaaS metrics\", \"CAC and LTV\", \"unit economics\", \"burn multiple\",\n\"rule of 40\", \"marketplace metrics\", or requests guidance on tracking and\noptimizing business performance metrics.\n", + "description": "Comprehensive guide to tracking, calculating, and optimizing key performance metrics for different startup business models from seed through Series A.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "stitch-ui-design", @@ -7395,7 +8216,8 @@ "name": "stitch-ui-design", "description": "Expert guide for creating effective prompts for Google Stitch AI UI design tool. Use when user wants to design UI/UX in Stitch, create app interfaces, generate mobile/web designs, or needs help cra...", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "stride-analysis-patterns", @@ -7404,7 +8226,8 @@ "name": "stride-analysis-patterns", "description": "Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "stripe-automation", @@ -7413,7 +8236,8 @@ "name": "stripe-automation", "description": "Automate Stripe tasks via Rube MCP (Composio): customers, charges, subscriptions, invoices, products, refunds. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "stripe-integration", @@ -7422,7 +8246,8 @@ "name": "stripe-integration", "description": "Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription systems, or ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "subagent-driven-development", @@ -7431,7 +8256,8 @@ "name": "subagent-driven-development", "description": "Use when executing implementation plans with independent tasks in the current session", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "supabase-automation", @@ -7440,7 +8266,8 @@ "name": "supabase-automation", "description": "Automate Supabase database queries, table management, project administration, storage, edge functions, and SQL execution via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "superpowers-lab", @@ -7449,7 +8276,8 @@ "name": "superpowers-lab", "description": "Lab environment for Claude superpowers", "risk": "safe", - "source": "https://github.com/obra/superpowers-lab" + "source": "https://github.com/obra/superpowers-lab", + "date_added": "2025-02-26" }, { "id": "swiftui-expert-skill", @@ -7458,7 +8286,8 @@ "name": "swiftui-expert-skill", "description": "Write, review, or improve SwiftUI code following best practices for state management, view composition, performance, modern APIs, Swift concurrency, and iOS 26+ Liquid Glass adoption. Use when buil...", "risk": "safe", - "source": "https://github.com/AvdLee/SwiftUI-Agent-Skill/tree/main/swiftui-expert-skill" + "source": "https://github.com/AvdLee/SwiftUI-Agent-Skill/tree/main/swiftui-expert-skill", + "date_added": "2025-02-26" }, { "id": "systematic-debugging", @@ -7467,7 +8296,8 @@ "name": "systematic-debugging", "description": "Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "systems-programming-rust-project", @@ -7476,7 +8306,8 @@ "name": "systems-programming-rust-project", "description": "You are a Rust project architecture expert specializing in scaffolding production-ready Rust applications. Generate complete project structures with cargo tooling, proper module organization, testing", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tailwind-design-system", @@ -7485,7 +8316,8 @@ "name": "tailwind-design-system", "description": "Build scalable design systems with Tailwind CSS, design tokens, component libraries, and responsive patterns. Use when creating component libraries, implementing design systems, or standardizing UI...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tailwind-patterns", @@ -7494,7 +8326,8 @@ "name": "tailwind-patterns", "description": "Tailwind CSS v4 principles. CSS-first configuration, container queries, modern patterns, design token architecture.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tavily-web", @@ -7503,16 +8336,18 @@ "name": "tavily-web", "description": "Web search, content extraction, crawling, and research capabilities using Tavily API", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-orchestrator", "path": "skills\\tdd-orchestrator", "category": "uncategorized", "name": "tdd-orchestrator", - "description": "Master TDD orchestrator specializing in red-green-refactor\ndiscipline, multi-agent workflow coordination, and comprehensive test-driven\ndevelopment practices. Enforces TDD best practices across teams with\nAI-assisted testing and modern frameworks. Use PROACTIVELY for TDD\nimplementation and governance.\n", + "description": "- Working on tdd orchestrator tasks or workflows - Needing guidance, best practices, or checklists for tdd orchestrator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflow", @@ -7521,7 +8356,8 @@ "name": "tdd-workflow", "description": "Test-Driven Development workflow principles. RED-GREEN-REFACTOR cycle.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-cycle", @@ -7530,7 +8366,8 @@ "name": "tdd-workflows-tdd-cycle", "description": "Use when working with tdd workflows tdd cycle", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-green", @@ -7539,7 +8376,8 @@ "name": "tdd-workflows-tdd-green", "description": "Implement the minimal code needed to make failing tests pass in the TDD green phase.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-red", @@ -7548,7 +8386,8 @@ "name": "tdd-workflows-tdd-red", "description": "Generate failing tests for the TDD red phase to define expected behavior and edge cases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tdd-workflows-tdd-refactor", @@ -7557,7 +8396,8 @@ "name": "tdd-workflows-tdd-refactor", "description": "Use when working with tdd workflows tdd refactor", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "team-collaboration-issue", @@ -7566,7 +8406,8 @@ "name": "team-collaboration-issue", "description": "You are a GitHub issue resolution expert specializing in systematic bug investigation, feature implementation, and collaborative development workflows. Your expertise spans issue triage, root cause an", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "team-collaboration-standup-notes", @@ -7575,16 +8416,18 @@ "name": "team-collaboration-standup-notes", "description": "You are an expert team communication specialist focused on async-first standup practices, AI-assisted note generation from commit history, and effective remote team coordination patterns.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "team-composition-analysis", "path": "skills\\team-composition-analysis", "category": "uncategorized", "name": "team-composition-analysis", - "description": "This skill should be used when the user asks to \\\\\\\"plan team\nstructure\", \"determine hiring needs\", \"design org chart\", \"calculate\ncompensation\", \"plan equity allocation\", or requests organizational design and\nheadcount planning for a startup.\n", + "description": "Design optimal team structures, hiring plans, compensation strategies, and equity allocation for early-stage startups from pre-seed through Series A.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "telegram-automation", @@ -7593,7 +8436,8 @@ "name": "telegram-automation", "description": "Automate Telegram tasks via Rube MCP (Composio): send messages, manage chats, share photos/documents, and handle bot commands. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "telegram-bot-builder", @@ -7602,7 +8446,8 @@ "name": "telegram-bot-builder", "description": "Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategie...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "telegram-mini-app", @@ -7611,7 +8456,8 @@ "name": "telegram-mini-app", "description": "Expert in building Telegram Mini Apps (TWA) - web apps that run inside Telegram with native-like experience. Covers the TON ecosystem, Telegram Web App API, payments, user authentication, and build...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "templates", @@ -7620,16 +8466,18 @@ "name": "templates", "description": "Project scaffolding templates for new applications. Use when creating new projects from scratch. Contains 12 templates for various tech stacks.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "temporal-python-pro", "path": "skills\\temporal-python-pro", "category": "uncategorized", "name": "temporal-python-pro", - "description": "Master Temporal workflow orchestration with Python SDK. Implements\ndurable workflows, saga patterns, and distributed transactions. Covers\nasync/await, testing strategies, and production deployment. Use PROACTIVELY\nfor workflow design, microservice orchestration, or long-running processes.\n", + "description": "- Working on temporal python pro tasks or workflows - Needing guidance, best practices, or checklists for temporal python pro", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "temporal-python-testing", @@ -7638,7 +8486,8 @@ "name": "temporal-python-testing", "description": "Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal wor...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "terraform-aws-modules", @@ -7647,7 +8496,8 @@ "name": "terraform-aws-modules", "description": "Terraform module creation for AWS \u2014 reusable modules, state management, and HCL best practices. Use when building or reviewing Terraform AWS infrastructure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "terraform-infrastructure", @@ -7656,7 +8506,8 @@ "name": "terraform-infrastructure", "description": "Terraform infrastructure as code workflow for provisioning cloud resources, creating reusable modules, and managing infrastructure at scale.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "terraform-module-library", @@ -7665,7 +8516,8 @@ "name": "terraform-module-library", "description": "Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "terraform-skill", @@ -7674,25 +8526,28 @@ "name": "terraform-skill", "description": "Terraform infrastructure as code best practices", "risk": "safe", - "source": "https://github.com/antonbabenko/terraform-skill" + "source": "https://github.com/antonbabenko/terraform-skill", + "date_added": "2025-02-26" }, { "id": "terraform-specialist", "path": "skills\\terraform-specialist", "category": "uncategorized", "name": "terraform-specialist", - "description": "Expert Terraform/OpenTofu specialist mastering advanced IaC\nautomation, state management, and enterprise infrastructure patterns. Handles\ncomplex module design, multi-cloud deployments, GitOps workflows, policy as\ncode, and CI/CD integration. Covers migration strategies, security best\npractices, and modern IaC ecosystems. Use PROACTIVELY for advanced IaC, state\nmanagement, or infrastructure automation.\n", + "description": "You are a Terraform/OpenTofu specialist focused on advanced infrastructure automation, state management, and modern IaC practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "test-automator", "path": "skills\\test-automator", "category": "uncategorized", "name": "test-automator", - "description": "Master AI-powered test automation with modern frameworks,\nself-healing tests, and comprehensive quality engineering. Build scalable\ntesting strategies with advanced CI/CD integration. Use PROACTIVELY for\ntesting automation or quality assurance.\n", + "description": "- Working on test automator tasks or workflows - Needing guidance, best practices, or checklists for test automator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "test-driven-development", @@ -7701,7 +8556,8 @@ "name": "test-driven-development", "description": "Use when implementing any feature or bugfix, before writing implementation code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "test-fixing", @@ -7710,7 +8566,8 @@ "name": "test-fixing", "description": "Run tests and systematically fix all failing tests using smart error grouping. Use when user asks to fix failing tests, mentions test failures, runs test suite and failures occur, or requests to ma...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "testing-patterns", @@ -7719,7 +8576,8 @@ "name": "testing-patterns", "description": "Jest testing patterns, factory functions, mocking strategies, and TDD workflow. Use when writing unit tests, creating test factories, or following TDD red-green-refactor cycle.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "testing-qa", @@ -7728,7 +8586,8 @@ "name": "testing-qa", "description": "Comprehensive testing and QA workflow covering unit testing, integration testing, E2E testing, browser automation, and quality assurance.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "theme-factory", @@ -7737,7 +8596,8 @@ "name": "theme-factory", "description": "Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifac...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "threat-mitigation-mapping", @@ -7746,7 +8606,8 @@ "name": "threat-mitigation-mapping", "description": "Map identified threats to appropriate security controls and mitigations. Use when prioritizing security investments, creating remediation plans, or validating control effectiveness.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "threat-modeling-expert", @@ -7755,7 +8616,8 @@ "name": "threat-modeling-expert", "description": "Expert in threat modeling methodologies, security architecture review, and risk assessment. Masters STRIDE, PASTA, attack trees, and security requirement extraction. Use for security architecture r...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "threejs-skills", @@ -7764,7 +8626,8 @@ "name": "threejs-skills", "description": "Create 3D scenes, interactive experiences, and visual effects using Three.js. Use when user requests 3D graphics, WebGL experiences, 3D visualizations, animations, or interactive 3D elements.", "risk": "safe", - "source": "https://github.com/CloudAI-X/threejs-skills" + "source": "https://github.com/CloudAI-X/threejs-skills", + "date_added": "2025-02-26" }, { "id": "tiktok-automation", @@ -7773,7 +8636,8 @@ "name": "tiktok-automation", "description": "Automate TikTok tasks via Rube MCP (Composio): upload/publish videos, post photos, manage content, and view user profiles/stats. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "todoist-automation", @@ -7782,7 +8646,8 @@ "name": "todoist-automation", "description": "Automate Todoist task management, projects, sections, filtering, and bulk operations via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tool-design", @@ -7791,7 +8656,8 @@ "name": "tool-design", "description": "Build tools that agents can use effectively, including architectural reduction patterns", "risk": "safe", - "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/tool-design" + "source": "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/skills/tool-design", + "date_added": "2025-02-26" }, { "id": "top-web-vulnerabilities", @@ -7800,16 +8666,18 @@ "name": "top-web-vulnerabilities", "description": "This skill should be used when the user asks to \"identify web application vulnerabilities\", \"explain common security flaws\", \"understand vulnerability categories\", \"learn about inject...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "track-management", "path": "skills\\track-management", "category": "uncategorized", "name": "track-management", - "description": "Use this skill when creating, managing, or working with Conductor\ntracks - the logical work units for features, bugs, and refactors. Applies to\nspec.md, plan.md, and track lifecycle operations.\n", + "description": "Guide for creating, managing, and completing Conductor tracks - the logical work units that organize features, bugs, and refactors through specification, planning, and implementation phases.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "trello-automation", @@ -7818,7 +8686,8 @@ "name": "trello-automation", "description": "Automate Trello boards, cards, and workflows via Rube MCP (Composio). Create cards, manage lists, assign members, and search across boards programmatically.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "trigger-dev", @@ -7827,7 +8696,8 @@ "name": "trigger-dev", "description": "Trigger.dev expert for background jobs, AI workflows, and reliable async execution with excellent developer experience and TypeScript-first design. Use when: trigger.dev, trigger dev, background ta...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "turborepo-caching", @@ -7836,16 +8706,18 @@ "name": "turborepo-caching", "description": "Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "tutorial-engineer", "path": "skills\\tutorial-engineer", "category": "uncategorized", "name": "tutorial-engineer", - "description": "Creates step-by-step tutorials and educational content from code.\nTransforms complex concepts into progressive learning experiences with\nhands-on examples. Use PROACTIVELY for onboarding guides, feature tutorials,\nor concept explanations.\n", + "description": "- Working on tutorial engineer tasks or workflows - Needing guidance, best practices, or checklists for tutorial engineer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "twilio-communications", @@ -7854,7 +8726,8 @@ "name": "twilio-communications", "description": "Build communication features with Twilio: SMS messaging, voice calls, WhatsApp Business API, and user verification (2FA). Covers the full spectrum from simple notifications to complex IVR systems a...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "twitter-automation", @@ -7863,7 +8736,8 @@ "name": "twitter-automation", "description": "Automate Twitter/X tasks via Rube MCP (Composio): posts, search, users, bookmarks, lists, media. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "typescript-advanced-types", @@ -7872,25 +8746,28 @@ "name": "typescript-advanced-types", "description": "Master TypeScript's advanced type system including generics, conditional types, mapped types, template literals, and utility types for building type-safe applications. Use when implementing complex...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "typescript-expert", "path": "skills\\typescript-expert", "category": "uncategorized", "name": "typescript-expert", - "description": "TypeScript and JavaScript expert with deep knowledge of type-level programming, performance optimization, monorepo management, migration strategies, and modern tooling. Use PROACTIVELY for any TypeScript/JavaScript issues including complex type gymnastics, build performance, debugging, and architectural decisions. If a specialized expert is a better fit, I will recommend switching and stop.", + "description": "You are an advanced TypeScript expert with deep, practical knowledge of type-level programming, performance optimization, and real-world problem solving based on current best practices.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "typescript-pro", "path": "skills\\typescript-pro", "category": "uncategorized", "name": "typescript-pro", - "description": "Master TypeScript with advanced types, generics, and strict type\nsafety. Handles complex type systems, decorators, and enterprise-grade\npatterns. Use PROACTIVELY for TypeScript architecture, type inference\noptimization, or advanced typing patterns.\n", + "description": "You are a TypeScript expert specializing in advanced typing and enterprise-grade development.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ui-skills", @@ -7899,16 +8776,18 @@ "name": "ui-skills", "description": "Opinionated, evolving constraints to guide agents when building interfaces", "risk": "safe", - "source": "https://github.com/ibelick/ui-skills" + "source": "https://github.com/ibelick/ui-skills", + "date_added": "2025-02-26" }, { "id": "ui-ux-designer", "path": "skills\\ui-ux-designer", "category": "uncategorized", "name": "ui-ux-designer", - "description": "Create interface designs, wireframes, and design systems. Masters\nuser research, accessibility standards, and modern design tools. Specializes\nin design tokens, component libraries, and inclusive design. Use PROACTIVELY\nfor design systems, user flows, or interface optimization.\n", + "description": "- Working on ui ux designer tasks or workflows - Needing guidance, best practices, or checklists for ui ux designer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ui-ux-pro-max", @@ -7917,16 +8796,18 @@ "name": "ui-ux-pro-max", "description": "UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, cr...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "ui-visual-validator", "path": "skills\\ui-visual-validator", "category": "uncategorized", "name": "ui-visual-validator", - "description": "Rigorous visual validation expert specializing in UI testing,\ndesign system compliance, and accessibility verification. Masters screenshot\nanalysis, visual regression testing, and component validation. Use PROACTIVELY\nto verify UI modifications have achieved their intended goals through\ncomprehensive visual analysis.\n", + "description": "- Working on ui visual validator tasks or workflows - Needing guidance, best practices, or checklists for ui visual validator", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unit-testing-test-generate", @@ -7935,16 +8816,18 @@ "name": "unit-testing-test-generate", "description": "Generate comprehensive, maintainable unit tests across languages with strong coverage and edge case focus.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unity-developer", "path": "skills\\unity-developer", "category": "uncategorized", "name": "unity-developer", - "description": "Build Unity games with optimized C# scripts, efficient rendering,\nand proper asset management. Masters Unity 6 LTS, URP/HDRP pipelines, and\ncross-platform deployment. Handles gameplay systems, UI implementation, and\nplatform optimization. Use PROACTIVELY for Unity performance issues, game\nmechanics, or cross-platform builds.\n", + "description": "- Working on unity developer tasks or workflows - Needing guidance, best practices, or checklists for unity developer", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unity-ecs-patterns", @@ -7953,7 +8836,8 @@ "name": "unity-ecs-patterns", "description": "Master Unity ECS (Entity Component System) with DOTS, Jobs, and Burst for high-performance game development. Use when building data-oriented games, optimizing performance, or working with large ent...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "unreal-engine-cpp-pro", @@ -7962,7 +8846,8 @@ "name": "unreal-engine-cpp-pro", "description": "Expert guide for Unreal Engine 5.x C++ development, covering UObject hygiene, performance patterns, and best practices.", "risk": "safe", - "source": "self" + "source": "self", + "date_added": "2025-02-26" }, { "id": "upgrading-expo", @@ -7971,7 +8856,8 @@ "name": "upgrading-expo", "description": "Upgrade Expo SDK versions", "risk": "safe", - "source": "https://github.com/expo/skills/tree/main/plugins/upgrading-expo" + "source": "https://github.com/expo/skills/tree/main/plugins/upgrading-expo", + "date_added": "2025-02-26" }, { "id": "upstash-qstash", @@ -7980,7 +8866,8 @@ "name": "upstash-qstash", "description": "Upstash QStash expert for serverless message queues, scheduled jobs, and reliable HTTP-based task delivery without managing infrastructure. Use when: qstash, upstash queue, serverless cron, schedul...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "using-git-worktrees", @@ -7989,7 +8876,8 @@ "name": "using-git-worktrees", "description": "Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verifi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "using-neon", @@ -7998,7 +8886,8 @@ "name": "using-neon", "description": "Guides and best practices for working with Neon Serverless Postgres. Covers getting started, local development with Neon, choosing a connection method, Neon features, authentication (@neondatabase/...", "risk": "safe", - "source": "https://github.com/neondatabase/agent-skills/tree/main/skills/neon-postgres" + "source": "https://github.com/neondatabase/agent-skills/tree/main/skills/neon-postgres", + "date_added": "2025-02-26" }, { "id": "using-superpowers", @@ -8007,7 +8896,8 @@ "name": "using-superpowers", "description": "Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "uv-package-manager", @@ -8016,7 +8906,8 @@ "name": "uv-package-manager", "description": "Master the uv package manager for fast Python dependency management, virtual environments, and modern Python project workflows. Use when setting up Python projects, managing dependencies, or optimi...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "varlock-claude-skill", @@ -8025,7 +8916,8 @@ "name": "varlock-claude-skill", "description": "Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits", "risk": "safe", - "source": "https://github.com/wrsmith108/varlock-claude-skill" + "source": "https://github.com/wrsmith108/varlock-claude-skill", + "date_added": "2025-02-26" }, { "id": "vector-database-engineer", @@ -8034,7 +8926,8 @@ "name": "vector-database-engineer", "description": "Expert in vector databases, embedding strategies, and semantic search implementation. Masters Pinecone, Weaviate, Qdrant, Milvus, and pgvector for RAG applications, recommendation systems, and similar", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vector-index-tuning", @@ -8043,7 +8936,8 @@ "name": "vector-index-tuning", "description": "Optimize vector index performance for latency, recall, and memory. Use when tuning HNSW parameters, selecting quantization strategies, or scaling vector search infrastructure.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vercel-automation", @@ -8052,7 +8946,8 @@ "name": "vercel-automation", "description": "Automate Vercel tasks via Rube MCP (Composio): manage deployments, domains, DNS, env vars, projects, and teams. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vercel-deploy-claimable", @@ -8061,7 +8956,8 @@ "name": "vercel-deploy-claimable", "description": "Deploy applications and websites to Vercel. Use this skill when the user requests deployment actions such as 'Deploy my app', 'Deploy this to production', 'Create a preview deployment', 'Deploy and...", "risk": "safe", - "source": "https://github.com/vercel-labs/agent-skills/tree/main/skills/claude.ai/vercel-deploy-claimable" + "source": "https://github.com/vercel-labs/agent-skills/tree/main/skills/claude.ai/vercel-deploy-claimable", + "date_added": "2025-02-26" }, { "id": "vercel-deployment", @@ -8070,7 +8966,8 @@ "name": "vercel-deployment", "description": "Expert knowledge for deploying to Vercel with Next.js Use when: vercel, deploy, deployment, hosting, production.", "risk": "safe", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "verification-before-completion", @@ -8079,7 +8976,8 @@ "name": "verification-before-completion", "description": "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evide...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vexor", @@ -8088,7 +8986,8 @@ "name": "vexor", "description": "Vector-powered CLI for semantic file search with a Claude/Codex skill", "risk": "safe", - "source": "https://github.com/scarletkc/vexor" + "source": "https://github.com/scarletkc/vexor", + "date_added": "2025-02-26" }, { "id": "viral-generator-builder", @@ -8097,7 +8996,8 @@ "name": "viral-generator-builder", "description": "Expert in building shareable generator tools that go viral - name generators, quiz makers, avatar creators, personality tests, and calculator tools. Covers the psychology of sharing, viral mechanic...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "voice-agents", @@ -8106,7 +9006,8 @@ "name": "voice-agents", "description": "Voice agents represent the frontier of AI interaction - humans speaking naturally with AI systems. The challenge isn't just speech recognition and synthesis, it's achieving natural conversation flo...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "voice-ai-development", @@ -8115,7 +9016,8 @@ "name": "voice-ai-development", "description": "Expert in building voice AI applications - from real-time voice agents to voice-enabled apps. Covers OpenAI Realtime API, Vapi for voice agents, Deepgram for transcription, ElevenLabs for synthesis...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "voice-ai-engine-development", @@ -8124,7 +9026,8 @@ "name": "voice-ai-engine-development", "description": "Build real-time conversational AI voice engines using async worker pipelines, streaming transcription, LLM agents, and TTS synthesis with interrupt handling and multi-provider support", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vr-ar", @@ -8133,7 +9036,8 @@ "name": "vr-ar", "description": "VR/AR development principles. Comfort, interaction, performance requirements.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "vulnerability-scanner", @@ -8142,7 +9046,8 @@ "name": "vulnerability-scanner", "description": "Advanced vulnerability analysis principles. OWASP 2025, Supply Chain Security, attack surface mapping, risk prioritization.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wcag-audit-patterns", @@ -8151,7 +9056,8 @@ "name": "wcag-audit-patterns", "description": "Conduct WCAG 2.2 accessibility audits with automated testing, manual verification, and remediation guidance. Use when auditing websites for accessibility, fixing WCAG violations, or implementing ac...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-artifacts-builder", @@ -8160,7 +9066,8 @@ "name": "web-artifacts-builder", "description": "Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state ma...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-design-guidelines", @@ -8169,7 +9076,8 @@ "name": "web-design-guidelines", "description": "Review UI code for Web Interface Guidelines compliance. Use when asked to \\\"review my UI\\\", \\\"check accessibility\\\", \\\"audit design\\\", \\\"review UX\\\", or \\\"check my site aga...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-games", @@ -8178,7 +9086,8 @@ "name": "web-games", "description": "Web browser game development principles. Framework selection, WebGPU, optimization, PWA.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-performance-optimization", @@ -8187,7 +9096,8 @@ "name": "web-performance-optimization", "description": "Optimize website and web application performance including loading speed, Core Web Vitals, bundle size, caching strategies, and runtime performance", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "web-security-testing", @@ -8196,7 +9106,8 @@ "name": "web-security-testing", "description": "Web application security testing workflow for OWASP Top 10 vulnerabilities including injection, XSS, authentication flaws, and access control issues.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "web3-testing", @@ -8205,7 +9116,8 @@ "name": "web3-testing", "description": "Test smart contracts comprehensively using Hardhat and Foundry with unit tests, integration tests, and mainnet forking. Use when testing Solidity contracts, setting up blockchain test suites, or va...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "webapp-testing", @@ -8214,7 +9126,8 @@ "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browse...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "webflow-automation", @@ -8223,7 +9136,8 @@ "name": "webflow-automation", "description": "Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "whatsapp-automation", @@ -8232,7 +9146,8 @@ "name": "whatsapp-automation", "description": "Automate WhatsApp Business tasks via Rube MCP (Composio): send messages, manage templates, upload media, and handle contacts. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-architect", @@ -8241,7 +9156,8 @@ "name": "wiki-architect", "description": "Analyzes code repositories and generates hierarchical documentation structures with onboarding guides. Use when the user wants to create a wiki, generate documentation, map a codebase structure, or...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-changelog", @@ -8250,7 +9166,8 @@ "name": "wiki-changelog", "description": "Analyzes git commit history and generates structured changelogs categorized by change type. Use when the user asks about recent changes, wants a changelog, or needs to understand what changed in th...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-onboarding", @@ -8259,7 +9176,8 @@ "name": "wiki-onboarding", "description": "Generates two complementary onboarding guides \u2014 a Principal-Level architectural deep-dive and a Zero-to-Hero contributor walkthrough. Use when the user wants onboarding documentation fo...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-page-writer", @@ -8268,7 +9186,8 @@ "name": "wiki-page-writer", "description": "Generates rich technical documentation pages with dark-mode Mermaid diagrams, source code citations, and first-principles depth. Use when writing documentation, generating wiki pages, creating tech...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-qa", @@ -8277,7 +9196,8 @@ "name": "wiki-qa", "description": "Answers questions about a code repository using source file analysis. Use when the user asks a question about how something works, wants to understand a component, or needs help navigating the code...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-researcher", @@ -8286,7 +9206,8 @@ "name": "wiki-researcher", "description": "Conducts multi-turn iterative deep research on specific topics within a codebase with zero tolerance for shallow analysis. Use when the user wants an in-depth investigation, needs to understand how...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wiki-vitepress", @@ -8295,7 +9216,8 @@ "name": "wiki-vitepress", "description": "Packages generated wiki Markdown into a VitePress static site with dark theme, dark-mode Mermaid diagrams with click-to-zoom, and production build output. Use when the user wants to create a browsa...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "windows-privilege-escalation", @@ -8304,7 +9226,8 @@ "name": "windows-privilege-escalation", "description": "This skill should be used when the user asks to \"escalate privileges on Windows,\" \"find Windows privesc vectors,\" \"enumerate Windows for privilege escalation,\" \"exploit Windows miscon...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wireshark-analysis", @@ -8313,7 +9236,8 @@ "name": "wireshark-analysis", "description": "This skill should be used when the user asks to \"analyze network traffic with Wireshark\", \"capture packets for troubleshooting\", \"filter PCAP files\", \"follow TCP/UDP streams\", \"dete...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wordpress", @@ -8322,7 +9246,8 @@ "name": "wordpress", "description": "Complete WordPress development workflow covering theme development, plugin creation, WooCommerce integration, performance optimization, and security hardening.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "wordpress-penetration-testing", @@ -8331,7 +9256,8 @@ "name": "wordpress-penetration-testing", "description": "This skill should be used when the user asks to \"pentest WordPress sites\", \"scan WordPress for vulnerabilities\", \"enumerate WordPress users, themes, or plugins\", \"exploit WordPress vu...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wordpress-plugin-development", @@ -8340,7 +9266,8 @@ "name": "wordpress-plugin-development", "description": "WordPress plugin development workflow covering plugin architecture, hooks, admin interfaces, REST API, and security best practices.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "wordpress-theme-development", @@ -8349,7 +9276,8 @@ "name": "wordpress-theme-development", "description": "WordPress theme development workflow covering theme architecture, template hierarchy, custom post types, block editor support, and responsive design.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "wordpress-woocommerce-development", @@ -8358,7 +9286,8 @@ "name": "wordpress-woocommerce-development", "description": "WooCommerce store development workflow covering store setup, payment integration, shipping configuration, and customization.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "workflow-automation", @@ -8367,7 +9296,8 @@ "name": "workflow-automation", "description": "Workflow automation is the infrastructure that makes AI agents reliable. Without durable execution, a network hiccup during a 10-step payment flow means lost money and angry customers. With it, wor...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "workflow-orchestration-patterns", @@ -8376,16 +9306,18 @@ "name": "workflow-orchestration-patterns", "description": "Design durable workflows with Temporal for distributed systems. Covers workflow vs activity separation, saga patterns, state management, and determinism constraints. Use when building long-running ...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "workflow-patterns", "path": "skills\\workflow-patterns", "category": "uncategorized", "name": "workflow-patterns", - "description": "Use this skill when implementing tasks according to Conductor's TDD\nworkflow, handling phase checkpoints, managing git commits for tasks, or\nunderstanding the verification protocol.\n", + "description": "Guide for implementing tasks using Conductor's TDD workflow, managing phase checkpoints, handling git commits, and executing the verification protocol that ensures quality throughout implementation.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "wrike-automation", @@ -8394,7 +9326,8 @@ "name": "wrike-automation", "description": "Automate Wrike project management via Rube MCP (Composio): create tasks/folders, manage projects, assign work, and track progress. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "writer", @@ -8403,7 +9336,8 @@ "name": "writer", "description": "Document creation, format conversion (ODT/DOCX/PDF), mail merge, and automation with LibreOffice Writer.", "risk": "safe", - "source": "personal" + "source": "personal", + "date_added": "2025-02-26" }, { "id": "writing-plans", @@ -8412,7 +9346,8 @@ "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task, before touching code", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "writing-skills", @@ -8421,7 +9356,8 @@ "name": "writing-skills", "description": "Use when creating, updating, or improving agent skills.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "x-article-publisher-skill", @@ -8430,7 +9366,8 @@ "name": "x-article-publisher-skill", "description": "Publish articles to X/Twitter", "risk": "safe", - "source": "https://github.com/wshuyi/x-article-publisher-skill" + "source": "https://github.com/wshuyi/x-article-publisher-skill", + "date_added": "2025-02-26" }, { "id": "xlsx-official", @@ -8439,7 +9376,8 @@ "name": "xlsx-official", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, ....", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "xss-html-injection", @@ -8448,7 +9386,8 @@ "name": "xss-html-injection", "description": "This skill should be used when the user asks to \"test for XSS vulnerabilities\", \"perform cross-site scripting attacks\", \"identify HTML injection flaws\", \"exploit client-side injection...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "youtube-automation", @@ -8457,7 +9396,8 @@ "name": "youtube-automation", "description": "Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "youtube-summarizer", @@ -8466,7 +9406,8 @@ "name": "youtube-summarizer", "description": "Extract transcripts from YouTube videos and generate comprehensive, detailed summaries using intelligent analysis frameworks", "risk": "safe", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zapier-make-patterns", @@ -8475,7 +9416,8 @@ "name": "zapier-make-patterns", "description": "No-code automation democratizes workflow building. Zapier and Make (formerly Integromat) let non-developers automate business processes without writing code. But no-code doesn't mean no-complexity ...", "risk": "unknown", - "source": "vibeship-spawner-skills (Apache 2.0)" + "source": "vibeship-spawner-skills (Apache 2.0)", + "date_added": "2025-02-26" }, { "id": "zendesk-automation", @@ -8484,7 +9426,8 @@ "name": "zendesk-automation", "description": "Automate Zendesk tasks via Rube MCP (Composio): tickets, users, organizations, replies. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zoho-crm-automation", @@ -8493,7 +9436,8 @@ "name": "zoho-crm-automation", "description": "Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zoom-automation", @@ -8502,7 +9446,8 @@ "name": "zoom-automation", "description": "Automate Zoom meeting creation, management, recordings, webinars, and participant tracking via Rube MCP (Composio). Always search tools first for current schemas.", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" }, { "id": "zustand-store-ts", @@ -8511,6 +9456,7 @@ "name": "zustand-store-ts", "description": "Create Zustand stores with TypeScript, subscribeWithSelector middleware, and proper state/action separation. Use when building React state management, creating global stores, or implementing reacti...", "risk": "unknown", - "source": "community" + "source": "community", + "date_added": "2025-02-26" } ] \ No newline at end of file diff --git a/web-app/src/pages/Home.jsx b/web-app/src/pages/Home.jsx index 906f43f3..b2dbf0d4 100644 --- a/web-app/src/pages/Home.jsx +++ b/web-app/src/pages/Home.jsx @@ -196,7 +196,14 @@ export function Home() { {skill.description}

-
+
+ Risk: {skill.risk || 'unknown'} + {skill.date_added && ( + šŸ“… {skill.date_added} + )} +
+ +
Read Skill
diff --git a/web-app/src/pages/SkillDetail.jsx b/web-app/src/pages/SkillDetail.jsx index a627169d..82cf779f 100644 --- a/web-app/src/pages/SkillDetail.jsx +++ b/web-app/src/pages/SkillDetail.jsx @@ -147,7 +147,7 @@ export function SkillDetail() {
-
+
{skill.category} @@ -156,6 +156,11 @@ export function SkillDetail() { {skill.source} )} + {skill.date_added && ( + + šŸ“… Added {skill.date_added} + + )}