원클릭으로
assess-team-code-review
analyze code review participation and quality by developer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
analyze code review participation and quality by developer
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Obsidian Vault Integration — Automatically save session logs to your Obsidian vault. Enables persistent AI agent memory across pi sessions.
Show this user guide for Pi coding agent. Use when: user asks how to use pi, pi configuration, available skills, extensions, commands, or needs help getting started.
orchestrate comprehensive repository assessment using parallel specialist analysis
assess AI tool adoption and usage patterns in the team
orchestrate comprehensive team assessment using parallel specialist analysis
analyze documentation contributions and patterns by developer
| name | assess-team-code-review |
| description | analyze code review participation and quality by developer |
Analyze code review patterns — who reviews, who doesn't, review quality, turnaround time.
IMPORTANT: Local git CANNOT verify PR reviews.
| Data | Local Git | Requires API |
|---|---|---|
| Who merged | YES | — |
| Who reviewed | NO | gh pr list, az repos pr list |
| Approval status | NO | GitHub/GitLab API |
| Review comments | NO | API |
When data not available:
[confidence: MEDIUM - requires API to verify]Use bash git commands (simple patterns only):
git log --merges --format="%ae|%ae" -n 100 # merged PRs
git log --format="%ae" | sort | uniq -c | sort -rn # author commit counts
Always include a "Data Availability" section noting what requires API access.
Score authors on what can be verified:
Save to: docs/assessment/team-<YYYY-MM-DD>-code-review.md
# Team Assessment: Code Review
## Data Availability
- PR review data: **NOT available from local git** [confidence: LOW - requires API]
- Review approval data: **NOT available from local git** [confidence: LOW - requires API]
- To get full data: run `gh pr list --state merged --limit 100` or `az repos pr list`
## Review Participation (local git only)
| Author | Merges | Co-authored | Participation Rate | Score |
|--------|--------|-------------|---------------------|-------|
| ... | N | N | X% | A-F |
## Review Distribution
[Analysis of review load distribution from available data]
## Key Findings
1. [Finding with evidence] [confidence: HIGH/MEDIUM/LOW]
2. [Finding with evidence] [confidence: HIGH/MEDIUM/LOW]
## Score: A-F (one line rationale)
## Recommendations
1. Run `gh pr list --state merged --limit 100` for full review data
2. [Priority]
Return max 5 lines: