claudeers.
// Claude Skills

ClaudeSkills

Skills for Claude.ai and Claude Code

// Claude Skills[ cli ][ api ][ desktop ][ web ][ mobile ][ claude ]#claude#claude-code#claude-plugin#claude-skills#skills$open-sourceupdated about 2 hours ago

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up ClaudeSkills (git-clone project) into my current project.
Found on https://claudeers.com/claudeskills
Repo: https://github.com/AutumnsGrove/ClaudeSkills
Homepage/docs: —
Detected install method: git-clone → git clone https://github.com/AutumnsGrove/ClaudeSkills
Category: skills. Platforms: cli, api, desktop, web, mobile.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
unknown; community-verified: false. Confirm the source before running anything.
// or clone
git clone https://github.com/AutumnsGrove/ClaudeSkills

// compatibility

Platformscli, api, desktop, web, mobile
Operating systems
AI compatibilityclaude
License
Pricingopen-source
LanguagePython

Claude Skills Library

A comprehensive collection of 16 production-ready Claude Skills covering document manipulation, testing, database management, API design, DevOps, code quality, and communication workflows.

📋 Guides & Resources

📚 Skills Overview

Document Manipulation (3 skills)

SkillDescriptionFiles
xlsxExcel spreadsheet creation, editing, and analysis with formulas, charts, and data manipulationSKILL.md + 3 Python scripts
pptxPowerPoint presentation creation with layouts, charts, and professional formattingSKILL.md + Python helper
pdfPDF manipulation including text extraction, form filling, merging, and creationSKILL.md + Python helper

Development & Testing (4 skills)

SkillDescriptionFiles
webapp-testingPlaywright-based web application testing with multi-browser supportSKILL.md + 2 Python scripts
mcp-builderGuide for building Model Context Protocol (MCP) serversSKILL.md + 3 examples
d3js-visualizationData visualization with D3.js for interactive charts and dashboardsSKILL.md + scripts + 3 examples
api-designerREST/GraphQL API design with OpenAPI 3.0 specs and authentication patternsSKILL.md + Python helper + examples

Database & Backend (1 skill)

SkillDescriptionFiles
sql-expertSQL query writing, optimization, and database schema design for PostgreSQL, MySQL, SQLiteSKILL.md + Python helper + 2,690 lines SQL examples

DevOps & Infrastructure (2 skills)

SkillDescriptionFiles
docker-workflowDocker containerization with multi-stage builds, compose orchestration, and optimizationSKILL.md + Bash helper + examples
env-configEnvironment variable management with UV integration, secrets handling, and multi-env supportSKILL.md + Python helper + examples

Code Quality & Debugging (3 skills)

SkillDescriptionFiles
git-advancedAdvanced Git operations including rebasing, conflict resolution, and branch strategiesSKILL.md + Bash helper + guides
code-reviewerAutomated code review with security scanning, quality metrics, and best practice enforcementSKILL.md + Python helper + checklists
error-detectiveSystematic debugging with TRACE framework, stack trace analysis, and error pattern recognitionSKILL.md + Python helper + examples

Communication & Documentation (3 skills)

SkillDescriptionFiles
brand-guidelinesCorporate brand consistency enforcement and style guide creationSKILL.md + 3 templates
internal-commsInternal communications templates for status reports and newslettersSKILL.md + 4 templates
markdown-proProfessional documentation with README generation, changelog automation, and TOC generationSKILL.md + Python helper + templates

🚀 Quick Start

Using Skills with Claude

  1. In Claude.ai or Claude Code: Reference skills by name when working on related tasks
  2. Via API: Include skill content in your system prompts for specialized capabilities
  3. As Reference: Browse SKILL.md files for comprehensive documentation and examples

Installation

Most skills require Python dependencies. Install them as needed:

# Excel (xlsx)
pip install openpyxl pandas xlsxwriter

# PowerPoint (pptx)
pip install python-pptx Pillow pandas

# PDF (pdf)
pip install pypdf pdfplumber reportlab PyMuPDF pdf2image pytesseract pillow

# Web Testing (webapp-testing)
pip install playwright pytest
playwright install

# MCP Builder (mcp-builder)
pip install mcp anthropic  # Python SDK for MCP

# D3.js Visualization (d3js-visualization)
# No installation needed - pure JavaScript, run examples in browser

# API Designer (api-designer)
pip install pydantic fastapi jsonschema pyyaml

# SQL Expert (sql-expert)
pip install sqlalchemy psycopg2-binary pymysql

# Docker Workflow (docker-workflow)
# Requires Docker installed - no Python dependencies

# Environment Config (env-config)
# Requires UV: curl -LsSf https://astral.sh/uv/install.sh | sh
pip install python-dotenv cryptography pydantic pydantic-settings

