Skip to content

MakiDevelop/claude-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Skills

Power-ups for Claude Code.

Validate Skills Skills: 14 License: MIT

Reusable skill packs for Claude Code CLI. Install once, use everywhere — from data analysis to image generation to career tools.

Quickstart

Install all skills

git clone https://github.com/MakiDevelop/claude-skills.git ~/.claude/repos/claude-skills
~/.claude/repos/claude-skills/tools/install.sh install --all

Install a single skill

# 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

Update

~/.claude/repos/claude-skills/tools/install.sh update

Available Skills (14)

AI / Image Generation

Skill Description Env Vars
generate-image Generate images with Gemini Nano Banana 2 GEMINI_API_KEY

Data Analysis

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

Developer Tools

Skill Description Env Vars
gh-issue-to-spec GitHub Issue → technical spec document
postmortem Incident report + root cause analysis + prevention

Strategy & Communication

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)

System Maintenance

Skill Description Env Vars
disk-cleanup macOS disk cleanup (Docker/Xcode/venv/cache)

How it works

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.

Contributing

  1. Fork this repo
  2. Create a new directory under skills/ with a SKILL.md
  3. Follow the Skill Template format
  4. Submit a PR

See CONTRIBUTING.md for details.

Skill Frontmatter Spec

---
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
---

License

MIT

About

Reusable skill packs for Claude Code CLI — 14 ready-to-use skills for data analysis, image generation, career tools, and more.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors