Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

writing-quality-tests编写质量测试

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

371

周安装

15

GitHub Stars

公开资料未说明

下载量

116
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:writing-quality-tests(编写质量测试)
来源仓库:https://github.com/ederheisler/agent-skills
仓库路径:skills/writing-quality-tests
安装命令:
npx skills add https://github.com/ederheisler/agent-skills --skill writing-quality-tests
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ederheisler/agent-skills --skill writing-quality-tests

简介

用于编写质量测试用例和评估标准。writing-quality-tests 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 适合提升软件或内容的可靠性和稳定性。
  • 使用时需结合具体业务逻辑设计测试场景。
  • 建议人工复核测试覆盖率和边界条件。
  • 安装方式:通过 npx 从 GitHub 仓库添加技能。

SKILL.md

Writing Quality Tests

Overview

High-signal tests prove behavior, not implementation. While TDD focuses on the *process* of writing tests first, this skill focuses on the *artifact*—making tests stable, explicit, and valuable long-term.

Core rule: If a test is nondeterministic or tied to internals, it is debt. Fix it.

When to Use

  • New features: "I need to add tests for this new API endpoint/component."
  • Bug fixes: "Help me write a regression test for this bug before fixing it."
  • Flaky tests: "This test fails randomly on CI. How do I make it deterministic?"
  • Refactoring: "I want to refactor this legacy code but the tests are brittle. How do I improve them first?"
  • Slow tests: "The test suite takes too long. How can I speed it up or mock dependencies effectively?"
  • Test Design: "Should I use a unit test or integration test for this logic?"
  • Review: "Check these tests for maintainability, coverage, and clarity."
  • Not for manual exploratory testing or load/perf-only work.

Non-Negotiables

  • Deterministic: same input -> same result; no hidden time/network randomness
  • Behavioral oracles: assertions map to business behavior or contracts, never incidental internals
  • Minimal coupling: tests fail for product changes, not helper refactors
  • Focused scope: one behavior per test; isolated fixtures; clear names
  • Fast feedback: prefer fast layers; cache expensive setup; parallelize safely

Workflow

  1. Prove it fails: capture the regression input or wished-for case and watch the test fail first (or reproduce the bug) before code changes.
  2. Clarify behavior: preconditions, action, postconditions, invariants. Capture regression input if fixing a bug.
  3. Pick level: unit for pure logic; contract for external calls; integration for seams; E2E only to prove flows or contracts end-to-end.
  4. Design oracle: assert outputs, state, events, and invariants; avoid implementation details or transient UI.
  5. Shape fixtures: use builders/factories; avoid globals; randomize with seeds only when helpful and log the seed.
  6. Write the test: AAA (arrange-act-assert) or GWT; table-driven for variants; property-based for algebraic invariants.
  7. Validate: run focused test first, then suite. If flaky, hunt nondeterminism (time, randomness, order, network) and remove it.
  8. Document intent: name states behavior; failure message points to the expected contract.

Patterns to Prefer

  • Boundary and mutation pairs: min/max/empty/null plus one mutated variation to prove invariants.
  • Table-driven cases: enumerate input/output pairs to avoid duplicate tests and improve diffability.
  • Property-based checks: algebraic properties (idempotence, reversibility, ordering), round-trips, monotonic counters.
  • Contracts at seams: mock at boundaries you own; for third-party calls, pin to contract tests or recorded fixtures.
  • Guarded goldens: only for complex structured output; require explicit review of golden updates.

Coverage Strategy

  • Coverage is opt-in: never run coverage unless explicitly requested by the user in the current session (e.g., "improve coverage on file X to Y%"). PM/teammate/CI pressure does not override this rule.
  • Pyramid discipline: many unit tests, fewer integration, very few E2E. Use E2E to prove cross-service flow or UI contract.
  • Change-based coverage: every test should fail without the code change and pass with it; capture the regression input/output.
  • Critical paths first: auth, billing, migrations, data loss, irreversible actions. Add invariants that must never be violated.
  • Data and time: cover time zones, DST, leap years, ordering, pagination, idempotency, and retry semantics.
  • Observability: log seeds for randomized tests; emit diagnostics on failure (inputs, seed, environment versions).

Example (explicit coverage request): User: "improve coverage on file X to 80%". Run targeted coverage for that file only, add behavior-driven tests to hit missing branches, and avoid coverage runs outside that request.

pytest --cov=path/to/file.py --cov-report=term-missing

Flake Prevention

  • Remove time races: replace sleeps with waits on explicit conditions; freeze or inject clocks.
  • Isolate state: fresh fixtures per test; unique temp dirs/ports; clean databases; no shared singletons.
  • Control randomness: seed RNG, capture seed in failure output, prefer deterministic builders.
  • Network and IO: stub external calls; if unavoidable, record/replay; set tight timeouts and retries with jitter disabled in tests.
  • Parallel safety: ensure fixtures are parallel-safe or mark tests serial; avoid global mutable state.

Review Checklist

  • Name states behavior and level (e.g., "adds item to cart (integration)").
  • Single reason to fail; assertions map to user-visible behavior or contract.
  • Fixtures minimal and local; builders hide irrelevant details; no shared hidden state.
  • Negative and edge cases present; regression case for the original bug captured.
  • Tests run quickly; slow/expensive flows justified and focused.

Hygiene (adaptable patterns)

  • Structure: Given–When–Then or AAA so intent is obvious.
  • Hypothesis: fix generators or code instead of suppressing health checks; log seeds for repro.
  • Async correctness: use real async paths/fakes; don’t hide missing awaits with sync doubles.
  • Assertion scope: assert behavior/contract fields; avoid brittle full-payload snapshots unless testing a contract.
  • Coverage as health, not blocker: focus on low-coverage behavior-heavy files; be pragmatic with legacy or infra-heavy areas.

Marks (for selective runs)

  • unit: isolated logic with external deps mocked
  • contract/integration: cross-component seams with real wiring or adapters
  • async: true async paths; avoid sync fakes masking awaits
  • property: Hypothesis-based invariants in dedicated property files
  • slow: >1s or real infra; justify and keep focused

Common Anti-Patterns

  • Brittle UI or text snapshots without intent; prefer semantic assertions or scoped snapshots.
  • Over-mocking internals; mocking within the module under test; asserting call order that is not part of the contract.
  • Sleep-based waits; reliance on wall-clock time; unseeded randomness.
  • Combined scenarios covering multiple behaviors in one test; global fixtures that hide setup.
  • Golden files updated blindly; tests that assert logging implementation rather than outcomes.
  • Running coverage by default instead of waiting for explicit coverage requests.

Red Flags - Stop and Fix

  • Tests pass or fail intermittently
  • Assertions tied to private methods or call order instead of observable behavior
  • Unseeded randomness, sleeps instead of explicit waits, or shared mutable fixtures
  • Golden updates accepted without review of intent
  • A test never failed before the code change
  • Running coverage without the user explicitly asking
  • Running coverage due to PM/teammate/CI pressure

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.53%
按下载量换算46

Claude

29.48%
按下载量换算34

Cursor

18.03%
按下载量换算21

Gemini CLI

9.9%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills