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

quality-gates质量门

Agent Skill

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

总安装

815

周安装

35

GitHub Stars

4

下载量

286
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/duyet/claude-plugins --skill quality-gates

简介

quality-gates 提供结构化质量门控流程,用于验证代码质量、安全性和生产就绪状态。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要执行预合并检查或发布前验证时使用。
  • 可通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态后再使用。
  • 使用前建议核验是否会触发联网、命令执行或文件读写操作。
  • 可结合来源仓库和原始 README 进一步了解具体用法和限制条件。

SKILL.md

This skill provides structured quality gate procedures for verifying code quality, security, performance, and production readiness before delivery.

When to Invoke This Skill

Automatically activate for:

  • Code review and validation
  • Pre-merge quality checks
  • Pre-deployment verification
  • Release readiness assessment
  • Post-implementation quality audit

Quality Gate Levels

Standard (Default)

For routine changes, bug fixes, small features:

┌─────────────────────────────────────────────────────────┐
│                    STANDARD GATES                        │
├─────────────────────────────────────────────────────────┤
│ ✓ All tests pass                                        │
│ ✓ Linting clean (no errors)                             │
│ ✓ TypeScript compiles (no type errors)                  │
│ ✓ Code follows project patterns                         │
│ ✓ No obvious security issues                            │
│ ✓ Changes match requirements                            │
└─────────────────────────────────────────────────────────┘

Strict

For significant features, refactors, public APIs:

┌─────────────────────────────────────────────────────────┐
│                     STRICT GATES                         │
├─────────────────────────────────────────────────────────┤
│ All Standard gates PLUS:                                │
│ ✓ Test coverage ≥ 90% for new code                      │
│ ✓ Security scan passes (no high/critical)               │
│ ✓ Performance benchmarks met                            │
│ ✓ API documentation updated                             │
│ ✓ Breaking changes documented                           │
│ ✓ Peer review completed                                 │
└─────────────────────────────────────────────────────────┘

Critical

For security-sensitive, production-critical, high-risk changes:

┌─────────────────────────────────────────────────────────┐
│                    CRITICAL GATES                        │
├─────────────────────────────────────────────────────────┤
│ All Strict gates PLUS:                                  │
│ ✓ Security audit by security-focused review             │
│ ✓ Load testing completed                                │
│ ✓ Rollback procedure documented and tested              │
│ ✓ Monitoring and alerting configured                    │
│ ✓ Stakeholder sign-off obtained                         │
│ ✓ Incident response plan updated                        │
└─────────────────────────────────────────────────────────┘

Quality Gate Procedures

1. Code Quality Gate

# Run these checks in sequence
npm run lint          # or: bun run lint
npm run type-check    # or: bun run type-check
npm run test          # or: bun run test
npm run build         # Verify build succeeds

Verification checklist:

  • Zero linting errors
  • Zero TypeScript errors
  • All tests pass
  • Build completes successfully
  • No console.log statements in production code
  • No TODO comments blocking release

2. Test Coverage Gate

npm run test:coverage

Coverage requirements by level:

LevelLine CoverageBranch CoverageFunction Coverage
Standard≥ 70%≥ 60%≥ 70%
Strict≥ 90%≥ 80%≥ 90%
Critical≥ 95%≥ 90%≥ 95%

What to test:

  • Happy path scenarios
  • Error handling paths
  • Edge cases (null, empty, boundary values)
  • Integration points
  • User-facing behavior

3. Security Gate

Automated checks:

npm audit              # Dependency vulnerabilities
npm run lint:security  # Security-focused lint rules (if configured)

Manual review checklist:

  • No hardcoded secrets or credentials
  • Input validation on all user inputs
  • Output encoding to prevent XSS
  • SQL/NoSQL injection prevention
  • Authentication checks on protected routes
  • Authorization verified for sensitive operations
  • HTTPS enforced for sensitive data
  • Sensitive data not logged
  • CORS configured correctly

For Strict/Critical:

  • OWASP Top 10 review completed
  • Security-focused code review by second engineer
  • Penetration testing (Critical only)

4. Performance Gate

Metrics to verify:

MetricStandardStrictCritical
Page Load< 3s< 2s< 1s
API Response< 500ms< 200ms< 100ms
Bundle Size< 500KB< 300KB< 200KB
Memory LeakNoneNoneNone

