No description
  • Python 85%
  • Jinja 15%
Find a file
2026-01-21 17:12:38 +08:00
open-icon-maker feat: add implementations 2026-01-21 17:12:38 +08:00
.gitattributes feat: add implementations 2026-01-21 17:12:38 +08:00
LICENSE Initial commit 2026-01-21 16:00:42 +08:00
README.md feat: add implementations 2026-01-21 17:12:38 +08:00

Open Icon Maker (Codex Skill)

Americano (hot) Americano (takeaway) Grilled seafood Pizza (person) Pizza (profile)

Install

  1. Find your Codex home directory:
    • If CODEX_HOME is set, use that.
    • Otherwise, the default is ~/.codex.
  2. Copy the open-icon-maker/ folder into $CODEX_HOME/skills/ so you end up with:
    • $CODEX_HOME/skills/open-icon-maker/SKILL.md

macOS / Linux

CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
mkdir -p "$CODEX_HOME/skills"
cp -R open-icon-maker "$CODEX_HOME/skills/"

If you are currently inside the open-icon-maker/ folder:

CODEX_HOME="${CODEX_HOME:-$HOME/.codex}"
mkdir -p "$CODEX_HOME/skills/open-icon-maker"
cp -R . "$CODEX_HOME/skills/open-icon-maker/"

Windows (PowerShell)

$codexHome = if ($env:CODEX_HOME) { $env:CODEX_HOME } else { "$HOME\.codex" }
New-Item -ItemType Directory -Force -Path "$codexHome\skills" | Out-Null
Copy-Item -Recurse -Force .\open-icon-maker "$codexHome\skills\"

If you are currently inside the open-icon-maker/ folder:

$codexHome = if ($env:CODEX_HOME) { $env:CODEX_HOME } else { "$HOME\.codex" }
New-Item -ItemType Directory -Force -Path "$codexHome\skills\open-icon-maker" | Out-Null
Copy-Item -Recurse -Force .\* "$codexHome\skills\open-icon-maker\"

Verify

  • Restart your Codex session (or reload skills if your Codex build supports it).
  • The installed folder should exist at $CODEX_HOME/skills/open-icon-maker/ and contain SKILL.md.

Update / Uninstall

  • Update: replace $CODEX_HOME/skills/open-icon-maker/ with the updated open-icon-maker/ folder.
  • Uninstall: delete $CODEX_HOME/skills/open-icon-maker/.

Notes

  • The skill includes a runnable Python script at scripts/icon_maker.py. Dependencies are not bundled; use uv run scripts/icon_maker.py --help (if you have uv) or install packages listed in SKILL.md.