Test Master
Analysis
The skill is mostly a coherent testing guide, but one TDD reference gives absolute instructions to delete production code if tests were not written first, which should be reviewed before use.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"NO PRODUCTION CODE WITHOUT A FAILING TEST FIRST." ... "If you wrote production code before writing a failing test, delete it and start over. No exceptions."
This is an absolute instruction that could override a user's actual request and encourage deleting production code without an explicit approval, backup, or containment step.
beforeEach(async () => { await db.query('DELETE FROM users'); });This destructive database cleanup appears in a test-context example and is purpose-aligned, but it is only safe when run against an isolated test database.