Verification steps:

  • No N+1 queries introduced
  • Database queries use indexes
  • Large lists are paginated
  • Images are optimized
  • Caching implemented where appropriate
  • No blocking operations on main thread

5. Documentation Gate

Required documentation:

LevelREADMEAPI DocsChangelogArchitecture
Standard--
Strict-
Critical

Checklist:

  • README updated with new features/changes
  • API endpoints documented (Strict+)
  • Breaking changes clearly noted
  • Migration guide provided (if applicable)
  • Architecture decisions recorded (Critical)

6. Integration Gate

Verification steps:

  • Feature works end-to-end
  • No regression in existing functionality
  • Cross-browser testing (if frontend)
  • Mobile responsiveness verified (if applicable)
  • Third-party integrations tested

For Strict/Critical:

  • E2E test suite passes
  • Staging environment validation
  • User acceptance testing completed

Quality Gate Report Template

## Quality Gate Report

**Feature**: [Feature Name]
**Level**: [Standard | Strict | Critical]
**Date**: [YYYY-MM-DD]
**Reviewer**: [Name]

### Summary
| Gate | Status | Notes |
|------|--------|-------|
| Code Quality | ✅ PASS | All checks clean |
| Test Coverage | ✅ PASS | 92% coverage |
| Security | ✅ PASS | No vulnerabilities |
| Performance | ⚠️ WARN | API slightly slow |
| Documentation | ✅ PASS | Updated |
| Integration | ✅ PASS | E2E passing |

### Detailed Results

#### Code Quality
- Lint: 0 errors, 0 warnings
- TypeScript: 0 errors
- Tests: 47 passed, 0 failed
- Build: Success

#### Test Coverage
- Lines: 92% (target: 90%)
- Branches: 85% (target: 80%)
- Functions: 94% (target: 90%)

#### Security
- npm audit: 0 vulnerabilities
- Manual review: Completed, no issues
- [x] Input validation verified
- [x] Auth checks verified

#### Performance
- Page load: 1.8s (target: < 2s)
- API response: 180ms (target: < 200ms)
- Bundle size: 287KB (target: < 300KB)

#### Issues Found
1. [WARN] API endpoint `/api/users` responds in 450ms under load
   - Recommendation: Add caching layer
   - Severity: Low
   - Blocking: No

### Verdict

**✅ APPROVED FOR MERGE**

All critical gates pass. Performance warning noted for future optimization.

Gate Failure Handling

When a gate fails:

1. Identify Severity

SeverityDescriptionAction
BlockerPrevents deploymentMust fix before merge
CriticalSecurity/data riskMust fix before merge
MajorSignificant issueShould fix, can defer with approval
MinorQuality concernCan defer to follow-up

2. Document the Issue

### Gate Failure: [Gate Name]

**Severity**: [Blocker | Critical | Major | Minor]
**Description**: [What failed and why]
**Impact**: [What happens if not fixed]
**Remediation**: [How to fix]
**Timeline**: [When it will be fixed]
**Approved By**: [If deferring, who approved]

3. Resolution Path

Blocker/Critical → Fix immediately → Re-run gates
Major → Fix or get approval → Document decision
Minor → Create follow-up ticket → Proceed with caution

Quick Reference Commands

# Standard gate check
npm run lint && npm run type-check && npm run test && npm run build

# Coverage check
npm run test:coverage

# Security audit
npm audit

# Full strict gate
npm run lint && npm run type-check && npm run test:coverage && npm run build && npm audit

Checklist Summary

Pre-Review (Author)

  • Self-reviewed code changes
  • Tests added/updated
  • Documentation updated
  • No debugging code left
  • Commit messages are clear

Code Review (Reviewer)

  • Logic is correct
  • Code is readable
  • Follows project patterns
  • No security concerns
  • Tests are meaningful
  • Error handling is appropriate

Pre-Merge

  • All CI checks pass
  • Required approvals obtained
  • Conflicts resolved
  • Branch is up to date

Pre-Deploy (Critical)

  • Rollback plan documented
  • Monitoring configured
  • Stakeholders notified
  • Deployment window confirmed

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.21%
按下载量换算95

Claude

31.1%
按下载量换算89

Cursor

17.22%
按下载量换算49

Gemini CLI

9.17%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills