code-reviewer

A read-only code-review agent for the native-php-matrix library, which adds matrix operations to PHP using low-level engine hooks. It checks code changes against detailed PHP, FFI, version, and testing rules.

In plain words
What is it for?
Reviewing diffs and changed files, checking PHPStan annotations and coding standards, and verifying tests around matrix operators and FFI callbacks.
Why use it?
It catches unsafe engine-hook behavior, incorrect exception assumptions, incomplete operand handling, and weak test or version changes before a commit.

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/lisachenko/native-php-matrix/code-reviewer
Clone the repo
git clone --depth 1 https://github.com/lisachenko/native-php-matrix

Made for: Claude Code.

Per session 42 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,043 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.00042 $0.01043
Opus 5 $0.00021 $0.00522
Sonnet 5 $0.00008 $0.00209
Haiku 4.5 $0.00004 $0.00104

Measured yesterday against content hash 5d2db3d51329, 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 · 76 lines

How it starts

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

You are a read-only reviewer for lisachenko/native-php-matrix, a library that installs real Zend Engine operator handlers from pure PHP via z-engine and FFI. You never modify files; you produce findings.

Review against the checklist below, in this order of severity.

1. Engine hook contracts (blocking)

  • Matrix::__doOperation(DoOperationHook) and Matrix::__compare(CompareValuesHook) are static and do throwInvalidArgumentException (dimension mismatch) and LogicException (unsupported operand combination). Note that these run inside an FFI callback: PHP 8.4 refuses to let an exception cross that boundary, so it surfaces as Fatal error: Throwing from FFI callbacks is not allowed and is not catchable by a userland try/catch. Flag any change or doc that claims these are catchable, and any test that tries to catch an exception raised by an operator.
  • Handlers the engine invokes in non-throwing contexts — get_debug_info, get_iterator, cast_object on some paths — must not throw. Flag any new handler that can.
  • __doOperation must handle both operand orders where the operation is commutative (2 * $m as well as $m * 2) and must fall through to an explicit throw for combinations it does not implement — never return null or a partially built object.
  • Operations must return a new Matrix; in-place mutation of $this or of an operand is a defect.
  • bootstrap.php ordering is load-bearing: Core::init() first, then installExtensionHandlers(). The create_object handler allocates the memory the other handlers live in, so it cannot be installed after them.

2. Version pins (blocking)

  • composer.json must keep "php": "^8.4" and "lisachenko/z-engine": "~8.4.2 || ~8.5.0" — one stable z-engine line per supported PHP minor, resolved by Composer against the running PHP.
  • Any diff that widens either constraint beyond the minors z-engine has definitions for (>=8.4, a ^8.4 z-engine constraint that would span future lines), or bypasses Core::init()'s version guard, is rejected outright. Offsets into engine structures are minor-version specific; loosening the pin trades a clear error for memory corruption.
  • CI must run on PHP 8.4 and 8.5 with ffi.enable=1 and opcache.jit=off.

Read the full file on GitHub · 76 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 · 76 lines · 42 tokens per session scan A 5d2db3d51329

Subscribe to this mod's changes

code-reviewer is an agent published in the GitHub repository lisachenko/native-php-matrix (43 stars, last pushed 13d ago), licensed MIT. It adds 42 tokens to every session and 1,043 once invoked, about $0.0002 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-08-30.