skill-downloader

Download and install Claude Code skills from multiple sources.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "skill-downloader" with this command: npx skills add nicepkg/ai-workflow/nicepkg-ai-workflow-skill-downloader

Skill Downloader

Download and install Claude Code skills from multiple sources.

Supported Sources

Source Type Examples

GitHub Repository https://github.com/user/repo , github.com/user/repo

Compressed Archive .zip , .tar.gz , .tgz , .skill (renamed zip)

Direct URL URL pointing to archive or skill folder

Usage

Download from GitHub

python scripts/download_from_github.py <repo-url> <skill-path> --output <target-dir>

Examples:

Official Anthropic skills

python scripts/download_from_github.py https://github.com/anthropics/skills skills/docx --output ./.claude/skills/

Community skills (root level)

python scripts/download_from_github.py https://github.com/gked2121/claude-skills social-repurposer --output ./.claude/skills/

Nested skill path

python scripts/download_from_github.py https://github.com/MadAppGang/claude-code skills/content-brief --output ./.claude/skills/

Download from Archive

python scripts/download_from_archive.py <url-or-path> --output <target-dir>

Examples:

From URL

python scripts/download_from_archive.py https://example.com/skills/my-skill.zip --output ./.claude/skills/

From local file

python scripts/download_from_archive.py ./downloads/my-skill.tar.gz --output ./.claude/skills/

.skill files (renamed zip)

python scripts/download_from_archive.py https://skillhub.club/download/awesome-skill.skill --output ./.claude/skills/

Unified Download Command

python scripts/download_skill.py <source> --output <target-dir>

Automatically detects source type:

  • GitHub URL → Uses git sparse checkout

  • Archive URL/path → Downloads and extracts

  • Directory path → Copies directly

Examples:

Auto-detect GitHub

python scripts/download_skill.py https://github.com/anthropics/skills/tree/main/skills/docx --output ./.claude/skills/

Auto-detect archive

python scripts/download_skill.py https://example.com/my-skill.zip --output ./.claude/skills/

Validation

All download methods validate:

  • Skill folder contains SKILL.md

  • SKILL.md has valid YAML frontmatter with name and description

  • No malicious content patterns detected

Output Structure

Downloaded skills are placed in:

<output-dir>/ └── <skill-name>/ ├── SKILL.md # Required ├── scripts/ # Optional └── ...

Error Handling

Error Cause Solution

Skill already exists Target directory exists Use --force to overwrite

SKILL.md not found Invalid skill package Verify source contains SKILL.md

Invalid archive Corrupted or unsupported format Check file integrity

Network error Download failed Retry or check URL

Integration with Workflow Creator

When used with workflow-creator, download skills to workflow's .claude/skills/ directory:

Create workflow first

python /path/to/workflow-creator/scripts/create_workflow.py my-workflow --path ./workflows

Then download skills

python scripts/download_skill.py https://github.com/anthropics/skills/tree/main/skills/docx --output ./workflows/my-workflow/.claude/skills/

Skill Sources Reference

Popular skill repositories:

  • Anthropic Official - docx, pdf, pptx

  • gked2121/claude-skills - social-repurposer, canvas-design

  • ComposioHQ/awesome-claude-skills - Collection

  • MadAppGang/claude-code - SEO, content skills

  • daymade/claude-code-skills - twitter-reader, fact-checker

  • skillhub.club - 1000+ skills collection

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

resource-scout

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

workflow-creator

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

arxiv-paper-writer

Use this skill whenever the user wants Claude Code to write, scaffold, compile, debug, or review an arXiv-style academic paper, especially survey papers with LaTeX, BibTeX citations, TikZ figures, tables, and PDF output. This skill should trigger for requests like writing a full paper, creating an arXiv paper project, turning a research topic into a LaTeX manuscript, reproducing the Paper-Write-Skill-Test agent-survey workflow, or setting up a Windows/Linux Claude Code paper-writing loop.

Archived SourceRecently Updated
Coding

cli-proxy-troubleshooting

排查 CLI Proxy API(codex-api-proxy)的配置、认证、模型注册和请求问题。适用场景包括:(1) AI 请求报错 unknown provider for model, (2) 模型列表中缺少预期模型, (3) codex-api-key/auth-dir 配置不生效, (4) CLI Proxy 启动后 AI 无法调用, (5) 认证成功但请求失败或超时。包含源码级排查方法:模型注册表架构、认证加载链路、 SanitizeCodexKeys 规则、常见错误的真实根因。

Archived SourceRecently Updated