Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

quality-gate质量门

Agent Skill

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

总安装

272

周安装

11

GitHub Stars

24

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/noobygains/godmode --skill quality-gate

简介

quality-gate 用于查找、检索和筛选相关信息,适合质量标准和流程检查场景。

  • 适用于 Codex、Claude、Cursor 和 Gemini CLI,支持基于关键词快速定位相关内容。
  • 可通过 GitHub 仓库和原始文档继续核验功能细节。
  • 安装前应确认权限范围和维护状态,避免引入不可控行为。
  • 建议在测试环境中验证后再用于关键质量审查任务。

SKILL.md

Quality Gate

Dispatch the code-reviewer agent (agents/code-reviewer.md) to surface defects before they propagate.

Core principle: Inspect early, inspect often.

Prime Directive

NO LANDING WITHOUT REVIEW

No exceptions. No workarounds. No shortcuts.

The Entry Protocol

Before initiating a review, confirm:

  1. The test suite passes on the current branch
  2. All changes are committed (no dirty working tree)
  3. You have determined BASE_SHA and HEAD_SHA
  4. You can articulate what was built and why
  5. You know the plan or specification to review against
  6. You have scoped the review correctly (single task vs. batch)

If any condition is unmet, resolve it before requesting review.

When to Initiate

Required:

  • After each task in delegated-execution workflows
  • After completing a significant feature
  • Before landing on the trunk branch

Discretionary but recommended:

  • When stuck (an outside perspective often unblocks)
  • Before starting a large refactor (establish a baseline)
  • After resolving a tricky defect

How to Initiate

1. Capture the commit range:

BASE_SHA=$(git rev-parse HEAD~1)  # or origin/main
HEAD_SHA=$(git rev-parse HEAD)

2. Launch a code-reviewer subagent:

Dispatch the code-reviewer agent (agents/code-reviewer.md) using the Agent tool. Fill in the template at code-reviewer.md.

Template placeholders:

  • {WHAT_WAS_IMPLEMENTED} — What was just built
  • {PLAN_OR_REQUIREMENTS} — What it should satisfy
  • {BASE_SHA} — Starting commit
  • {HEAD_SHA} — Ending commit
  • {DESCRIPTION} — Brief narrative

3. Respond to findings:

  • Resolve Critical findings immediately
  • Resolve Important findings before advancing
  • Log Minor findings for a future pass
  • Object with evidence if the reviewer is mistaken

Walkthrough

[Just completed Task 3: Add data validation layer]

You: Initiating quality gate before proceeding.

BASE_SHA=$(git log --oneline | grep "Task 2" | head -1 | awk '{print $1}')
HEAD_SHA=$(git rev-parse HEAD)

[Launch code-reviewer agent (agents/code-reviewer.md)]
  WHAT_WAS_IMPLEMENTED: Input validation and sanitization for all API endpoints
  PLAN_OR_REQUIREMENTS: Task 3 from docs/plans/api-hardening-plan.md
  BASE_SHA: c4e19a7
  HEAD_SHA: 8b2f305
  DESCRIPTION: Added validateRequest() and sanitizeInput() with 5 rule types

[Subagent returns]:
  Strengths: Comprehensive rule coverage, solid test assertions
  Issues:
    Important: Missing rate-limit header on validation error responses
    Minor: Hardcoded threshold (50) for payload size check
  Assessment: Ready to proceed after addressing Important item

You: [Fix rate-limit header]
[Continue to Task 4]

Cognitive Traps

RationalizationTruth
"It's a tiny change — no review needed"Small diffs cause large outages. Review everything.
"I tested it exhaustively"Testing and review catch fundamentally different classes of issues.
"Review will slow momentum"Fixing production incidents slows momentum far more.
"The reviewer won't follow this code"If a reviewer cannot follow it, neither will the next engineer.
"I'll batch review on the next PR"Quality debt compounds. Review now or pay compounded interest later.

Integration

godmode:delegated-execution:

  • Review after EACH delegated task
  • Surface defects before they cascade
  • Resolve before starting the next task

godmode:task-runner:

  • Review after each batch of tasks
  • Collect feedback, apply corrections, continue

Ad-Hoc Development:

  • Review before landing
  • Review when blocked

Guardrails

Prohibited:

  • Skipping review because "it's straightforward"
  • Ignoring Critical findings
  • Advancing with unresolved Important findings
  • Dismissing valid technical feedback without evidence
  • Landing changes with open Critical or Important items

Mandatory:

  • Review after every task in delegated-execution
  • Include BASE_SHA and HEAD_SHA in every review request
  • Respond to Critical findings immediately
  • Object with code or test evidence when disputing feedback
  • Request clarification when feedback is vague

Process Diagram

START: Work finished
  |
  +-- Suite green? --NO--> Fix tests first
  |        |
  |       YES
  |        |
  +-- Changes committed? --NO--> Commit changes
  |        |
  |       YES
  |        |
  +-- Determine BASE_SHA and HEAD_SHA
  |        |
  +-- Launch code-reviewer agent (agents/code-reviewer.md)
  |        |
  +-- Wait for results
  |        |
  +-- Critical items? --YES--> Fix now, re-review
  |        |
  |       NO
  |        |
  +-- Important items? --YES--> Fix before advancing
  |        |
  |       NO
  |        |
  +-- Log Minor items for later
  |        |
  +-- ADVANCE to next task

See reviewer template at: quality-gate/code-reviewer.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.87%
按下载量换算30

Claude

30.51%
按下载量换算26

Cursor

19.75%
按下载量换算17

Gemini CLI

9.25%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills