skill-installer

Installs Codex skills from curated lists or GitHub repositories via CLI scripts.

1|Updated Dec 28, 2025
One-click install
npx skills add https://github.com/vultuk/coding-agent-skills --skill skill-installer-vultuk
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-installer
Source: https://github.com/vultuk/coding-agent-skills/tree/main/.system/skill-installer
Command: npx skills add https://github.com/vultuk/coding-agent-skills --skill skill-installer-vultuk

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This skill simplifies installing Codex skills by pulling them from curated lists or GitHub repositories, eliminating manual setup and tedious downloads.

Core Features & Use Cases

  • List curated skills from the official curated index and see which are already installed.
  • Install a chosen skill from the curated list or directly from a GitHub repo path, including private repos with token support.
  • Copy valid SKILL directories into CODEX_HOME/skills and skip overwriting existing installations.

Quick Start

  • List curated skills: python3 scripts/list-curated-skills.py
  • Install from curated: python3 scripts/install-skill-from-github.py --repo openai/skills --path skills/your-skill
  • Install from URL: python3 scripts/install-skill-from-github.py --url https://github.com/owner/repo/tree/main/path/to/skill
  • Restart Codex to pick up new skills.

Frequently Asked Questions about skill-installer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I install Codex skills from a GitHub repository?

To install Codex skills from a GitHub repository, run the script with the repo path and skill location. It downloads the repository via sparse-checkout and copies valid SKILL directories into CODEX_HOME/skills. You need network access and the built-in Python toolchain.

Can I list available curated skills and see which ones are already installed?

Yes, you can list available curated skills. Running the list script fetches the official curated index from the GitHub API and displays which skills are currently installed in your CODEX_HOME/skills directory.

Does installing skills from private GitHub repositories work?

Installing skills from private GitHub repositories works by providing token support. The script accesses private repos using your token, downloads the specified path, and copies the valid SKILL directories into your local skills folder.

What is the best way to avoid overwriting existing Codex skill installations?

To avoid overwriting existing installations, the install script automatically skips any skills already present. It copies valid SKILL directories into CODEX_HOME/skills and checks for existing folders to prevent duplicate or overwritten installations.

Do I need to restart Codex after installing new skills from a curated list?

Yes, you need to restart Codex after installing new skills from a curated list. The installation script copies the files into the skills directory, but Codex must be restarted to pick up and recognize the newly added skills.

Can I customize the destination or Git ref when installing a skill from a URL?

Yes, you can customize the destination and Git ref when installing from a URL. The install script supports optional ref arguments for specific branches and destination customization to control where the skill is copied within CODEX_HOME/skills.