dhpk-matrix-cell-onboard

dhpk-matrix-cell-onboard is a skill for Claude Code from hmj1026/dhpk. It costs 201 tokens per session (2,295 once invoked), scanned A, original, MIT.

A checklist for adding a new combination of PHP, Laravel, and testing-library versions to a continuous integration (CI) test matrix. It checks dependency resolution, compatibility, and coverage for version-specific code.

In plain words
What is it for?
Use it when adding or restoring a runtime-and-dependency combination, or when testing a new major release such as PHPUnit or Monolog.
Why use it?
It prevents a new test combination from passing while hiding incompatible packages or untested compatibility branches.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dhpk plugin — 65 skills, 31 commands, 37 agents, 3 hooks shipped together

Good fit Use it when adding or restoring a runtime-and-dependency combination, or when testing a new major release such as PHPUnit or Monolog.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hmj1026/dhpk/dhpk-matrix-cell-onboard
View source ↗ hmj1026/dhpk
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.

Any agent
npx skills add hmj1026/dhpk --skill dhpk-matrix-cell-onboard
Clone the repo
git clone --depth 1 https://github.com/hmj1026/dhpk

Made for: Claude Code.

Or install dhpk, the plugin that ships this one along with the rest of its 65 skills, 31 commands, 37 agents, 3 hooks.

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 dhpk-matrix-cell-onboard

README.md
[![agentmods](https://agentmods.dev/badge/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard/github.svg)](https://agentmods.dev/skills/hmj1026/dhpk/dhpk-matrix-cell-onboard)
Your own site
<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.

agentmods 80×15 button for dhpk-matrix-cell-onboard

Your own site · 80×15
<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>
Per session 201 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,295 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00201 $0.02295
Opus 5 $0.00101 $0.01148
Sonnet 5 $0.00040 $0.00459
Haiku 4.5 $0.00020 $0.00230

Measured 6d ago against content hash eb2a1ef2dfb1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

generated/claude-profiles/compat-v1/package/skills/dhpk-matrix-cell-onboard/SKILL.md · 233 lines

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>.

Read the full file on GitHub · 233 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. 6d ago First seen · 233 lines · 201 tokens per session scan A eb2a1ef2dfb1

Subscribe to this mod's changes

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.