Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

verification-loop验证循环

Agent Skill

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

总安装

346

周安装

14

GitHub Stars

8

下载量

109
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vamseeachanta/workspace-hub --skill verification-loop

简介

用于查找、检索和筛选相关信息,适合根据关键词、任务场景或来源线索快速定位候选结果。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装命令:npx skills add https://github.com/vamseeachanta/workspace-hub --skill verification-loop
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

SKILL.md

Verification Loop Skill

Overview

Six-phase quality gate validating code changes sequentially. Each phase must pass before proceeding. Auto-detects project type and adapts commands.

When to Use

  • Before committing changes
  • Pre-merge validation
  • CI/CD pipeline integration
  • Code review preparation

Phase Definitions

Phase 1: Build

ProjectCommandSkip If
Node.jsnpm run buildNo build script in package.json
Pythonuv build / python -m buildNo pyproject.toml or setup.py
Rustcargo build --releaseNo Cargo.toml

Phase 2: Typecheck

ProjectCommandSkip If
TypeScripttsc --noEmitNo tsconfig.json
Pythonpyright / mypy.No type checker installed
Rust(included in build)Always (cargo handles types)

Phase 3: Lint

ProjectCommandSkip If
JS/TSeslint. --ext.js,.jsx,.ts,.tsxNo eslint config
Pythonruff check. / flake8.No linter config
Rustcargo clippy -- -D warningsNo Cargo.toml

Phase 4: Test

ProjectCommandSkip If
JS/TSnpm test / npm run test:coverageNo test script
Pythonpytest --covNo tests directory
Rustcargo testNo tests

Phase 5: Security

ProjectCommandSkip If
JS/TSnpm auditNo package-lock.json
Pythonsafety check / pip-audit / bandit -r.No scanner installed
Rustcargo auditcargo-audit not installed

Phase 6: Diff Review

Command: git diff HEAD~1 --stat

Provides summary of changes for review context. Always informational, never fails.

Detection Logic

# Project type detection
detect_project() {
  [ -f "package.json" ] && echo "node"
  [ -f "pyproject.toml" ] || [ -f "setup.py" ] && echo "python"
  [ -f "Cargo.toml" ] && echo "rust"
}

# Skip conditions per phase
should_skip_typecheck() {
  [ ! -f "tsconfig.json" ] && [ ! -f "pyproject.toml" ]
}

should_skip_lint() {
  [ ! -f ".eslintrc.js" ] && [ ! -f ".eslintrc.json" ] && \
  [ ! -f "ruff.toml" ] && [ ! -f "Cargo.toml" ]
}

should_skip_test() {
  [ ! -d "tests" ] && [ ! -d "test" ] && \
  ! find . -name "*_test.py" -o -name "test_*.py" | grep -q .
}

Execution Flow

START -> BUILD -> TYPECHECK -> LINT -> TEST -> SECURITY -> DIFF-REVIEW -> SUCCESS
              \         \         \       \          \
               -> SKIP   -> SKIP   -> SKIP -> SKIP   -> SKIP (if conditions met)

Any phase FAIL -> STOP with error report

Configuration

Environment Variables

VERIFICATION_SKIP_PHASES="security,diff-review"  # Skip specific phases
VERIFICATION_COVERAGE_MIN=80                      # Coverage threshold
VERIFICATION_STRICT=true                          # Fail on warnings

Config File (.verification-loop.yml)

phases:
  build:
    enabled: true
    timeout: 300
  typecheck:
    enabled: true
    timeout: 120
  lint:
    enabled: true
    allow_warnings: false
  test:
    enabled: true
    coverage_threshold: 80
  security:
    enabled: true
    severity_threshold: moderate
  diff-review:
    enabled: true
    compare_ref: HEAD~1

skip_conditions:
  - pattern: "*.md"
    skip_phases: [build, typecheck, lint, test]

Error Handling

PhaseOn Failure
BuildStop, report compilation errors
TypecheckStop, report type errors
LintStop, report lint violations
TestStop, report failed tests
SecurityReport vulns, continue if below threshold
Diff-ReviewAlways succeeds (informational)

Integration

CI (GitHub Actions): Use fetch-depth: 2 for diff-review, run each phase in sequence.

Pre-Commit Hook:

#!/bin/bash
./verification-loop.sh --skip=security,diff-review
[ $? -ne 0 ] && exit 1

Metrics

MetricTarget
Pass Rate>95%
Duration<60s
Test Coverage>80%

Version 1.0.0 (2026-01-24): Initial release

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

windsurf

28.4%
按下载量换算31

OpenCode

25.71%
按下载量换算28

Cursor

17.94%
按下载量换算20

Codex

13.61%
按下载量换算15

Claude Code

8.73%
按下载量换算10

Antigravity

3.8%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills