omgskills Get the Mac app
Skill

identify-reviewer

@cloudflare 8.4k stars Updated 2026-07-28 Author match: High

Identifies the local user's GitHub account and git identity before performing code reviews. Load this skill at the start of any PR review, code review, or commit log analysis so findings can be framed relative to the user's own prior comments, commits, and approval status.

Install

Install this Claude and Codex skill with the command below. The command stays visible even when copy support is unavailable.

Install command
git clone https://github.com/cloudflare/workerd /tmp/workerd && ln -s /tmp/workerd/.opencode/skills/identify-reviewer ~/.claude/skills/identify-reviewer

View on GitHub

From README

Identify Reviewer Load this skill at the start of any code review workflow — before analyzing diffs, commit logs, or prior comments. --- Steps Detect identities. Run these commands in parallel: From gh auth status, parse Logged in to github.com account to get the GitHub handle. From git config, capture the local user's commit name and email. These may not match exactly (e.g., GitHub handle octocat, git name Octo Cat, git email octocat@example.com). All three identify the same person. If gh is not installed or the user is not authenticated, fall back to git config alone. If neither is available, skip identification and proceed without it — do not block the review. Store the identity for the session. Use the discovered identity when: Attributing prior review comments. If the user previously commented on the PR, refer to those comments in second person ("your earlier comment about X") rather than third person ("octocat flagged X"). Attributing commits.

More from this repo