원클릭으로
pr-readiness-code
[Workflow] Prepare a code change for review — test, lint, commit, PR, issue tracker
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
[Workflow] Prepare a code change for review — test, lint, commit, PR, issue tracker
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
[Workflow] Explore an idea and design a solution before implementing
Use when the what or how of a change has open questions requiring collaborative design dialogue with the user — before committing to an approach
[Agent] Subagent persona for reviewing code changes against a plan and quality standards
Use when approaching complex exploration, research, or synthesis tasks — understanding systems, codebases, domains, or architectures before proposing changes or designs
Use when facing 2+ tasks that can proceed without shared state, sequential dependencies, or mutual file edits
[Workflow] Execute an implementation plan task by task with review checkpoints
| name | pr-readiness-code |
| description | [Workflow] Prepare a code change for review — test, lint, commit, PR, issue tracker |
| source_type | workflow |
| metadata | {"last_updated":"2026-03-11T00:00:00.000Z","owner":"shrug-labs"} |
Run tests
make testgo test ./...npm testpytestRun linter/pre-commit
pre-commit configured (.pre-commit-config.yaml exists): pre-commit run --all-filesmake lintReview diff — git diff --stat + quick scan for:
Generate commit summary — Draft a conventional commit message from the diff
Stage and commit — Specific files only (no git add -A)
Push and create PR — git push -u origin <branch> + PR via CLI
Update issue tracker (if applicable)
Fixes #N in PR bodyVerify — gh pr view --json url,state returns the PR URL with state OPEN.