skill-installer

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).

codex-rs/skills/src/assets/samples/skill-installer/SKILL.md

Download bundle ↓
main · 18d7ace8 bundle filesScanned 2026-09-14

scripts/github_utils.py

157 tokens · o200k_base · 659 bytes

Source excerpt starting at line 1.
#!/usr/bin/env python3"""Shared GitHub helpers for skill install scripts.""" from __future__ import annotations import osimport urllib.request  def github_request(url: str, user_agent: str) -> bytes:    headers = {"User-Agent": user_agent}    token = os.environ.get("GITHUB_TOKEN") or os.environ.get("GH_TOKEN")    if token:        headers["Authorization"] = f"token {token}"    req = urllib.request.Request(url, headers=headers)    with urllib.request.urlopen(req) as resp:        return resp.read()  def github_api_contents_url(repo: str, path: str, ref: str) -> str:    return f"https://api.github.com/repos/{repo}/contents/{path}?ref={ref}"