A small collection of Codex skills for planning, architecture, and GitHub PR workflows.
Planning / architecture
architecture-docs-creator: Produces anARCHITECTURE.mdbefore implementation, capturing current structure and design intent.update-architecture-docs: RefreshesARCHITECTURE.mdafter implementation so docs match the code.execplan-create: Turns a PRD/RFC/brief into a concrete step-by-step ExecPlan that is ready to execute.implement-execplan: Executes a pending ExecPlan from the.agentfolder, step by step.refactor-something: Scans a repo and proposes a consolidation refactor that reduces surface area, then produces an ExecPlan for that change.bead-creator: Scans a repo and creates 3–5 Beads issues (viabr) to seed a backlog, optionally focused on reliability/features/perf/security/docs/etc.
GitHub PR workflows
pr-review-r0: Triage open PRs and identify which ones are junk / irrelevant.pr-review-r1: Summarize and sanity-check PR intent; catch duplicates or out-of-scope work early.pr-review-r2: Evaluate implementation simplicity and correctness.pr-review-r3: Identify risks/blockers and produce an actionable implementation plan.pr-review-r4: Implement the final plan and evaluate test coverage.land-pr: Land a PR end-to-end: temp rebase, full gate, merge, and thank the contributor.find-good-prs: Find high-value, low-risk PRs ready to merge (currently targeted atopenclaw/openclaw).find-contributor-prs: Find open PRs from top contributing authors, ordered by contributor rank (currently targeted atopenclaw/openclaw).
Each skill lives in its own folder and is documented in its SKILL.md.
Copy the folders you want into your Codex skills/ directory.
- Run
architecture-docs-creatorto establish a baselineARCHITECTURE.md. - Use
execplan-createfor planned work, orrefactor-somethingwhen you want a focused consolidation refactor. - Run
implement-execplanto carry out the plan. - Finish with
update-architecture-docsto sync docs with the final code.
MIT