Borrowing it
Nothing to install: this file belongs to GabrielOnDelphi/Claude-Tools-for-Delphi. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/GabrielOnDelphi/Claude-Tools-for-Delphi/main/.claude/skills/light-review-DUnitX/SKILL.mdgit clone --depth 1 https://github.com/GabrielOnDelphi/Claude-Tools-for-DelphiWrote 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/gabrielondelphi/claude-tools-for-delphi/light-review-dunitx)<a href="https://agentmods.dev/skills/gabrielondelphi/claude-tools-for-delphi/light-review-dunitx"><img src="https://agentmods.dev/badge/skills/gabrielondelphi/claude-tools-for-delphi/light-review-dunitx/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/gabrielondelphi/claude-tools-for-delphi/light-review-dunitx"><img src="https://agentmods.dev/badge/skills/gabrielondelphi/claude-tools-for-delphi/light-review-dunitx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00000 | $0.01317 |
| Opus 5 | $0.00000 | $0.00659 |
| Sonnet 5 | $0.00000 | $0.00263 |
| Haiku 4.5 | $0.00000 | $0.00132 |
Grade A, and why
light-review-DUnitX 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 7d 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 — 126 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DUnitX testing — reference
For the red-green discipline (failing test first, confirmed red on its assertion) use /light-review-RedGreen. This skill is the structural reference: how a fixture, a fake and an integration test are shaped here.
Non-negotiables (Gabriel's rules)
- Every
[Test]makes a real assertion. KeepFailsOnNoAssertson in the runner; a zero-assertion orAssert.Pass-only test is a fake test — the exact thing/light-review-FakeTesthunts. - No form / UI tests. Restrict DUnitX to domain and service logic. Layout lives in the
.dfm/.fmxand is not unit-tested. - Compile only via the
light-compileragent (globalCLAUDE.mdrule); the agent reports compile results only — launching the test EXE to read pass/fail counts is your job. - Reuse LightSaber in the code under test before hand-rolling.
- Test project is usually
UnitTesting\Tests.dproj; if none exists, do not guess a layout — ask (template:c:\AI\Claude Code\TEMPLATE FOLDER\UnitTesting (TEMPLATE)\).
Fixture skeleton
type
[TestFixture]
TCustomerServiceTest = class
private
FService: TCustomerService;
FRepo: TMemoryCustomerRepository; // concrete fake, see below
public
[Setup] procedure Setup;
[TearDown] procedure TearDown;
[Test] procedure Create_WithValidData_Succeeds;
[Test] procedure Create_WithEmptyName_RaisesValidation;
end;
procedure TCustomerServiceTest.Setup;
begin
FRepo := TMemoryCustomerRepository.Create;
FService := TCustomerService.Create(FRepo);
end;
procedure TCustomerServiceTest.TearDown;
begin
FService.Free;
FRepo.Free;
end;
Register the fixture: initialization TDUnitX.RegisterTestFixture(TCustomerServiceTest);
Naming: Method_Scenario_ExpectedBehavior
| Name | Reads as |
|---|---|
Create_WithValidData_Succeeds |
happy path |
Create_WithEmptyName_RaisesValidation |
validation |
GetById_UnknownId_RaisesNotFound |
not found |
Delete_WhenReferenced_RaisesBusinessRule |
business rule |
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.
- 7d ago Changed · +2 lines 24ddd7ac2492
- 11d ago First seen · 124 lines · 0 tokens per session scan A 6a01bb3f8e82
light-review-DUnitX is a skill published in the GitHub repository GabrielOnDelphi/Claude-Tools-for-Delphi (18 stars, last pushed 4d ago), licensed MPL-2.0. It costs nothing until one of its globs matches a file; then it loads 1,317 tokens. 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-08-30.
Other skills, from other repositories
migrate-xunit-to-xunit-v3
Migrate .NET test projects from xUnit.net v2 to xunit.v3 and fix v3 breaks. Use for package/CPM conversion, OutputType=Exe, preserving the VSTest or MTP runner (including projects currently using YTest.MTP.XUnit2), incompatible TFMs, async void tests, string-to-Type attributes, custom Fact/Theory/BeforeAfterTest…
go-testing
Trigger: Go tests, go test coverage, Bubbletea teatest, golden files. Apply focused Go testing patterns.
nw-fp-clojure
Clojure language-specific patterns, data-first modeling, REPL-driven development, and spec.
mobiai-ios-testing
Use when writing or running tests in an iOS project — unit tests, UI tests, snapshot tests, choosing the right framework.
restore-internals-seams-in-finally-blocks-after-each-test
When delegating a task affected by this skill, include.
unit-test-parameterized
Provides parameterized testing patterns with JUnit 5, generates data-driven unit tests using @ParameterizedTest, @ValueSource, @CsvSource, @MethodSource. Creates tests that run the same logic with multiple input values. Use when writing data-driven Java tests, multiple test cases from single method, or boundary value…