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 skills add hmj1026/dhpk --skill dhpk-matrix-cell-onboardgit clone --depth 1 https://github.com/hmj1026/dhpkWrote 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.
[](https://agentmods.dev/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard)<a href="https://agentmods.dev/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard"><img src="https://agentmods.dev/badge/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard"><img src="https://agentmods.dev/badge/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00201 | $0.02295 |
| Opus 5 | $0.00101 | $0.01148 |
| Sonnet 5 | $0.00040 | $0.00459 |
| Haiku 4.5 | $0.00020 | $0.00230 |
Grade A, and why
dhpk-matrix-cell-onboard 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 6d ago.
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 — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Matrix cell onboard
Adding a new cell to a multi-major test matrix is more than appending one
YAML row. The cell only earns its keep when (1) composer.json can resolve
it, (2) every polyfill branch in src/ that could fire for this cell has a
test, and (3) the Testbench / phpunit / monolog / meta-tags versions in the
new cell are mutually compatible.
This skill is a procedure, not an agent. Run it as a checklist.
When to run
- Adding a new
php × <framework>combination (e.g. PHP 8.3 + Laravel 12) - Restoring a cell that was previously excluded (e.g. PHP 7.3 dropped, now needs to come back for a customer)
- A dep ships a new major (Monolog 4, Flysystem 4, PHPUnit 12) and you want to start exercising it before raising the floor
When NOT to Use
- Just bumping the patch version inside an existing cell (no matrix change)
- Adding a test file that runs on all existing cells (no matrix change)
- Removing a cell — use the symmetric "matrix cell retire" procedure (informal: same checklist in reverse)
Inputs
You need the proposed cell as a tuple of pinned versions:
php: "8.3"
laravel: "^12.0"
phpunit: "^11.0"
monolog: "^3.0" # or ^4.0 if testing pre-release
meta-tags: "^4.0" # if applicable
testbench: "^10.0" # auto-derived from laravel, see step 3
If the user hands you only php: 8.3, laravel: 12, fill the rest from the
existing cell adjacency rules below before asking them.
Procedure
Step 1 — Verify composer.json can resolve the cell
For each dep in the proposed cell, check composer.json's require (and
require-dev) constraint.
grep -E '"(php|laravel/framework|monolog/monolog|butschster/meta-tags|orchestra/testbench|phpunit/phpunit)"' composer.json
A constraint like "php": "^7.3 || ^8.0" admits 8.3. A constraint like
"laravel/framework": "^6.0 || ... || ^11.0" does NOT admit 12.0 — you
must extend it first.
Output of step 1: a per-dep list of composer OK or composer NEEDS EXTENSION: <current> → <proposed>.
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.
- 6d ago First seen · 233 lines · 201 tokens per session scan A eb2a1ef2dfb1
dhpk-matrix-cell-onboard is a skill published in the GitHub repository hmj1026/dhpk (2 stars, last pushed today), licensed MIT. It adds 201 tokens to every session and 2,295 once invoked, about $0.0010 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-05.
Other skills, from other repositories
craft-pest
Testing Craft CMS 5 plugins and modules with Pest — test isolation, database safety, and the markhuot/craft-pest-core harness. ALWAYS load when writing, running, fixing, or reviewing tests for a Craft plugin or module, and whenever a suite touches a real Craft install. Covers why rollback is opt-in, tests/Pest.php +…
php-testing
Use when writing/configuring tests on a non-Laravel PHP project — PHPUnit vs Pest. Do NOT use for Laravel test helpers or quality tooling (php-quality-tooling).
Test Scaffold (Laravel/PHPUnit)
Generate PHP/Laravel (PHPUnit) test skeletons from specifications.
php-quality
A PHP quality-check workflow using PHPStan, Pint, PHPUnit, Pest, or Laravel's test command. It checks code behavior, types, style, and formatting.
quality-checks
Configure and run the Symfony / API Platform 4.3 quality stack — PHP-CS-Fixer (@Symfony + @PER-CS rulesets), PHPStan level 9+ (with phpstan-symfony and phpstan-doctrine extensions), Psalm if needed, composer audit + Renovate for dependency CVEs, composer install --no-dev --optimize-autoloader for production builds…
craft-test-suite
Crafting a test suite. Zero to green in 60 seconds.