Reusable Codex skills maintained by halaoluan. This repository makes the skills portable across Macs and other Codex installations by keeping the skill folders in Git.
Codex skills are local instruction bundles that teach Codex specialized
workflows. Each skill lives in its own folder under skills/ and has a
SKILL.md entrypoint.
This repository is useful when you want to:
- back up local Codex skills;
- install the same skills on another computer;
- review or improve skill instructions in Git;
- share examples of how the skills are organized.
Small open source maintainers often repeat the same maintenance work across issues, documentation, tests, PDFs, browser checks, and project-specific review steps. This repository turns those recurring Codex workflows into reusable, auditable skill bundles so they can be improved over time, shared with other developers, and installed consistently across local Codex environments.
| Skill | Purpose |
|---|---|
jianbao |
Chinese project brief generation and review workflows. |
pdf |
PDF reading, creation, extraction, and visual verification workflows. |
playwright |
Browser automation workflows using Playwright. |
结构示意图 |
Chinese structure diagrams, transaction diagrams, and relationship maps. |
.
├── install.sh
├── skills/
│ ├── jianbao/
│ ├── pdf/
│ ├── playwright/
│ └── 结构示意图/
└── examples/
Clone the repository:
git clone https://github.com/halaoluan/codex-skills.git
cd codex-skillsInstall the skills into Codex:
./install.shThe script copies everything under skills/ into:
~/.codex/skills/Restart Codex after installing so it can reload the skill list.
If you prefer not to run the script, copy the skill folders manually:
mkdir -p ~/.codex/skills
cp -R skills/* ~/.codex/skills/After installation, ask Codex for work that matches a skill:
Use the pdf skill to extract tables from this PDF and verify the layout.
Use the 结构示意图 skill to draw a transaction structure diagram for this project.
Use the playwright skill to open the local app and verify the login flow.
More examples are in examples/usage.md.
If you edit local skills on a Mac later, refresh this repository with:
rsync -a --delete ~/.codex/skills/jianbao skills/
rsync -a --delete ~/.codex/skills/pdf skills/
rsync -a --delete ~/.codex/skills/playwright skills/
rsync -a --delete ~/.codex/skills/结构示意图 skills/
git status
git add skills README.md install.sh .gitignore LICENSE examples
git commit -m "Update Codex skills"
git pushThis repository is owned and maintained by halaoluan.
This repository is licensed under the Apache License 2.0. See LICENSE.
Some skill folders include their own LICENSE.txt or NOTICE.txt files.
Those notices are preserved with the corresponding skill.