Power-ups for Claude Code.
Reusable skill packs for Claude Code CLI. Install once, use everywhere — from data analysis to image generation to career tools.
git clone https://github.com/MakiDevelop/claude-skills.git ~/.claude/repos/claude-skills
~/.claude/repos/claude-skills/tools/install.sh install --all# Clone first (if not already)
git clone https://github.com/MakiDevelop/claude-skills.git ~/.claude/repos/claude-skills
# Install a specific skill
~/.claude/repos/claude-skills/tools/install.sh install generate-image~/.claude/repos/claude-skills/tools/install.sh update| Skill | Description | Env Vars |
|---|---|---|
| generate-image | Generate images with Gemini Nano Banana 2 | GEMINI_API_KEY |
| Skill | Description | Env Vars |
|---|---|---|
| csv-to-chart | CSV/TSV → auto chart (line/bar/pie/scatter) | — |
| db-eda | Natural language queries for SQLite / DuckDB (read-only) | — |
| pdf-to-summary | PDF → structured summary with page references | — |
| Skill | Description | Env Vars |
|---|---|---|
| gh-issue-to-spec | GitHub Issue → technical spec document | — |
| postmortem | Incident report + root cause analysis + prevention | — |
| Skill | Description | Env Vars |
|---|---|---|
| case-study | Package projects into case studies (interview/LinkedIn/portfolio) | — |
| cv-optimize | Resume optimization with targeted positioning | — |
| demo-storytelling | Turn PoC into a compelling demo story | — |
| product-positioning | Product market positioning + pitch strategy | — |
| proposal-review | Presentation structure review (slides/titles/content balance) | — |
| roundtable | Virtual expert roundtable — multiple thinkers analyze your document | — |
| vendor-eval | Vendor proposal evaluation (tech/cost/market/background) | — |
| Skill | Description | Env Vars |
|---|---|---|
| disk-cleanup | macOS disk cleanup (Docker/Xcode/venv/cache) | — |
Each skill is a single SKILL.md file with YAML frontmatter defining metadata, required tools, and the skill logic itself. The installer creates symlinks in your ~/.claude/commands/ directory.
skills/
└── generate-image/
└── SKILL.md # Frontmatter + skill logic
tools/
├── install.sh # Install / update / remove
├── validate.py # CI validation
├── build_registry.py # Auto-generate registry.json
└── build_site.py # Auto-generate catalog site
CI automatically validates all skills on push and rebuilds the registry.
- Fork this repo
- Create a new directory under
skills/with aSKILL.md - Follow the Skill Template format
- Submit a PR
See CONTRIBUTING.md for details.
---
name: skill-name # Unique ID (same as directory name)
description: One-line desc # Purpose + trigger keywords
argument-hint: "[args]" # Optional argument hint
allowed-tools: Bash(...), Read # Required tool permissions
author: your-name
version: "1.0.0"
tags: [image, gemini]
required_env:
- GEMINI_API_KEY
---MIT