testability-scoring

testability-scoring is a skill for Claude Code from summarybotng/summarybot-ng. It costs 91 tokens per session (2,776 once invoked), scanned A, original, MIT.

A testability assessment for web applications that scores how easy they are to observe, control, understand, and test. It runs against a web address and creates an HTML report with a radar chart and prioritized improvements.

In plain words
What is it for?
Use it to assess a web application's testability through Playwright, review its ten testability principles, and prioritize improvements by impact and effort.
Why use it?
Hard-to-test applications slow down debugging and make automated tests unreliable. The assessment shows which design qualities make testing difficult and where improvements may have the most impact.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Use it to assess a web application's testability through Playwright, review its ten testability principles, and prioritize improvements by impact and effort.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/summarybotng/summarybot-ng/testability-scoring
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 summarybotng/summarybot-ng --skill testability-scoring
Clone the repo
git clone --depth 1 https://github.com/summarybotng/summarybot-ng

Made for: Claude Code.

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 testability-scoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/summarybotng/summarybot-ng/testability-scoring/github.svg)](https://agentmods.dev/skills/summarybotng/summarybot-ng/testability-scoring)
Your own site
<a href="https://agentmods.dev/skills/summarybotng/summarybot-ng/testability-scoring"><img src="https://agentmods.dev/badge/skills/summarybotng/summarybot-ng/testability-scoring/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 testability-scoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/summarybotng/summarybot-ng/testability-scoring"><img src="https://agentmods.dev/badge/skills/summarybotng/summarybot-ng/testability-scoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,776 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.00091 $0.02776
Opus 5 $0.00046 $0.01388
Sonnet 5 $0.00018 $0.00555
Haiku 4.5 $0.00009 $0.00278

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

Security

Grade A, and why

testability-scoring 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 5d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (resources/templates/config.template.js, resources/templates/testability-scoring.spec.template.js, scripts/generate-html-report.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/testability-scoring/SKILL.md · 352 lines

How it starts

The opening of the file, as written. The whole thing — 352 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Testability Scoring

<default_to_action> When assessing testability:

  1. RUN assessment against target URL
  2. ANALYZE all 10 principles automatically
  3. GENERATE HTML report with radar chart
  4. PRIORITIZE improvements by impact/effort
  5. INTEGRATE with QX Partner for holistic view

Quick Assessment:

# Run assessment on any URL
TEST_URL='https://example.com/' npx playwright test tests/testability-scoring/testability-scoring.spec.js --project=chromium --workers=1

# Or use shell script wrapper
.claude/skills/testability-scoring/scripts/run-assessment.sh https://example.com/

The 10 Principles at a Glance:

Principle Weight Key Question
Observability 15% Can we see what's happening?
Controllability 15% Can we control the application?
Algorithmic Simplicity 10% Are behaviors predictable?
Algorithmic Transparency 10% Can we understand what it does?
Algorithmic Stability 10% Does behavior remain consistent?
Explainability 10% Is the interface understandable?
Unbugginess 10% How error-free is it?
Smallness 10% Are components appropriately sized?
Decomposability 5% Can we test parts in isolation?
Similarity 5% Is the tech stack familiar?

Grade Scale:

  • A (90-100): Excellent testability
  • B (80-89): Good testability
  • C (70-79): Adequate testability
  • D (60-69): Below average
  • F (0-59): Poor testability </default_to_action>

Quick Reference Card

Running Assessments

Method Command When to Use
Shell Script ./scripts/run-assessment.sh URL One-time assessment
ENV Override TEST_URL='URL' npx playwright test... CI/CD integration
Config File Update tests/testability-scoring/config.js Repeated runs

Principle Details

High Weight (15% each)
Principle Measures Indicators
Observability State visibility, logging, monitoring Console output, network tracking, error visibility
Controllability Input control, state manipulation API access, test data injection, determinism

Read the full file on GitHub · 352 lines

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. 5d ago First seen · 352 lines · 91 tokens per session scan A 4cc1828bab45

Subscribe to this mod's changes

testability-scoring is a skill published in the GitHub repository summarybotng/summarybot-ng (2 stars, last pushed 3mo ago), licensed MIT. It adds 91 tokens to every session and 2,776 once invoked, about $0.0005 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-09-03.

Related

Other skills, from other repositories

playwright-component-testing

Set up component testing with Playwright using a story gallery — scaffold stories and a gallery dev page driven by the built-in mount fixture, no dedicated component-testing runtime. Use when asked to test React or Vue components in isolation with Playwright, or to migrate off @playwright/experimental-ct-react / -vue.

microsoft/playwright · 69 tokens

testing-e2e

End-to-end testing patterns with Playwright — page objects, AI agent testing, visual regression, accessibility testing with axe-core, and CI integration. Use when writing E2E tests, setting up Playwright, implementing visual regression, or testing accessibility.

yonatangross/orchestkit · 55 tokens

Axe-core Accessibility Testing

Accessibility testing skill using axe-core and Playwright for automated WCAG 2.1 compliance auditing, custom rules, and accessibility reporting.

PramodDutta/qaskills · 33 tokens

Playwright E2E Testing

Use this skill when you need high-confidence coverage of user flows (auth, uploads, payments, chat flows) and you want stable, debuggable Playwright tests.

AmariahAK/atlarix-skills · 6 tokens

nextjs-testing

Write Jest or Vitest unit tests with React Testing Library and Playwright E2E tests for Next.js projects. Use when testing components with RTL, mocking APIs with MSW, or creating Playwright user flow tests.

FilippoDeSilva/skills · 48 tokens

generate-a11y-tests

Generates comprehensive Playwright accessibility tests with axe-core integration for any UI component or page. Use this skill to create automated accessibility regression tests that verify WCAG 2.1 Level AA compliance.\n\n \nContext: Developer has just completed building a login form component.\nuser: \"Generate…

deepakkamboj/claude-marketplace · 417 tokens