mirror of
https://github.com/herve-ves/open-icon-maker-skill.git
synced 2026-04-25 00:45:49 +03:00
No description
- Python 85%
- Jinja 15%
| open-icon-maker | ||
| .gitattributes | ||
| LICENSE | ||
| README.md | ||
Open Icon Maker (Codex Skill)
| Americano (hot) | Americano (takeaway) | Grilled seafood | Pizza (person) | Pizza (profile) |
|---|---|---|---|---|
Install
- Find your Codex home directory:
- If
CODEX_HOMEis set, use that. - Otherwise, the default is
~/.codex.
- If
- 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 containSKILL.md.
Update / Uninstall
- Update: replace
$CODEX_HOME/skills/open-icon-maker/with the updatedopen-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; useuv run scripts/icon_maker.py --help(if you haveuv) or install packages listed inSKILL.md.