Getting Started
What This Skill Focuses On
repository-polish helps Codex improve a repository's public-facing quality while matching the requested polish depth.
Typical scope:
- stronger
README.md - optional
README.ja.md - VitePress docs when multi-page documentation is helpful
- GitHub Pages deployment with Actions
- cleaner repo metadata and navigation
- structural QA and codebase signoff before closeout
- staged payload size review before GitHub-bound commits
uv runfor Python helpers when Python is needed
Polish Modes
完全整備: finish the entire public-facing path, including docs, publishing, metadata, remote creation, push, and workflow repair when those steps are needed and auth is available最適整備: inspect the repo and choose the smallest coherent, high-value set of improvements that suits it- no explicit mode: default to full polish unless the user narrows scope another way
First Step
Run the inventory script before making changes:
powershell -ExecutionPolicy Bypass -File .\scripts\collect_repo_state.ps1 -RepoPath D:\Prj\some-repoUse the output to decide what is missing, what should stay untouched, whether a remote exists, and whether Pages is already enabled when docs publishing matters.
Before GitHub-Bound Commits
Check staged file sizes before you commit work that is meant to land on GitHub:
powershell -ExecutionPolicy Bypass -File .\scripts\check_commit_payload.ps1 -RepoPath D:\Prj\some-repoThe helper reviews staged files at 50 MiB and blocks them at 100 MiB by default. Remove large binaries, archives, dependency directories, and build outputs from the commit unless they are intentional deliverables.
Core Principle
Match the polish depth to the requested mode, then finish that chosen scope end-to-end.
That usually means:
- understand the repo
- improve the landing experience
- add docs only when they help, unless
完全整備explicitly asks for the full path - verify every claim before signoff, and verify staged file sizes before commit
Main References
Check these repository files while using the skill:
SKILL.mdscripts/check_commit_payload.ps1references/repository-checklist.mdreferences/qa-signoff.mdreferences/bilingual-docs-pattern.mdreferences/github-pages-notes.md