Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

acceptance-testing验收测试

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

727

周安装

30

GitHub Stars

1

下载量

238
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill acceptance-testing

简介

用于辅助编写单元测试、端到端测试及测试计划,确保功能实现与规格一致。

  • 适用于需要自动化回归验证、用例整理或根据日志定位问题的开发环境,支持多种测试框架。
  • 通过将验收标准转化为测试用例,建立从规范到代码的验证链条,防止提前宣称完成。
  • 安装命令:npx skills add https://github.com/pixel-process-ug/superkit-agents --skill acceptance-testing
  • 需确认项目测试配置、运行命令及夹具路径,避免为通过测试而破坏真实逻辑或引入副作用。

SKILL.md

Acceptance Testing

Overview

Acceptance-driven backpressure connects specification acceptance criteria directly to test requirements, creating a validation chain that prevents premature completion claims. The system cannot cheat — you cannot claim a feature is done unless tests derived from spec acceptance criteria actually pass.

Announce at start: "I'm using the acceptance-testing skill to validate against specification criteria."


The Backpressure Chain

+------------+     derives      +------------+     validates    +------------+
|   SPECS    |---------------->|   TESTS    |---------------->|   CODE     |
|            |                  |            |                  |            |
| Acceptance |                  | Test cases |                  | Must pass  |
| Criteria   |                  | from AC    |                  | all tests  |
+------------+                  +------------+                  +------------+
      ^                                                              |
      |                    backpressure                               |
      +--------------------------------------------------------------+
      If tests fail, implementation must change (not the spec or test)

Phase 1: Extract Acceptance Criteria

Goal: From each specification file, extract all Given/When/Then acceptance criteria.

Actions

  1. Locate all specification files (specs/*.md)
  2. Extract every acceptance criterion with its ID
  3. Document in structured format

Example Extraction

## From spec: 01-color-extraction.md

### AC-1: Extract dominant colors
- Given an uploaded image (PNG, JPG, or WebP)
- When color extraction is triggered
- Then 5-10 dominant colors are returned
- And each color includes hex, RGB, and HSL representations

### AC-2: Handle invalid images
- Given a corrupted or unsupported file
- When color extraction is attempted
- Then an appropriate error is returned
- And no partial results are produced

STOP — HARD-GATE: Do NOT proceed to Phase 2 until:

  • All spec files are located and read
  • Every acceptance criterion is extracted with an ID
  • Criteria are in Given/When/Then format
  • No criteria are ambiguous (if ambiguous, clarify with spec author)

Phase 2: Derive Test Cases

Goal: Map every acceptance criterion to at least one test case.

┌─────────────────────────────────────────────────────────────────┐
│  HARD-GATE: Every acceptance criterion must have at least one   │
│  corresponding test. No exceptions. If a criterion has no       │
│  test, the feature is NOT complete.                             │
└─────────────────────────────────────────────────────────────────┘

Traceability Table

Acceptance CriterionTest TypeTest DescriptionTest File:Line
AC-1: Extract dominant colorsIntegrationUpload valid image, verify 5-10 colors with hex/RGB/HSLtest/color.test.js:15
AC-2: Handle invalid imagesIntegrationUpload corrupted file, verify error, verify no partial datatest/color.test.js:42

Decision Table: Test Type for Acceptance Criteria

Criterion TypeTest TypeRationale
Data input/output behaviorIntegrationTests real data flow
Error handling behaviorIntegrationTests error paths end-to-end
Performance requirementLoad testRequires measurement under load
UI behaviorE2E (Playwright)Tests real browser interaction
Subjective qualityLLM-as-judgeCannot be deterministically tested
Security requirementIntegration + security testTests authorization and input validation

STOP — HARD-GATE: Do NOT proceed to Phase 3 until:

  • Every acceptance criterion has at least one test mapped
  • Test types are appropriate for the criterion type
  • Test file locations are identified

Phase 3: Write Tests Before Implementation

Goal: Write acceptance tests that will fail until the feature is correctly implemented.

Actions

This phase integrates with test-driven-development:

  1. Write test from acceptance criterion (RED)
  2. Implement feature to pass test (GREEN)
  3. Refactor while keeping test green (REFACTOR)

Behavioral Outcome Focus

Verify This (Behavioral)NOT This (Implementation)
"5-10 colors are returned""K-means runs with k=8"
"Response time < 200ms""Cache is hit on second call"
"Error message is user-friendly""CustomError class is thrown"
"Data persists across sessions""PostgreSQL INSERT executes"
"UI updates within 500ms""WebSocket message is received"

STOP — HARD-GATE: Do NOT proceed to Phase 4 until:

  • All acceptance tests are written
  • Tests fail before implementation (RED confirmed)
  • Tests verify behavioral outcomes, not implementation details

Phase 4: Validation Gates

Goal: Before claiming any task complete, ALL gates must pass.

GateCheckToolRequired
Unit testsAll passTest runnerAlways
Integration testsAll passTest runnerAlways
Acceptance testsAll AC-derived tests passTest runnerAlways
BuildCompiles without errorsBuild toolAlways
LintNo violationsLinterAlways
TypecheckNo type errorsType checkerWhen applicable
┌─────────────────────────────────────────────────────────────────┐
│  HARD-GATE: ACCEPTANCE                                         │
│                                                                 │
│  Cannot claim completion without ALL acceptance tests passing.  │
│  If any acceptance test fails, the feature is NOT done.        │
│  Fix the implementation, not the spec or the test.             │
└─────────────────────────────────────────────────────────────────┘

STOP — HARD-GATE: Do NOT proceed to Phase 5 until:

  • All validation gates pass
  • Acceptance tests pass with green status
  • No gates are skipped or marked as "will fix later"

Phase 5: Traceability Report

Goal: Produce a report linking every spec criterion to its test and result.

Report Template

## Acceptance Test Report

| Spec | Criterion | Test | Status |
|------|-----------|------|--------|
| 01-color-extraction.md | AC-1: Extract dominant colors | test/color.test.js:15 | PASS |
| 01-color-extraction.md | AC-2: Handle invalid images | test/color.test.js:42 | PASS |
| 02-palette-rendering.md | AC-1: Render palette grid | test/palette.test.js:8 | PASS |

### Summary
- Total criteria: N
- Tested: N
- Passing: N
- Failing: 0
- Coverage: 100%

Anti-Patterns / Common Mistakes

Anti-PatternWhy It Is WrongCorrect Approach
Changing specs to match implementationDefeats the purpose of specificationFix the implementation, not the spec
Skipping edge case criteriaEdge cases cause production bugsALL acceptance criteria get tests
Testing implementation detailsBrittle tests that break on refactorTest observable behavioral outcomes
Claiming "tests pass" without acceptance testsUnit tests alone are insufficientAcceptance tests are a separate, required category
Writing acceptance tests after implementationTests shaped to pass, not to specifyWrite BEFORE implementation (TDD)
Deferring acceptance tests to "later"Later never comesWrite them in Phase 2, before coding
Marking failing tests as "known issues"Hides incomplete implementationFix the code until tests pass

Rationalization Prevention

ExcuseReality
"The unit tests cover this"Unit tests test components in isolation; acceptance tests verify integrated behavior
"The spec is obvious, no need for formal tests"Obvious specs still need verifiable tests
"We can manually verify this"Manual verification is not repeatable or trustworthy
"The acceptance criteria are too vague to test"Clarify the criteria; vague specs produce vague code
"This is just a cosmetic change"Cosmetic changes can break layout, accessibility, and UX

Integration Points

SkillRelationship
spec-writingAcceptance criteria come from specs
test-driven-developmentTDD cycle uses acceptance-derived tests
llm-as-judgeFor subjective criteria that cannot be deterministically tested
verification-before-completionFinal verification includes acceptance test check
autonomous-loopExit gate requires acceptance tests passing
code-reviewReview checks acceptance test coverage
planningPlan includes acceptance test writing as explicit tasks

Skill Type

RIGID — The backpressure chain must not be bypassed. Every acceptance criterion must have a test. No completion without passing acceptance tests. Fix the implementation, not the spec or the test.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.71%
按下载量换算80

Claude

30.94%
按下载量换算74

Cursor

19.09%
按下载量换算45

Gemini CLI

8.51%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills