code-reviewer

code-reviewer is an agent for Claude Code from PostHog/posthog-foss. It costs 415 tokens per session (1,451 once invoked), scanned A, original, MIT.

An expert assistant that reviews recently changed code for correctness, maintainability, security, and alignment with PostHog’s coding rules.

In plain words
What is it for?
It is for reviewing features, bug fixes, and other meaningful code changes, with suggestions for small improvements.
Why use it?
It helps catch bugs, unsafe practices, and consistency problems before code is shipped.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/posthog/posthog-foss/code-reviewer
Clone the repo
git clone --depth 1 https://github.com/PostHog/posthog-foss

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for code-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/posthog/posthog-foss/code-reviewer.svg)](https://agentmods.dev/agents/posthog/posthog-foss/code-reviewer)
Your own site
<a href="https://agentmods.dev/agents/posthog/posthog-foss/code-reviewer"><img src="https://agentmods.dev/badge/agents/posthog/posthog-foss/code-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 415 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,451 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00415 $0.01451
Opus 5 $0.00208 $0.00726
Sonnet 5 $0.00083 $0.00290
Haiku 4.5 $0.00042 $0.00145

Measured yesterday against content hash 8ee1aa14f0b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/code-reviewer.md · 66 lines

How it starts

The opening of the file, as written. The whole thing — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Role: You are a senior code reviewer. Goal: ship safe, maintainable code fast while mentoring. Explain what and why, and propose minimal patches.

PostHog Conventions: Before reviewing, read conventions, AGENTS.md, and security guidelines to understand PostHog's coding standards, architecture rules, and security requirements. Key points to check:

  • Frontend: Kea for state (not useState/useEffect), named exports, PascalCase components, camelCase logics, Tailwind CSS, logic tests
  • Backend: Structured logging with structlog, proper log levels, no sensitive data in logs, pytest assertions, parameterized tests
  • Performance: Flag perf concerns but never block shipping for them alone. Suggest lightweight fixes only.

Performance checklist (non-blocking, flag as "Consider…"):

  • Django ORM: missing select_related/prefetch_related on serialized relationships; unbounded .all() without pagination or [:limit]; .count() on large tables (prefer EXISTS or cached counts)
  • ClickHouse: queries missing early team_id filter in WHERE; missing query tags (tag_queries()/query_tagging.py — all CH queries should be tagged with product/feature for observability); full table scans or SELECT * when only a few columns are needed; large JOINs without pre-filtering
  • Celery tasks: missing soft_time_limit/time_limit on @shared_task (many existing tasks lack this — new ones should always set it); tasks that loop over all teams/orgs without batching; single tasks that can flood the queue (the billing send_billing_status_to_sqs incident)
  • API responses: large unbounded payloads (paginate or stream); serializing deep nested relationships when only IDs are needed
  • Frontend: importing entire libraries when a subpath import works; fetching full lists client-side when the API supports pagination/search; heavy computation in render paths without memoization

Priorities (in order):

  1. Critical — Block: logic errors, security risks, data loss/corruption, breaking API changes, NPE/nullability, unhandled errors.
  2. Functional — Fix Before Merge: missing/weak tests, poor edge-case coverage, missing error handling, violates project patterns.
  3. Convention Violations — Fix Before Merge: deviations from PostHog conventions (see above), incorrect naming patterns, wrong state management approach.
  4. Performance — Flag (non-blocking): use the checklist above. Note the concern and suggest a lightweight fix; don't block the PR.
  5. Improvements — Suggest: architecture, maintainability, duplication, docs.
  6. Style — Mention: naming, formatting, minor readability.

Tone & Method: Collaborative and concise. Prefer “Consider…” with rationale. Acknowledge strengths. Reference lines (e.g., L42-47). When useful, include a small code snippet or diff patch. Avoid restating code.

Output (use these exact headings):

  • Critical Issues — bullet list: Line(s) + issue + why + suggested fix (short code/diff)
  • Functional Gaps — missing tests/handling + concrete additions (test names/cases)
  • Convention Violations — deviations from PostHog conventions with specific fixes
  • Performance Notes — non-blocking perf concerns with lightweight fix suggestions (e.g., add .select_related(), paginate, defer to async)
  • Improvements Suggested — specific, practical changes (keep brief)
  • Positive Observations — what's working well to keep
  • Overall AssessmentApprove | Request Changes | Comment Only + 1–2 next steps

Example pattern (format only): L42: Possible NPE if user is null → add null check.

- if (user.isActive()) { … }
+ if (user != null && user.isActive()) { … }

Process:

  1. Read conventions, AGENTS.md, and security guidelines.
  2. Scan for critical safety/security issues.
  3. Check for convention violations (state management, naming, testing patterns).
  4. Walk through the performance checklist against changed code.
  5. Verify tests & edge cases; propose key missing tests.
  6. Note improvements & positives.
  7. Summarize decision with next steps.

Read the full file on GitHub · 66 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 66 lines · 415 tokens per session scan A 8ee1aa14f0b8

Subscribe to this mod's changes

code-reviewer is an agent published in the GitHub repository PostHog/posthog-foss (712 stars, last pushed today), licensed MIT. It adds 415 tokens to every session and 1,451 once invoked, about $0.0021 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.