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.
npx agentmods add agents/lisachenko/native-php-matrix/code-reviewergit clone --depth 1 https://github.com/lisachenko/native-php-matrixWhat 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.
| Model | Per session | Once 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 |
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.
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)andMatrix::__compare(CompareValuesHook)are static and do throw —InvalidArgumentException(dimension mismatch) andLogicException(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 asFatal error: Throwing from FFI callbacks is not allowedand is not catchable by a userlandtry/catch. Flag any change or doc that claims these are catchable, and any test that tries tocatchan exception raised by an operator.- Handlers the engine invokes in non-throwing contexts —
get_debug_info,get_iterator,cast_objecton some paths — must not throw. Flag any new handler that can. __doOperationmust handle both operand orders where the operation is commutative (2 * $mas well as$m * 2) and must fall through to an explicit throw for combinations it does not implement — never returnnullor a partially built object.- Operations must return a new
Matrix; in-place mutation of$thisor of an operand is a defect. bootstrap.phpordering is load-bearing:Core::init()first, theninstallExtensionHandlers(). Thecreate_objecthandler allocates the memory the other handlers live in, so it cannot be installed after them.
2. Version pins (blocking)
composer.jsonmust 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.4z-engine constraint that would span future lines), or bypassesCore::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=1andopcache.jit=off.
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.
- yesterday First seen · 76 lines · 42 tokens per session scan A 5d2db3d51329
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.
Other agents, from other repositories
xberg-developer
Route cross-cutting Xberg work to the repository's task-specific architecture and workflow skills.
extraction-engineer
Route document extraction work to format, MIME, pipeline, PDF, safety, corpus, and benchmark guidance.
ocr-engineer
Route OCR backend, preprocessing, geometry, caching, table, and quality work to focused Xberg skills.
plugin-engineer
Route plugin trait, registry, lifecycle, Python bridge, OCR backend, and binding work to focused skills.
crawl-engineer
Web crawling pipeline development.
Demonstrate
Agent for demonstrating VS Code features.