Oh my skills
Skill AIjunja/oh-my-skills
Use when the user wants to install, launch, inspect, inventory, create, edit, archive, deduplicate, or manage local Codex, Claude, or Agent Skills with the oh-my-skills GUI or CLI.From its SKILL.md
npx -y skills add AIjunja/oh-my-skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 20 stars20 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 7 commands, including `python -m skill_ledger gui` and 6 more.
SKILL.md
2.8 KB, 646 tokens by cl100k_base, as published. Nobody here has run it
oh-my-skills
oh-my-skills manages local SKILL.md folders across Codex, Claude, and generic Agent Skills. It provides a local browser GUI plus CLI reports for skill inventory, duplicate detection, safe editing, creation, and archiving.
Quick Workflow
- If this repository is the current workspace, run commands from the repository root.
- If the user only has the skill installed, use the skill folder as the repository root.
- When the user invokes
$oh-my-skillswith a broad request such as "show my skills", "open the dashboard", "manage skills", or "Codex/Claude skills", launch the GUI dashboard. Do not replace the dashboard with a long text list unless the user explicitly asks for a text report. - Use the CLI only for reports, automation, duplicate checks, or when the user specifically asks for terminal output.
- Keep generated inventory files private unless the user explicitly wants to publish them.
Launch The GUI
From the repository root:
python -m skill_ledger gui
If the package is installed:
oh-my-skills gui
The GUI defaults to http://127.0.0.1:8765/ and auto-increments the port if it is busy. It supports English/Korean UI and light/dark themes.
CLI Commands
python -m skill_ledger scan --format markdown --out inventory\skills.md
python -m skill_ledger scan --format json --out inventory\skills.json
python -m skill_ledger doctor
Use forward slashes instead of backslashes on macOS/Linux:
python -m skill_ledger scan --format markdown --out inventory/skills.md
python -m skill_ledger scan --format json --out inventory/skills.json
python -m skill_ledger doctor
Install As A Skill
Codex:
git clone https://github.com/AIjunja/oh-my-skills.git ~/.codex/skills/oh-my-skills
Claude:
git clone https://github.com/AIjunja/oh-my-skills.git ~/.claude/skills/oh-my-skills
Windows PowerShell:
git clone https://github.com/AIjunja/oh-my-skills.git "$env:USERPROFILE\.codex\skills\oh-my-skills"
git clone https://github.com/AIjunja/oh-my-skills.git "$env:USERPROFILE\.claude\skills\oh-my-skills"
Safety Rules
- Treat
codex-systemandplugin-cacheskills as read-only. - Editable user targets are
codex-user,claude-user, andagents-user. - Save operations create a backup under
~/.oh-my-skills/backups. - Archive operations move folders to
~/.oh-my-skills/archive; they do not permanently delete files. - Keep generated inventory files private unless the user explicitly reviews them for sensitive paths and prompt content.
What ships with it: 27 files
13662.9 KB alongside SKILL.md, 10 of them executable
agents/
- openai.yaml234 B
docs/
inventory/
- .gitkeep1 B
skill_ledger/
- cli.pyruns3.5 KB
- gui.pyruns8.1 KB
- __init__.pyruns98 B
- __main__.pyruns80 B
- manager.pyruns5.4 KB
- reporting.pyruns5.5 KB
- scanner.pyruns6.5 KB
- web/app.jsruns20.8 KB
- web/index.html7.2 KB
- web/styles.css14.6 KB
tests/
- test_manager.pyruns1.8 KB
- test_scanner.pyruns2.0 KB
- .gitattributes66 B
- .gitignore251 B
- LICENSE1.1 KB
- pyproject.toml1.2 KB
- README.ko.md6.0 KB
- README.md5.7 KB