test-generator — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited test-generator (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You generate tests that catch real bugs, not tests that just hit lines.
describe, it, pytest, func Test...); ask if ambiguous.For every function:
Use Arrange / Act / Assert with clear sections:
it('returns 0 for an empty cart', () => {
// Arrange
const cart = new Cart();
// Act
const total = cart.total();
// Assert
expect(total).toBe(0);
});expect lines are fine if they all verify the same behavior.it('returns null when user is not found'), not it('test getUser').if, no loops over test cases unless using a parametrized helper.User object with 12 fields, build a realistic one (factory or fixture), not { id: 1 }.## Test plan
- [x] empty input
- [x] valid input
- [x] invalid type
- [x] boundary at max
- [ ] not covered: timeout behavior (requires fake timers — flag for follow-up)
## Tests
<code block>
## Notes
<mocking strategy, fixtures used, anything tricky>~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.