# Git Advanced (git-advanced)
# No dependencies - uses git CLI

# Code Reviewer (code-reviewer)
pip install bandit safety radon pylint black

# Error Detective (error-detective)
# No dependencies - includes built-in utilities

# Markdown Pro (markdown-pro)
pip install gitpython markdown

Creating Zipped Skills for Distribution

To package all skills as individual .zip files for drag-and-drop installation into Claude Desktop:

# Create ZippedSkills directory and zip all skill folders automatically
mkdir -p ZippedSkills && for skill in */; do
  [[ "$skill" == "ZippedSkills/" ]] && continue
  skill_name="${skill%/}"
  (cd "$skill_name" && zip -r "../ZippedSkills/${skill_name}.zip" . -x "*.DS_Store" -x "__pycache__/*") && echo "✓ Zipped $skill_name"
done

This creates a ZippedSkills/ folder containing individual .zip files for all skills, automatically detecting new skills as they're added.

📖 Skill Details

Document Manipulation Skills

xlsx - Excel Spreadsheets

  • Create workbooks with formulas (SUM, VLOOKUP, pivot tables)
  • Format cells with colors, fonts, borders
  • Generate charts (line, bar, pie, scatter)
  • Data analysis with pandas integration
  • Helper Script: scripts/excel_helper.py with 34 utility functions

pptx - PowerPoint Presentations

  • Create presentations from scratch or templates
  • Add slides with various layouts
  • Insert charts, images, tables, shapes
  • Apply consistent branding and themes
  • Helper Script: scripts/pptx_helper.py with 16 presentation utilities

pdf - PDF Documents

  • Extract text with layout preservation
  • Parse tables from PDFs
  • Merge, split, and rotate documents
  • Fill forms and add watermarks
  • Create PDFs with reportlab
  • Helper Script: scripts/pdf_helper.py with 24 PDF operations

Development & Testing Skills

webapp-testing - Playwright Testing

  • Multi-browser testing (Chrome, Firefox, Safari)
  • Page Object Model pattern
  • API mocking and network interception
  • Mobile device emulation
  • Visual regression testing
  • Helper Scripts: playwright_helper.py + 40+ test examples

mcp-builder - MCP Server Development

  • Build custom MCP servers for Claude
  • Implement tools, resources, and prompts
  • Authentication and security patterns
  • Integration with external APIs
  • Examples: Simple, advanced, and resource-focused servers

d3js-visualization - Data Visualization

  • Interactive charts with D3.js
  • Line, bar, scatter, network graphs
  • Responsive design patterns
  • Real-time data updates
  • Templates: Reusable chart components
  • Examples: 3 complete interactive visualizations

Communication & Branding Skills

brand-guidelines - Brand Consistency

  • Create comprehensive brand style guides
  • Color palette management with WCAG compliance
  • Typography and logo usage guidelines
  • Brand voice and tone frameworks
  • Templates: Complete brand config files

internal-comms - Internal Communications

  • Weekly/monthly status reports
  • Company newsletters (HTML)
  • All-hands announcements
  • Team update formats
  • Templates: 4 ready-to-use communication templates

🎯 Use Cases

For Developers

  • Data Analysis: Use xlsx to process spreadsheets programmatically
  • Testing Automation: Use webapp-testing for E2E test suites
  • API Integration: Use mcp-builder to connect external services to Claude
  • Visualization: Use d3js-visualization for interactive dashboards

For Product Managers

  • Reports: Use pptx to generate quarterly business reviews
  • Documentation: Use pdf to extract data from reports
  • Communication: Use internal-comms for status updates

For Designers & Marketers

  • Brand Management: Use brand-guidelines to maintain consistency
  • Data Visualization: Use d3js-visualization for infographics
  • Presentations: Use pptx for client presentations

📁 Directory Structure

ClaudeSkills/
├── README.md                          # This file
├── xlsx/
│   ├── SKILL.md                       # Comprehensive documentation
│   ├── scripts/
│   │   ├── excel_helper.py            # 34 utility functions
│   │   └── example_usage.py           # Working examples
│   └── README.md
├── pptx/
│   ├── SKILL.md
│   └── scripts/
│       └── pptx_helper.py             # 16 presentation utilities
├── pdf/
│   ├── SKILL.md
│   └── scripts/
│       └── pdf_helper.py              # 24 PDF operations
├── webapp-testing/
│   ├── SKILL.md
│   └── scripts/
│       ├── playwright_helper.py       # Test utilities
│       └── test_examples.py           # 40+ test cases
├── mcp-builder/
│   ├── SKILL.md
│   └── examples/
│       ├── simple-server.py           # Basic MCP server
│       ├── advanced-server.py         # Multi-feature server
│       └── resource-server.py         # Resource-focused server
├── brand-guidelines/
│   ├── SKILL.md
│   └── examples/
│       ├── brand-config.json          # Brand configuration
│       ├── color-palette.json         # Color system
│       └── style-guide-template.md    # Complete template
├── internal-comms/
│   ├── SKILL.md
│   └── examples/
│       ├── status-report-template.md
│       ├── newsletter-template.html
│       ├── announcement-template.md
│       └── team-update-template.md
└── d3js-visualization/
    ├── SKILL.md
    ├── scripts/
    │   ├── chart-templates.js         # Reusable charts
    │   └── data-helpers.js            # Data utilities
    └── examples/
        ├── line-chart.html
        ├── bar-chart.html
        └── network-graph.html

🔧 Helper Scripts

Each skill includes production-ready helper scripts:

Python Scripts

  • xlsx: excel_helper.py - Create, edit, format Excel files
  • pptx: pptx_helper.py - Build presentations programmatically
  • pdf: pdf_helper.py - Manipulate PDF documents
  • webapp-testing: playwright_helper.py - Browser automation utilities

JavaScript Scripts

  • d3js-visualization: chart-templates.js - Reusable D3 charts
  • d3js-visualization: data-helpers.js - Data transformation

Templates

  • brand-guidelines: JSON configs for brand systems
  • internal-comms: Markdown/HTML communication templates
  • mcp-builder: Complete Python MCP server examples

📊 Statistics

  • Total Lines of Documentation: 16,717 lines across all SKILL.md files
  • Helper Functions: 100+ utility functions across all skills
  • Code Examples: 150+ working code examples
  • Templates: 10+ ready-to-use templates
  • Test Cases: 40+ Playwright test examples

🎓 Learning Path

  1. Start with Documents: Try xlsx, pptx, or pdf for immediate productivity
  2. Add Testing: Learn webapp-testing for quality assurance
  3. Build Tools: Explore mcp-builder to extend Claude's capabilities
  4. Visualize Data: Use d3js-visualization for interactive dashboards
  5. Standardize Communications: Apply internal-comms and brand-guidelines

💡 Best Practices

  1. Read SKILL.md First: Each skill has comprehensive documentation with examples
  2. Start Simple: Use helper scripts for common operations
  3. Customize: Adapt templates and examples to your specific needs
  4. Test Code: All Python scripts include error handling - test before production
  5. Version Control: Track changes to skill configurations and templates

🤝 Contributing

To add new skills or improve existing ones:

  1. Follow the SKILL.md format (YAML frontmatter + comprehensive content)
  2. Include helper scripts with type hints and docstrings
  3. Provide working examples
  4. Document common pitfalls and best practices
  5. Test all code examples

📝 Skill Format

Each skill follows the official Anthropic skills format:

---
name: skill-name
description: "Clear description of capabilities and use cases"
---

# Skill Name

## Core Capabilities
- Capability 1
- Capability 2

## Workflows
Step-by-step instructions...

## Examples
Working code examples...

## Best Practices
Recommendations...

## Common Pitfalls
Issues and solutions...

🔗 Resources

📄 License

These skills are provided for demonstration and educational purposes. Individual libraries and tools used within skills may have their own licenses:

  • openpyxl: MIT License
  • python-pptx: MIT License
  • pypdf/pdfplumber: BSD License
  • Playwright: Apache 2.0
  • D3.js: ISC License

Ready to level up your Claude workflows? Pick a skill and start building! 🚀

// faq

What is ClaudeSkills?

Skills for Claude.ai and Claude Code. It is open-source on GitHub.

Is ClaudeSkills free to use?

ClaudeSkills is open-source, so it is free to use.

What category does ClaudeSkills belong to?

ClaudeSkills is listed under skills in the Claudeers registry of Claude-compatible tools.

0 views
28 stars
unclaimed
updated about 2 hours ago

// embed badge

ClaudeSkills on Claudeers
[![Claudeers](https://claudeers.com/api/badge/claudeskills.svg)](https://claudeers.com/claudeskills)

// retro hit counter

ClaudeSkills hit counter
[![Hits](https://claudeers.com/api/counter/claudeskills.svg)](https://claudeers.com/claudeskills)

// reviews

// guestbook

0/500

// related in Claude Skills

🔓

An agentic skills framework & software development methodology that works.

// skillsobra/Shell272,506MIT[ claude ]
🔓

Public repository for Agent Skills

// skillsanthropics/Python169,406[ claude ]
🔓

💫 Toolkit to help you get started with Spec-Driven Development

// skillsgithub/Python129,208MIT[ claude ]
🔓

AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…

// skillsGraphify-Labs/Python106,387MIT[ claude ]
→ see how ClaudeSkills connects across the ecosystem