name: check
When this skill is invoked, immediately spawn the project's container-tester subagent via the Agent tool. Do not run make check yourself in the main session — the whole point of the skill is to keep verbose phpunit/build output out of the main context.
Agent({
description: "Run lint + tests in container",
subagent_type: "container-tester",
prompt: "Run `make check` from the repo root. Report only failures and a one-line summary, per your output policy."
})
If the user passed an argument to the skill, route it:
/check lint → prompt: "Runmake lintonly. Report per your output policy."/check test → prompt: "Runmake testonly. Report per your output policy."/check <anything else> → pass it through as additional context: "Runmake check. Caller note: <argument>. Report per your output policy."Show the agent's reply to the user as-is. It is already shaped to be the final answer — don't add commentary, don't re-summarise, don't suggest fixes unless the user asks.
If the report indicates failures and the user follows up with "fix it" / "what's wrong" / similar, then take over with full investigation in the main session.