Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

validation-pipeline验证管道

Agent Skill

validation-pipeline 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

256

周安装

11

GitHub Stars

329

下载量

90
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/proffesor-for-testing/agentic-qe --skill validation-pipeline

简介

validation-pipeline 用于查找和筛选相关信息,支持基于关键词的任务场景检索。

  • 适用于快速定位候选结果,辅助根据来源线索进行信息聚合。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的技能模块。
  • 建议确认权限范围和维护状态,避免触发不必要的联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Validation Pipeline

Purpose

Run structured validation pipelines that execute steps sequentially, enforce gates at blocking failures, and produce scored reports. Uses .claude/helpers/validation-pipeline.cjs with 13 requirements validation steps (BMAD-003).

Activation

  • When validating requirements documents
  • When running structured quality gates
  • When assessing document completeness, testability, or traceability
  • When invoked via /validation-pipeline

Quick Start

# Validate a requirements document (all 13 steps)
/validation-pipeline requirements docs/requirements.md

# Validate with specific steps only
/validation-pipeline requirements docs/requirements.md --steps format-check,completeness-check,invest-criteria

# Continue past blocking failures
/validation-pipeline requirements docs/requirements.md --continue-on-failure

# Output as JSON
/validation-pipeline requirements docs/requirements.md --json

Workflow

Step 1: Read the Target Document

Read the file specified by the user. If no file is provided, ask for one.

Read the target document using the Read tool.
Store the content for pipeline execution.

Step 2: Select Pipeline

Choose the appropriate pipeline based on the user's request:

PipelineStepsUse Case
requirements13Requirements documents, PRDs, user stories

Additional pipelines can be added to .claude/helpers/validation-pipeline.cjs.

Step 3: Execute Pipeline

The pipeline helper (.claude/helpers/validation-pipeline.cjs) handles execution:

  1. Sequential execution — steps run in order, each receiving results from prior steps
  2. Gate enforcement — blocking steps that fail halt the pipeline (unless --continue-on-failure)
  3. Per-step scoring — each step produces a 0-100 score with findings and evidence
  4. Weighted rollup — overall score uses category weights (format=10%, content=30%, quality=25%, traceability=20%, compliance=15%)

Requirements Pipeline Steps (13 total)

#Step IDCategorySeverityWhat It Checks
1format-checkformatblockingHeadings, required sections, document length
2completeness-checkcontentblockingRequired fields populated, acceptance criteria present
3invest-criteriaqualitywarningIndependent, Negotiable, Valuable, Estimable, Small, Testable
4smart-acceptancequalitywarningSpecific, Measurable, Achievable, Relevant, Time-bound
5testability-scorequalitywarningCan each requirement be tested?
6vague-term-detectioncontentinfoFlags "should", "might", "various", "etc."
7information-densitycontentinfoEvery sentence carries weight, no filler
8traceability-checktraceabilitywarningRequirements-to-tests mapping exists
9implementation-leakagequalitywarningRequirements don't prescribe implementation
10domain-compliancecomplianceinfoAlignment with domain model
11dependency-analysistraceabilityinfoCross-requirement dependencies identified
12bdd-scenario-generationqualitywarningCan generate Given/When/Then for each requirement
13holistic-qualitycomplianceblockingOverall coherence, no contradictions

Step 4: Report Results

Format the pipeline result as a structured report:

# Validation Report: Requirements Pipeline

**Overall**: PASS/FAIL/WARN | **Score**: 85/100 | **Duration**: 42ms

## Step Results
| # | Step | Status | Score | Findings | Duration |
|---|------|--------|-------|----------|----------|
| 1 | Format Check | PASS | 100 | 0 | 2ms |
| 2 | Completeness | WARN | 60 | 2 | 5ms |
...

## Blockers
- (blocking findings listed here)

## All Findings
- [HIGH] Missing acceptance criteria: Requirement US-104 has no AC
- [MEDIUM] Vague term: "should" used 5 times without specifics
...

Step 5: Record Learning

After pipeline execution, record the outcome for learning:

// Store validation pattern
memory store --namespace validation-pipeline --key "req-validation-{timestamp}" --value "{score, findings_count, halted}"

Parameters

ParameterTypeDefaultDescription
pipelinestringrequirementsPipeline type to run
filestringrequiredPath to document to validate
--stepsstringallComma-separated step IDs to run (e.g., format-check,completeness-check)
--continue-on-failurebooleanfalseSkip blocking gates
--jsonbooleanfalseOutput as JSON instead of markdown
--metadataobject{}Additional context for steps

Integration Points

  • qe-requirements-validator agent — delegates structured validation to this pipeline
  • qe-quality-gate agent — uses pipeline for gate evaluation
  • YAML Pipelines — can invoke validation steps as workflow actions
  • MCP — accessible via pipeline_validate tool

Output Schema

The pipeline produces a PipelineResult object (see schemas/output.json):

{
  pipelineId: string;
  pipelineName: string;
  overall: 'pass' | 'fail' | 'warn';
  score: number;           // 0-100 weighted average
  steps: StepResult[];     // per-step details
  blockers: Finding[];     // blocking findings
  halted: boolean;
  haltedAt?: string;       // step ID where halted
  totalDuration: number;
  timestamp: string;
}

Error Handling

  • Step throws exception — captured as a FAIL with critical finding, pipeline continues or halts per severity
  • File not found — report error, do not run pipeline
  • Empty document — format-check step will catch this as a blocking failure

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.03%
按下载量换算32

Claude

28.07%
按下载量换算25

Cursor

16.18%
按下载量换算15

Gemini CLI

9.75%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills