abd-test

abd-test is a skill for Claude Code from RealDougEubanks/ClaudeMarketplace. It costs 31 tokens per session (388 once invoked), scanned A, original, MIT.

An automated testing workflow for an Agent-Based Development project. It identifies the project's testing framework, writes tests in its existing style, runs them, and records the results.

In plain words
What is it for?
Use it to test normal cases, edge cases, invalid input, errors, and the acceptance criteria in a project plan.
Why use it?
It reduces the need to discover testing conventions manually and creates a record showing what was tested and whether it passed.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agent-based-development plugin — 12 skills shipped together

Good fit Use it to test normal cases, edge cases, invalid input, errors, and the acceptance criteria in a project plan.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/realdougeubanks/claudemarketplace/abd-test
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 RealDougEubanks/ClaudeMarketplace --skill abd-test
Clone the repo
git clone --depth 1 https://github.com/RealDougEubanks/ClaudeMarketplace

Made for: Claude Code.

Or install agent-based-development, the plugin that ships this one along with the rest of its 12 skills.

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 abd-test

README.md
[![agentmods](https://agentmods.dev/badge/skills/realdougeubanks/claudemarketplace/abd-test/github.svg)](https://agentmods.dev/skills/realdougeubanks/claudemarketplace/abd-test)
Your own site
<a href="https://agentmods.dev/skills/realdougeubanks/claudemarketplace/abd-test"><img src="https://agentmods.dev/badge/skills/realdougeubanks/claudemarketplace/abd-test/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 abd-test

Your own site · 80×15
<a href="https://agentmods.dev/skills/realdougeubanks/claudemarketplace/abd-test"><img src="https://agentmods.dev/badge/skills/realdougeubanks/claudemarketplace/abd-test.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 388 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.00031 $0.00388
Opus 5 $0.00015 $0.00194
Sonnet 5 $0.00006 $0.00078
Haiku 4.5 $0.00003 $0.00039

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

Security

Grade A, and why

abd-test 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 9d 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.

skills/agent-based-development/skills/abd-test/SKILL.md · 25 lines

What it actually says

ABD — Testing

Adopt the Testing role in the Agent-Based Development workflow.

Read the shared references before acting: envelope and artifact rules, Git rules, MVP gate.

If handoffs/ does not exist, stop and tell the user to run the Planning skill (abd-plan) first — see project-start.md.

Instructions:

  1. Use Read to read the latest plan artifact from handoffs/plans/ and dev artifacts from handoffs/dev/.
  2. Auto-detect the test framework: look for Jest or Vitest by checking package.json; pytest by checking pyproject.toml or setup.py; Go test by checking go.mod; PHPUnit by checking composer.json.
  3. Use Glob with patterns **/*.test.*, **/*_test.*, and tests/**/* to read existing tests and match their style and patterns.
  4. Write tests covering: happy path, edge cases, invalid input, error conditions, and all acceptance criteria listed in the plan artifact.
  5. Use Bash to run the test suite and fix any failures before writing the artifact.
  6. Use Write to create a test artifact at handoffs/dev/{taskId}_testing_{unixTimestamp}.json containing status and a test summary (framework detected, number of tests added, pass/fail counts, and any failures resolved).

Follow the output format in envelope.md when reporting.

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. 9d ago First seen · 25 lines · 31 tokens per session scan A 7dfb0b8d3314

Subscribe to this mod's changes

abd-test is a skill published in the GitHub repository RealDougEubanks/ClaudeMarketplace (1 stars, last pushed 2mo ago), licensed MIT. It adds 31 tokens to every session and 388 once invoked, about $0.0002 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-08-31.

Related

Other skills, from other repositories

generate-tasks

Phase 3 of 5 — slices the ARCH doc into verification-ready task specs (tdd/test-after/ui/checklist), emitted as a separate TASKS- - .md file alongside ARCH for the implement skill. Use only when the user asks to run Phase 3 or generate tasks from an ARCH doc — never trigger automatically.

foyzulkarim/skills · 74 tokens

unity-testing

Unity 6 testing guide. Use when writing unit tests, integration tests, or doing TDD with Unity Test Framework. Covers Edit Mode and Play Mode tests, NUnit attributes ([Test], [UnityTest], [SetUp], [TearDown]), testing MonoBehaviours and coroutines, and CI/CD integration. Based on Unity 6.3 LTS documentation.

IdoCohen560/claude-unity-game-studio · 78 tokens

uw-code-review

Pre-commit code quality review for Unity C# code. Checks against Rules, CODINGSTANDARDS.md, NAMINGCONVENTIONS.md, and GDD Gherkin test coverage. Use when code has been written and tests are passing but before committing. Runs automatically at Step 8.5 of /uw-cmd-implement-feature. Triggers on "review this code"…

IdoCohen560/claude-unity-game-studio · 124 tokens

feature-dev

Take one new feature slice from idea to reviewed, committed code in a single guided pass — scope it into the smallest shippable slice, build it test-first with strict TDD, review and fix the diff, then commit it. Chains slice → test-driven-development → the built-in /code-review → git-commit. Not for reviewing an…

thoughtbot/rails-consultant · 83 tokens

test-driven-development

Strict red-green-refactor TDD workflow for implementing features, fixing bugs, or changing behavior in Rails applications. Enforces the discipline of writing a failing test before any production code. Use whenever you want to implement with TDD — whether a new feature, a bugfix, a refactor, or any behavior change.

thoughtbot/rails-consultant · 68 tokens

tools-unity-test-framework

Unity Test Framework patterns for EditMode and PlayMode tests including async testing, mocking, and test organization.

IdoCohen560/claude-unity-game-studio · 27 tokens