Personal Codex skills (drop-in folders under ~/.agents/skills/).
Catalog: https://jmerta.github.io/codex-skills/
- Codex discovers skills from
~/.agents/skills/**/SKILL.md(user scope) and.agents/skills/**/SKILL.mdin repos (repo scope). - The standard is
.agents/skills(repo) and~/.agents/skills(user). Legacy~/.codex/skills/**/SKILL.mdis still supported. - Only
name,description, and the SKILL.md path are injected into context; bodies andreferences/are not auto-loaded (Codex can open/read them when needed).
- Check:
codex features list(look forskills ... true) - Enable for the current run:
codex --enable skills - Enable permanently: add to
~/.codex/config.toml:[features] skills = true
Codex also supports a single, global ledger file that applies across projects. This is not a skill and does not live in the skills catalog.
npx codex-skills init-ledgerLocation (Codex home directory):
- macOS/Linux:
~/.codex/AGENTS.MD - Windows (PowerShell):
$HOME\.codex\AGENTS.MD
- Keep exactly one ledger at
~/.codex/AGENTS.MDso it applies to all projects. - At the start of each assistant turn: open the ledger and refresh it with the current goal, constraints/assumptions, decisions, and state.
- Update it again whenever any of these change: goal, constraints/assumptions, key decisions, progress state (Done/Now/Next), or important tool outcomes.
- Keep it short and factual: use bullets, avoid transcripts, and mark unknowns as
UNCONFIRMED. - In replies, include a brief “Ledger Snapshot” (Goal + Now/Next + Open Questions); show the full ledger only when it materially changes or when requested.
Recommended ledger headings:
- Goal (incl. success criteria):
- Constraints/Assumptions:
- Key decisions:
- State:
- Done:
- Now:
- Next:
- Open questions (UNCONFIRMED if needed):
- Working set (files/ids/commands):git clone https://github.com/jMerta/codex-skills.git ~/.agents/skillsgit clone https://github.com/jMerta/codex-skills.git "$HOME\.agents\skills"Use the published CLI to list, search, and install skills without cloning.
npx codex-skills list
npx codex-skills search browser
npx codex-skills install agents-md
npx codex-skills install-category development
npx codex-skills install-all
npx codex-skills install-agent-scripts
npx codex-skills install agents-md --ref main
npx codex-skills init-ledger
npx codex-skills verify agents-mdAfter running install-agent-scripts, the scripts live under the agent skills
directory (default: ~/.agents/skills/agent-scripts). Add that folder to your
PATH if you want to call scripts directly from the terminal.
Windows (PowerShell):
$path = [Environment]::GetEnvironmentVariable("Path", "User")
[Environment]::SetEnvironmentVariable("Path", "$path;$HOME\\.agents\\skills\\agent-scripts", "User")Restart your terminal for changes to take effect.
macOS/Linux (bash/zsh):
export PATH="$PATH:$HOME/.agents/skills/agent-scripts"To persist, add the export to ~/.bashrc or ~/.zshrc.
The public catalog is published on GitHub Pages and updates on releases:
https://jMerta.github.io/codex-skills/
- Source of truth: the CLI fetches
skills.jsonfrom GitHub for the selected ref. - Default ref: latest stable GitHub Release; if no releases exist, it falls back to the latest tag.
- Override:
--ref mainto followmain, or--ref <tag>to pin a specific release. - Install method: downloads the repo tarball for the ref and copies only the requested skill folder into your skills directory.
- Agent scripts:
install-agent-scriptscopiesagent-scripts/into your skills directory. - Auth (optional): set
GITHUB_TOKENto reduce GitHub API rate limits.
list/ls: show all skills (grouped by category). Supports--json.search <query>: search by name/description/category.info <name>: show metadata for a single skill.install <name>: copy the skill to your skills directory.install-category <category>: install all skills in a category.install-all: install every skill in the catalog.install-agent-scripts: install shared agent scripts alongside skills.init-ledger: create~/.codex/AGENTS.MD(global ledger, not a skill).verify <name>: verify a local skill install (checks SKILL.md + frontmatter).
--dir <dir>: destination skills directory (default:~/.agents/skills/).--ref <ref>: Git ref (tag or branch).--force: overwrite an existing skill install.--json: JSON output forlist.
- User catalog:
~/.agents/skills/(default) - Repo local:
./.agents/skills/(use--dir .agents/skills)
If you add or rename skills:
- Update
skills-meta.json(category/author/license overrides as needed). - Run
python3 scripts/build_skills_json.pyto regenerateskills.json. - Commit both files.
agents-md: Create nestedAGENTS.md+ feature maps. (Author: @jMerta)bug-triage: Reproduce, isolate, and fix bugs. (Author: @jMerta)ci-fix: Diagnose and fix failing GitHub Actions CI using GitHub CLI (gh). (Author: @jMerta)coding-guidelines-gen: Generate nestedAGENTS.mdcoding guidelines per module + set up missing formatters/linters. (Author: @jMerta)coding-guidelines-verify: Verify changes follow scopedAGENTS.mdrules; auto-fix formatting + run lint/tests. (Author: @jMerta)commit-work: Stage/split commits and write Conventional Commit messages. (Author: @jMerta)create-pr: Create PRs using GitHub CLI (gh). (Author: @jMerta)dependency-upgrader: Upgrade Java/Kotlin + Node/TypeScript dependencies safely. (Author: @jMerta)docs-sync: Keepdocs/and other docs in sync with code changes. (Author: @jMerta)plan-work: Research + analysis + development planning for changes. (Author: @jMerta)release-notes: Draft release notes/changelog entries from git ranges. (Author: @jMerta)vps-checkup: Check Ubuntu VPS health/security/updates + Docker status over SSH (read-only unless confirmed). (Author: @jMerta)
The following skills are sourced from steipete/agent-scripts (MIT). Author:
@steipete
agent-scripts(scripts bundle)create-clivideo-transcript-downloader
Each copied skill folder includes a LICENSE and ATTRIBUTION.md. The
steipete-derived skills also include attribution sections in SKILL.md. Related
scripts live in agent-scripts/ (installed alongside skills) and include their own
LICENSE/ATTRIBUTION.md.
Additional third-party skills:
ui-ux-pro-max(source:nextlevelbuilder/ui-ux-pro-max-skill, MIT). Author: Next Level Builder
- Each skill is a folder with a required
SKILL.md(YAML frontmatter + Markdown body). - Frontmatter requirements:
name: non-empty, <= 100 chars, single linedescription: non-empty, <= 500 chars, single line
This repo includes a CI check that scans for invisible/suspicious Unicode characters commonly used for deception/prompt injection:
- file contents and filenames (repo-wide)
- PR metadata (title/body) and commit messages (via GitHub Actions event payload)
Run locally:
python3 scripts/check_invisible_chars.py --allpython3 scripts/check_invisible_chars.py --commit-range origin/main..HEAD
Note: this mitigates common invisible-character attacks, but does not detect all Unicode deception (e.g., homoglyph/confusable characters).
MIT (see LICENSE).
