skill-installer

Installs Codex skills from curated lists or GitHub repositories to CODEX_HOME/skills.

6|2|Updated Nov 16, 2025
One-click install
npx skills add https://github.com/EricOo0/stock-trading-platform --skill skill-installer-ericoo0
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: skill-installer
Source: https://github.com/EricOo0/stock-trading-platform/tree/main/.codex/skills/.system/skill-installer
Command: npx skills add https://github.com/EricOo0/stock-trading-platform --skill skill-installer-ericoo0

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill simplifies the discovery and installation of Codex skills by enabling you to list curated skills and install from curated sources or GitHub repositories, reducing manual setup and enabling quick capability expansion.

Core Features & Use Cases

  • List curated skills from the curated repository.
  • Install a skill from the curated list into CODEX_HOME/skills.
  • Install a skill from another GitHub repo or private repo using a path, supporting both --repo and --url methods.

Quick Start

Use the following starter commands to get up and running: Run: python3 scripts/list-curated-skills.py --format text Run: python3 scripts/install-skill-from-github.py --repo owner/repo --path path/to/skill Run: python3 scripts/install-skill-from-github.py --url https://github.com/owner/repo/tree/main/path/to/skill

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?

You can install Codex skills from a GitHub repository by running the Python installation script with either the --repo flag for owner/repo paths or the --url flag for direct directory links. The script fetches, validates, and copies the skill into CODEX_HOME/skills.

What is the best way to discover available Codex skills for installation?

To discover available Codex skills, run the list-curated-skills Python script with the --format text flag. This queries the curated repository and displays available skills, simplifying the discovery workflow before installation.

Can I install a Codex skill from a private GitHub repository?

Yes, you can install skills from private GitHub repositories using the installation script's --repo and --path arguments. The script fetches and validates the specified skill directory containing SKILL.md before copying it.

Do I need Python to install Codex skills from curated lists?

Yes, Python is required to run the scripts that fetch, validate, and copy skill directories from curated lists or GitHub repositories. Network access is also necessary to retrieve the skill files during the installation process.

Where are installed Codex skills saved on my system?

Installed Codex skills are copied directly into the CODEX_HOME/skills directory. The installation script validates that each fetched directory contains a SKILL.md file before placing it in this target location.

What are the limitations when installing skills from external GitHub sources?

Limitations include requiring network access for fetching repositories and needing Python to execute the validation scripts. The installation process strictly requires a valid SKILL.md file within the target directory to succeed.