Automates the installation and management of Codex skills via GitHub repository URLs.

Install

mkdir -p .claude/skills/install-skill && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18681" && unzip -o skill.zip -d .claude/skills/install-skill && rm skill.zip

Installs to .claude/skills/install-skill

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

GitHub URL로 Codex 스킬을 설치합니다. GitHub 저장소의 스킬 폴더 URL을 입력하면 해당 스킬의 모든 파일을 자동으로 다운로드하여 .codex/skills/ 에 설치합니다.
106 charsno explicit “when” trigger
Beginner

Key capabilities

  • Install Codex skills from GitHub URLs
  • Parse GitHub URL and options
  • Install skills globally or locally
  • Specify custom skill folder names
  • Perform dry runs to verify file lists
  • Update already installed skills

How it works

The skill parses a GitHub URL and options, then executes a Node.js script to download and install the skill files into the Codex skills directory.

Inputs & outputs

You give it
GitHub URL of a skill folder and optional flags
You get back
Codex skill installed in `.codex/skills/` or `~/.codex/skills/`

When to use install-skill

  • Installing new agent skills
  • Updating existing skills from repository
  • Managing development-specific agent toolsets

About this skill

$ARGUMENTS: GitHub 스킬 폴더 URL과 옵션

GitHub URL에서 Codex 스킬을 설치해줘.

다음 순서로 진행해:

  1. $ARGUMENTS를 파싱해서 GitHub URL과 옵션을 분리해줘
  2. 스크립트 경로를 확인해: 이 스킬의 script 폴더에 있는 install-skill.js를 사용해
  3. 다음 명령을 실행해:
node <이 스킬의 script/install-skill.js 경로> $ARGUMENTS

입력 형식

  • URL 형식: https://github.com/{owner}/{repo}/tree/{branch}/{path}
  • 옵션:
    • --global : ~/.codex/skills/에 전역 설치 (기본은 현재 프로젝트의 .codex/skills/)
    • --name <이름> : 스킬 폴더명을 직접 지정
    • --dry-run : 실제 설치 없이 파일 목록만 확인

사용 예시

/install-skill https://github.com/Mineru98/skills-store/tree/main/.codex/skills/commit
/install-skill https://github.com/Mineru98/skills-store/tree/main/.codex/skills/kill-process --global
/install-skill https://github.com/user/repo/tree/main/my-skill --name custom-name
/install-skill https://github.com/user/repo/tree/main/my-skill --dry-run

주의사항

  • private 저장소는 GITHUB_TOKEN 또는 GH_TOKEN 환경변수 설정이 필요합니다
  • GitHub API 속도 제한(시간당 60회)에 걸리면 토큰을 설정하세요
  • 이미 설치된 스킬은 덮어쓰기(업데이트) 됩니다

When not to use it

  • When installing skills from sources other than GitHub URLs
  • When `GITHUB_TOKEN` or `GH_TOKEN` is not configured for private repositories
  • When the user does not want to install or update a skill

Limitations

  • Requires a GitHub URL as input
  • Private repositories need `GITHUB_TOKEN` or `GH_TOKEN` environment variables
  • Subject to GitHub API rate limits

How it compares

This skill automates the download and installation of Codex skills directly from GitHub, unlike manual file management.

Compared to similar skills

install-skill side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
install-skill (this skill)02moReviewBeginner
tmux202moReviewIntermediate
jira116moNo flagsBeginner
triaging-issues52moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry