Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

validation-first首先验证

Agent Skill

validation-first 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

798

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/juliusbrussee/cavekit --skill validation-first

简介

如果代理无法验证它,就不会得到满足——每个要求都需要自动验证

  • 6 个门按顺序:编译 → 单元验证 → 集成 → 基准测试 → 冒烟测试 → 手动审核
  • 早期的门更便宜——在构建阶段发现问题,而不是在发布时
  • 每个规范要求至少映射到一个门 - 未映射的要求未经验证
  • 阶段门控制 Hunt 转换 — 在当前阶段通过其门之前不继续
  • 一次合并一个 — 在每次合并之间进行验证以查明故障
  • 完成信号实现自动化——当所有门都通过时,代理会发出特定的字符串
  • 回归是 P0——当通行门开始出现故障时,停止并修复后再继续
  • 每周安装量
  • 13
  • 存储库
  • 朱利叶斯布鲁湖/卡夫基特
  • GitHub 之星
  • 798
  • 第一次看到
  • 2026 年 4 月 9 日
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

Validation-First Design

Core Principle: If an Agent Cannot Validate It, It Will Not Be Met

Every spec requirement must include testable acceptance criteria that an agent can automatically verify. This is not optional — it is the foundation that makes SDD work.

Why? AI agents are non-deterministic. Without automated validation, there is no way to know whether an agent's output is correct. Validation gates turn "the agent generated some code" into "the agent generated code that provably meets the specification."

The validation-first rule applies at every level:

  • Spec requirements must have testable acceptance criteria
  • Plans must define which gates verify each task
  • Implementation must pass all applicable gates before being considered complete
  • Iterations must show measurable progress through gates

The Validation Gate Sequence

Every implementation must pass through six ordered checkpoints. Each successive gate is more expensive to run, so catching failures early saves significant time.

Gate 1: Compilation Check

What: The project compiles/transpiles without errors.

# Generic pattern — substitute your project's build command
{BUILD_COMMAND}

Why it matters: If the code does not build, nothing else can be validated. This is the cheapest possible check.

What it catches:

  • Syntax errors
  • Missing imports/dependencies
  • Type errors (in typed languages)
  • Configuration errors

Acceptance criteria pattern:

- [ ] `{BUILD_COMMAND}` completes with exit code 0
- [ ] No warnings related to {domain} (warnings in other domains are acceptable)

Gate 2: Isolated Unit Verification

What: Unit tests pass on all changed files.

# Generic pattern
{TEST_COMMAND}

# Or targeted at changed files
{TEST_COMMAND} --filter {changed-files}

Why it matters: Unit tests verify individual functions and modules in isolation. They are fast, deterministic, and catch logic errors.

What it catches:

  • Incorrect function behavior
  • Edge cases not handled
  • Regression from changes to existing code
  • Contract violations (wrong return types, missing fields)

Acceptance criteria pattern:

- [ ] All existing unit tests pass
- [ ] New unit tests cover all acceptance criteria for R{N}
- [ ] No test relies on external services or network access

Gate 3: Cross-Component Integration

What: End-to-end and integration tests verify that components work together.

# Generic pattern
{TEST_COMMAND} --e2e

# Or with a specific test runner
{E2E_TEST_COMMAND}

Why it matters: Unit tests verify components in isolation. Integration tests verify they work together. Many bugs only appear at integration boundaries.

What it catches:

  • API contract mismatches between components
  • Data flow errors across module boundaries
  • Authentication/authorization integration issues
  • Database query errors with real (or realistic) data

Acceptance criteria pattern:

- [ ] User can complete {workflow} end-to-end
- [ ] API endpoint returns correct response for {scenario}
- [ ] Error propagation works correctly from {source} to {destination}

Gate 4: Resource and Speed Benchmarks

What: Performance benchmarks pass defined thresholds.

# Generic pattern
{BENCHMARK_COMMAND}

# Or specific checks
{TEST_COMMAND} --performance

Why it matters: Functional correctness is necessary but not sufficient. Performance regression can make a feature unusable even if it produces correct output.

What it catches:

  • Response time regression
  • Memory leaks or excessive allocation
  • CPU-intensive operations that block the main thread
  • Database query performance degradation

Acceptance criteria pattern:

- [ ] API response time < {N}ms at p95 under {M} concurrent users
- [ ] Page load time < {N}s on simulated 3G connection
- [ ] Memory usage does not exceed {N}MB during {operation}
- [ ] No operation blocks the main thread for > {N}ms

Note: Not every task needs performance gates. Apply Gate 4 when:

  • The spec explicitly defines performance requirements
  • The change touches a known hot path
  • The feature involves data processing at scale

Gate 5: Startup Smoke Test

What: The application starts successfully and basic smoke tests pass.

# Generic pattern — start the application
{START_COMMAND}

# Verify it is running
curl -f http://localhost:{PORT}/health

# Or run smoke tests
{SMOKE_TEST_COMMAND}

Why it matters: Code can build and pass all tests but fail to start. Launch verification catches configuration issues, missing environment variables, port conflicts, and startup race conditions.

What it catches:

  • Missing environment variables or configuration
  • Port conflicts or binding errors
  • Startup initialization failures
  • Missing runtime dependencies
  • Database migration issues

Acceptance criteria pattern:

- [ ] Application starts with `{START_COMMAND}` and responds to health check
- [ ] Main screen/page renders without errors
- [ ] No error-level entries in application logs during startup
- [ ] Application shuts down gracefully on interrupt signal

Gate 6: Manual Audit

What: A human reviews the output for quality, design intent, and requirements that are difficult to automate.

Why it matters: Some things cannot be automated — UX quality, architectural elegance, naming consistency, documentation clarity. Gate 6 is where the human acts as the final quality filter.

What it catches:

  • Subjective quality issues
  • Architectural decisions that are technically correct but strategically wrong
  • Over-engineering or under-engineering
  • Security concerns that automated tools miss
  • Requirements that were technically met but miss the spirit of the spec

How it works in practice:

  1. Agent completes Gates 1-5 and reports results
  2. Human reviews the implementation against spec intent
  3. Human provides feedback as issues or spec updates
  4. If feedback requires code changes, it enters the revision loop:

- Update specs with the missing requirement - Re-run iteration loop - Verify the fix emerges from updated specs

Acceptance criteria pattern:

- [ ] Implementation reviewed by human for spec intent alignment
- [ ] No architectural concerns raised
- [ ] Code style consistent with project conventions

Gate Summary Table

GatePurposeCommand PatternTypical DurationAutomated?
1. CompilationCode compiles cleanly{BUILD_COMMAND}SecondsYes
2. Unit VerificationIndividual functions behave correctly{TEST_COMMAND}Seconds-MinutesYes
3. IntegrationModules cooperate as expected{E2E_TEST_COMMAND}MinutesYes
4. BenchmarksSpeed and resource use within budget{BENCHMARK_COMMAND}MinutesYes
5. Smoke TestApplication boots and responds{START_COMMAND} + health checkSecondsYes
6. Manual AuditMeets design intent and quality barHuman inspectionVariableNo
For the full validation gate reference with detailed examples, see references/validation-gates.md.

Mapping Spec Requirements to Gates

Every spec requirement must map to at least one validation gate. When writing specs (see ck:cavekit-writing), each acceptance criterion should indicate which gate verifies it.

Mapping Pattern

### R1: User Authentication
**Acceptance Criteria:**
- [ ] Valid credentials return session token — **Gate 2** (unit test)
- [ ] Invalid credentials return 401 error — **Gate 2** (unit test)
- [ ] Session token grants access to protected endpoints — **Gate 3** (integration)
- [ ] Login page renders within 2s — **Gate 4** (performance)
- [ ] Application starts with auth module loaded — **Gate 5** (launch)

Unmapped Requirements Are Unvalidated

If a requirement cannot be mapped to any gate, it has one of two problems:

  1. The requirement is too vague — rewrite it with specific, testable criteria
  2. The validation infrastructure is missing — add the gate (e.g., if there are no E2E tests, Gate 3 does not exist yet)

Either way, an unmapped requirement will not be reliably met by an agent.


Phase Gates Between Hunt Phases

Phase gates are mandatory verification checkpoints between Hunt phases. They ensure that the output of one phase is solid before the next phase builds on it.

Phase Gate Definitions

TransitionGate ConditionHow to Verify
Spec → PlanAll domains have specs with testable acceptance criteriaReview cavekit-overview.md; every R{N} has AC items
Plan → ImplementPlans reference specs, define sequence, include test strategiesReview plan files; every task maps to spec requirements
Implement → IterateCode builds (Gate 1), tests pass (Gate 2), impl tracking is currentRun {BUILD_COMMAND} and {TEST_COMMAND}; check impl tracking
Iterate → MonitorConvergence detected: changes decreasing iteration-over-iterationCompare diffs across last 3-5 iterations
Monitor → SpecGap found or new requirement identifiedGap analysis identifies unmet acceptance criteria

Phase Gate Enforcement

Phase gates are enforced by the iteration loop. When a prompt includes phase gate checks, the agent:

  1. Runs the gate check at the end of the phase
  2. Reports pass/fail status
  3. If the gate fails, the agent does not proceed to the next phase
  4. Instead, the agent iterates on the current phase until the gate passes

Example: Implement → Iterate Gate

## Exit Criteria (Phase Gate)
Before reporting completion:
- [ ] `{BUILD_COMMAND}` succeeds with exit code 0
- [ ] `{TEST_COMMAND}` passes with no new failures
- [ ] All files created/modified are listed in impl tracking
- [ ] All dead ends encountered are documented
- [ ] Test health table is updated with current counts

Merge Protocol

When working with agent teams (multiple agents dispatched via the Agent tool), the merge protocol ensures that integrating work from different agents does not break validation gates.

The Protocol

Agent A completes work in its isolated branch
Agent B completes work in its isolated branch
Agent C completes work in its isolated branch

Merge sequence (one at a time):
1. Merge Agent A's branch → main
2. Run: {BUILD_COMMAND} → must pass
3. Run: {TEST_COMMAND} → must pass
4. Run: Launch verification → must pass
5. If all pass → proceed
6. If any fail → fix before merging next branch

7. Merge Agent B's branch → main
8. Run: {BUILD_COMMAND} → must pass
9. Run: {TEST_COMMAND} → must pass
10. ...repeat for each agent branch

Why One at a Time?

Merging all agent branches simultaneously and then running tests makes it impossible to determine which merge caused a failure. Merging one at a time with validation between each merge pinpoints failures immediately.

Merge Protocol Rules

  1. Merge one agent branch at a time — never batch-merge
  2. Run Gates 1-3 after each merge — build, unit tests, integration tests
  3. Run Gate 5 after all merges — launch verification on the fully integrated codebase
  4. Clean up after each merge: delete the merged branch (git branch -D <branch>).
  5. If a merge fails validation, fix it before proceeding to the next merge

Completion Signals

Completion signals are specific strings that agents emit when all exit criteria for a task or phase are met. They enable automation to detect when an agent is done.

How Completion Signals Work

  1. The prompt defines the signal: When ALL exit criteria are met, output exactly: <all-tasks-complete>
  2. The agent emits the signal after verifying all exit criteria
  3. The iteration loop detects the signal and stops iterating

Completion Signal Rules

  • The signal must be a unique string that would not appear in normal output
  • The agent must verify all exit criteria before emitting the signal
  • The signal should be the last thing the agent outputs in a session
  • If the agent cannot meet all criteria, it should not emit the signal and instead document what is blocking completion

Example Prompt with Completion Signal

## Exit Criteria
Complete all of the following before emitting the completion signal:
- [ ] All T- tasks are DONE or BLOCKED with documented blockers
- [ ] `{BUILD_COMMAND}` succeeds
- [ ] `{TEST_COMMAND}` passes with no new failures
- [ ] Implementation tracking is updated
- [ ] All dead ends are documented

When ALL criteria above are met, output:
<all-tasks-complete>

If you cannot meet all criteria, document what is blocking
and do NOT output the completion signal.

Validation-First Design Patterns

Pattern 1: Test Before Implement

Write or generate tests before implementing the feature. The test defines what "correct" means.

1. Read spec requirement R{N} acceptance criteria
2. Generate test cases that verify each criterion
3. Run tests → all fail (RED)
4. Implement the feature
5. Run tests → all pass (GREEN)
6. Refactor if needed

This is TDD-within-SDD. See superpowers:test-driven-development for the existing TDD skill.

Pattern 2: Gate Cascade

Run gates in order. If an earlier gate fails, do not run later gates.

Gate 1 (Build) → FAIL → fix build errors → retry Gate 1
Gate 1 (Build) → PASS → Gate 2 (Unit Tests)
Gate 2 (Tests) → FAIL → fix failing tests → retry Gate 2
Gate 2 (Tests) → PASS → Gate 3 (Integration)
...

Earlier gates are cheaper. Fixing a build error costs seconds. Fixing an integration error costs minutes. Fix cheap problems first.

Pattern 3: Progressive Gate Depth

Not every iteration needs all gates. Use progressive depth based on the phase:

PhaseRequired GatesOptional Gates
Early Implement1 (Build), 2 (Unit)
Mid Implement1, 2, 3 (Integration)4 (Performance)
Late Implement1, 2, 3, 5 (Launch)4
Pre-ReleaseAll 1-6

Pattern 4: Regression Prevention

When a gate that previously passed starts failing, treat it as a P0 issue:

  1. Stop forward progress — do not implement new features
  2. Identify the regression — which change caused the failure?
  3. Fix the regression — restore the passing state
  4. Add a test — ensure this specific regression cannot recur
  5. Backpropagate — if the regression reveals a spec gap, update the spec

Integration with Other Skills

With superpowers:verification-before-completion

The existing verification-before-completion skill provides a general framework for verifying work before marking it done. Validation-first design extends this with the specific 6-gate pipeline and phase gate system used in SDD.

How they work together:

  • superpowers:verification-before-completion ensures the agent checks its work
  • ck:validation-first defines exactly what checks to run and in what order

With ck:cavekit-writing

Every spec requirement must have acceptance criteria that map to validation gates. The spec-writing skill defines how to write those criteria. Validation-first design defines how to verify them.

With ck:impl-tracking

Validation results are recorded in the implementation tracking document's Test Health table. Gate failures become Issues. Gate-related dead ends are documented in the Dead Ends section.

With ck:methodology

Validation gates operate continuously across all Hunt phases. Phase gates control transitions between phases. The iteration loop uses gate results as convergence signals.


Summary

  1. If an agent cannot validate it, it will not be met — every requirement needs automated verification
  2. 6 gates in order: Compilation → Unit Verification → Integration → Benchmarks → Smoke Test → Manual Audit
  3. Earlier gates are cheaper — catch problems at the build stage, not at launch
  4. Every spec requirement maps to at least one gate — unmapped requirements are unvalidated
  5. Phase gates control Hunt transitions — do not proceed until the current phase passes its gate
  6. Merge one at a time — validate between each merge to pinpoint failures
  7. Completion signals enable automation — agents emit a specific string when all gates pass
  8. Regression is P0 — when a passing gate starts failing, stop and fix before proceeding

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.29%
按下载量换算39

Claude

27.57%
按下载量换算29

Cursor

17.91%
按下载量换算19

Gemini CLI

8.49%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills