Personal Codex skills maintained by k82cn.
This repository is intended to collect reusable skills, workflows, scripts, and reference material that extend Codex for recurring tasks.
Each skill should live in its own directory and include a SKILL.md file:
skill-name/
SKILL.md
scripts/
references/
assets/
SKILL.mddescribes when the skill should be used and the workflow Codex should follow.scripts/contains helper scripts used by the skill.references/contains supporting documentation or examples.assets/contains reusable templates, images, or other static files.
Only SKILL.md is required. Add the other directories when they make the skill
clearer or easier to reuse.
code-review: Structured code review workflow for finding defects, regressions, and missing tests from k82cn's distributed systems experience. The entrypoint delegates review execution to shared and type-specific reference workflows.
- Keep each skill focused on a specific workflow or domain.
- Prefer concrete steps and local scripts over long prose instructions.
- Include examples when they clarify expected inputs or outputs.
- Avoid storing secrets, tokens, or private environment-specific data.
Clone this repository into your Codex skills directory:
git clone git@github.com:k82cn/skills.git "$CODEX_HOME/skills/k82cn"If CODEX_HOME is not set, Codex commonly uses ~/.codex:
git clone git@github.com:k82cn/skills.git ~/.codex/skills/k82cnLicensed under the Apache License, Version 2.0. See LICENSE.