소스 정보
- 저장소
- tyrchen/repoctl
- 최근 소스 활동
- 2026년 6월 7일 16:06
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tyrchen/repoctl --skill pr-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create new apps, frameworks, and foundation services with repoctl templates and manifests.
Respect app, framework, foundation, proto, generated-code, and IaC boundaries.
Summarize PR impact using repoctl affected data, risk flags, and graph diagnostics.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pr-review |
| description | Summarize PR impact using repoctl affected data, risk flags, and graph diagnostics. |
This skill records repository policy for Claude. Use repoctl as the authority for graph, ownership, affected analysis, task routing, and final hand-off verification, but keep repoctl out of the inner coding loop unless the graph or boundaries are changing.
Prioritize correctness, boundary regressions, missing tests, ownership gaps, and CI blind spots. Summaries come after findings. Do not approve a risky diff just because the changed code is small.
Validate the graph when routing inputs changed:
repoctl graph validate
A broken graph makes affected analysis untrustworthy, but graph validation is optional for source-only PRs.
Summarize PR impact:
repoctl pr summary --base origin/main --head HEAD --format human
Use the actual PR base branch when it is not origin/main. Run this once unless graph or
task-routing inputs change during review.
Compute verification surface:
repoctl affected --base origin/main --head HEAD --tasks check,test,build --format human
Compare this with the checks that actually ran. Missing affected tasks are findings, not footnotes. Do not repeat affected analysis to work around unrelated branch-wide changes; state the widening and switch to explicit project-scoped verification.
Inspect code-size risk:
repoctl inspect size --scope changed --base origin/main --head HEAD --fail-on warning
Run this for Rust, TypeScript/TSX, or Python source changes. Use --scope affected when the PR
changes a shared project surface and --scope all when code-size policy, templates, skills, or
inspection logic changes. Oversized files, functions, or nested blocks are review findings unless
a matching inspection.code_size override explains the exception.
Inspect risky paths:
repo.yaml, .github/, templates/, .agents/skills/, .claude/skills/ affect the repo.protos/ can break consumers even when source compiles.generated/ or gen/ should usually be regenerated, not manually patched.deploy/prod/, iac/stacks/prod/, and shared core-infra/ need owner review.Review changed code in owner context:
Use repoctl explain <project-name> for each affected project before deciding whether the
change respects facades, clients, and editable areas.
Lead with findings ordered by severity:
P1 path/to/file:123 - The change bypasses the framework facade and imports an internal crate.
Fix: move the shared API to the facade package or keep the dependency inside the owning framework.
If there are no findings, say so clearly and name residual risks or skipped gates.
Return findings first, then affected projects, risk flags, commands run, and any verification gap that remains before merge.