Development playground and collection of custom skills for Claude Code - extending Claude with modular, reusable workflows
npx skills add https://github.com/willem4130/claude-code-skills --skill elite-powerpoint-designerCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
Development workspace and collection of custom skills for Claude Code - extending Claude's capabilities with modular, reusable workflows.
skills-playground/
├── skills/ # Production-ready skills
│ └── <skill-name>/ # Each skill in its own directory
├── templates/ # Shared templates across skills
├── scripts/ # Shared utility scripts
├── examples/ # Example inputs/outputs
├── docs/ # Development guides and references
└── .claude/ # Local Claude Code configuration
Skills are model-invoked capabilities that Claude autonomously uses based on context. They consist of:
Create Apple/Microsoft/Google-level presentations with professional design, consistent branding, and sophisticated animations.
Features:
Perfect for: Product launches, investor pitches, business reports, keynotes, and any presentation requiring world-class design quality.
Install once, use everywhere:
# Clone this repository
git clone https://github.com/willem4130/claude-code-skills.git
cd claude-code-skills
# Install globally (works in all projects)
cp -r skills/elite-powerpoint-designer ~/.claude/skills/
# Verify installation
ls ~/.claude/skills/elite-powerpoint-designer/
Done! The skill is now available in all your Claude Code sessions.
Install for a specific project (team sharing):
# In your project directory
mkdir -p .claude/skills
cp -r /path/to/claude-code-skills/skills/elite-powerpoint-designer .claude/skills/
# Commit to git so team gets it
git add .claude/skills/elite-powerpoint-designer
git commit -m "Add elite PowerPoint designer skill"
📖 See INSTALLATION.md for detailed setup instructions and troubleshooting.
This repository is set up as a development playground. Here's the workflow:
mkdir skills/my-skill-name
cd skills/my-skill-name
touch SKILL.md
mkdir -p scripts templates examples
---
name: my-skill-name
description: What it does AND when Claude should use it (trigger words)
---
# My Skill
[Instructions for Claude to follow]
scripts/ for shared utilitiestemplates/ for reusable templatesexamples/skills/ directorySee CLAUDE.md for detailed development guidelines and quality checks.
Skills that would be useful to others are welcome! Please:
examples/ folderMIT - Feel free to use and modify for your projects.