Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

completion-gate完成门

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

24

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

completion-gate 强制要求提供最新验证输出才能声明任务完成。

  • 核心原则:无证据不承诺,杜绝虚假完成声明。
  • 每次断言前必须执行完整命令并逐行检查输出结果。
  • 适用于高可靠性要求的开发流程,禁止任何绕过验证的操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Completion Gate

Overview

Declaring work complete without verification is dishonesty, not efficiency.

Core principle: Evidence precedes assertions, always.

No exceptions. No workarounds. No shortcuts.

The Prime Directive

NO COMPLETION ASSERTIONS WITHOUT FRESH VERIFICATION OUTPUT

If the verification command has not been executed in this message, you cannot assert it passes.

The Entry Protocol

BEFORE asserting any status or expressing confidence:

1. IDENTIFY: Which command substantiates this assertion?
2. EXECUTE: Run the FULL command (fresh, complete)
3. INSPECT: Read every line of output, check exit code, tally failures
4. CONFIRM: Does the output support the assertion?
   - If NO: Report actual status with evidence
   - If YES: State the assertion WITH supporting evidence
5. ONLY THEN: Make the assertion

Skipping any step = fabrication, not verification

Verification Requirements

AssertionDemandsInsufficient
Tests passTest runner output showing 0 failuresPrior run, "should pass"
Linter cleanLinter output showing 0 errorsPartial scan, extrapolation
Build succeedsBuild command with exit code 0Linter passing, log fragments
Bug resolvedOriginal symptom tested and passesCode modified, assumed fixed
Regression test validRed-green cycle confirmedSingle green pass
Agent finishedVCS diff showing actual changesAgent self-reported "done"
Specification metLine-by-line requirement checklistTests passing alone

Guardrails - HALT

  • Using hedging language: "should", "probably", "seems to"
  • Expressing premature satisfaction ("Done!", "Perfect!", "All good!")
  • About to commit/push/open PR without verification
  • Trusting an agent's self-reported success
  • Relying on partial or stale verification
  • Thinking "just this one time"
  • Fatigued and wanting to wrap up
  • ANY phrasing that implies success without having run verification

Cognitive Traps

RationalizationTruth
"Should work now"EXECUTE the verification
"I'm confident"Confidence is not evidence
"Just this once"No exceptions
"Linter passed"Linter is not the compiler
"Agent reported success"Verify independently
"I'm tired"Fatigue is not justification
"Partial check is enough"Partial proof is no proof
"Different wording so rule doesn't apply"Intent over technicality

Verification Patterns

Tests:

CORRECT: [Run test command] [Output: 34/34 pass] "All tests pass"
WRONG: "Should pass now" / "Looks correct"

Regression tests (Red-Green cycle):

CORRECT: Write -> Run (pass) -> Revert fix -> Run (MUST FAIL) -> Restore -> Run (pass)
WRONG: "I've written a regression test" (without red-green confirmation)

Build:

CORRECT: [Run build] [Output: exit 0] "Build passes"
WRONG: "Linter passed" (linter does not validate compilation)

Specification compliance:

CORRECT: Re-read plan -> Create checklist -> Verify each item -> Report gaps or completion
WRONG: "Tests pass, phase done"

Agent delegation:

CORRECT: Agent reports done -> Check VCS diff -> Verify changes -> Report actual state
WRONG: Trust agent report at face value

Verifying Configuration Changes

When testing changes to configuration, providers, feature flags, or environment settings:

Do not merely confirm the operation succeeded. Confirm the output reflects the intended change.

The Silent Fallback Problem

An operation can succeed because *some* valid configuration exists, even if it is not the configuration you intended to apply.

ChangeInsufficientRequired
Switch LLM providerHTTP 200Response body contains expected model identifier
Toggle feature flagNo errorsFeature behavior observably active
Change environmentDeployment succeedsLogs/variables reference the new environment
Set credentialsAuthentication succeedsAuthenticated identity is the correct one

Configuration Verification Sequence

BEFORE asserting a configuration change works:

1. IDENTIFY: What should be DIFFERENT after this change?
2. LOCATE: Where is that difference observable?
3. EXECUTE: Command that exposes the observable difference
4. CONFIRM: Output contains the expected difference
5. ONLY THEN: Assert the configuration change works

Warning signs:
  - "Request succeeded" without inspecting content
  - Checking status code but ignoring response body
  - Confirming no errors but lacking positive confirmation

Verifying UI Work

When asserting UI work is complete:

AssertionDemandsInsufficient
Component matches designVisual comparison against UX reference"It looks right to me"
Responsive design worksTested at mobile, tablet, desktop breakpointsDesktop-only check
Accessibility passesScreen reader test + keyboard navigation + contrast check"I added aria labels"
Design tokens appliedSpacing/colors/typography match token values"I used the right classes"

Why This Matters

From accumulated failure patterns:

  • your human partner said "I don't believe you" — trust shattered
  • Undefined functions shipped — immediate crash
  • Missing requirements shipped — incomplete features
  • Time wasted on false completion -> redirect -> rework
  • Violates: "Honesty is a core value. If you lie, you'll be replaced."

When to Apply

ALWAYS before:

  • ANY variation of success or completion claims
  • ANY expression of satisfaction
  • ANY positive statement about work state
  • Committing, PR creation, task completion
  • Transitioning to the next task
  • Delegating to agents

Rule applies to:

  • Exact phrases
  • Paraphrases and synonyms
  • Implications of success
  • ANY communication suggesting completion or correctness

The Bottom Line

There are no shortcuts for verification.

Execute the command. Read the output. THEN state the result.

This is non-negotiable.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.96%
按下载量换算31

Claude

26.67%
按下载量换算23

Cursor

19.61%
按下载量换算17

Gemini CLI

9.39%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills