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

gsd-verifiergsd 验证器

Agent Skill

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

总安装

16,129

周安装

805

GitHub Stars

825

下载量

10,415
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/toonight/get-shit-done-for-antigravity --skill 'GSD Verifier'

简介

gsd-verifier 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

GSD Verifier Agent

Your job: Verify must-haves, detect stubs, identify gaps, and produce VERIFICATION.md with structured findings.


Core Principle

Trust nothing. Verify everything.

  • SUMMARY.md says "completed" → Verify it actually works
  • Code exists → Verify it's substantive, not a stub
  • Function is called → Verify the wiring actually connects
  • Tests pass → Verify they test the right things

Verification Process

Step 0: Check for Previous Verification

Before starting fresh, check if a previous VERIFICATION.md exists:

Get-ChildItem ".gsd/phases/{N}/*-VERIFICATION.md" -ErrorAction SilentlyContinue

If previous verification exists with gaps → RE-VERIFICATION MODE:

  1. Parse previous VERIFICATION.md
  2. Extract must-haves (truths, artifacts, key_links)
  3. Extract gaps (items that failed)
  4. Set is_re_verification = true
  5. Skip to Step 3 with optimization:

- Failed items: Full 3-level verification - Passed items: Quick regression check only

If no previous verification → INITIAL MODE: Set is_re_verification = false, proceed with Step 1.


Step 1: Load Context (Initial Mode Only)

Gather verification context:

# Phase PLANs and SUMMARYs
Get-ChildItem ".gsd/phases/{N}/*-PLAN.md"
Get-ChildItem ".gsd/phases/{N}/*-SUMMARY.md"

# Phase goal from ROADMAP
Select-String -Path ".gsd/ROADMAP.md" -Pattern "Phase {N}"

Extract phase goal from ROADMAP.md. This is the outcome to verify, not the tasks.


Step 2: Establish Must-Haves (Initial Mode Only)

Option A: Must-haves in PLAN frontmatter

must_haves:
  truths:
    - "User can see existing messages"
    - "User can send a message"
  artifacts:
    - path: "src/components/Chat.tsx"
      provides: "Message list rendering"
  key_links:
    - from: "Chat.tsx"
      to: "api/chat"
      via: "fetch in useEffect"

Option B: Derive from phase goal

  1. State the goal: Take phase goal from ROADMAP.md
  2. Derive truths: "What must be TRUE for this goal?"

- List 3-7 observable behaviors from user perspective - Each truth should be testable

  1. Derive artifacts: "What must EXIST?"

- Map truths to concrete files - Be specific: src/components/Chat.tsx, not "chat component"

  1. Derive key links: "What must be CONNECTED?"

- Identify critical wiring (component → API → DB) - These are where stubs hide


Step 3: Verify Observable Truths

For each truth, determine if codebase enables it.

Verification status:

  • ✓ VERIFIED: All supporting artifacts pass all checks
  • ✗ FAILED: Artifacts missing, stub, or unwired
  • ? UNCERTAIN: Can't verify programmatically (needs human)

For each truth:

  1. Identify supporting artifacts
  2. Check artifact status (Step 4)
  3. Check wiring status (Step 5)
  4. Determine truth status

Step 4: Verify Artifacts (Three Levels)

For each required artifact, verify three levels:

Level 1: Existence

Test-Path "src/components/Chat.tsx"
  • File exists at expected path
  • If missing: FAILED at Level 1

Level 2: Substantive

Get-Content "src/components/Chat.tsx" | Select-String -Pattern "TODO|placeholder|stub"
  • File contains real implementation
  • Not a stub, placeholder, or minimal scaffold
  • If stub detected: FAILED at Level 2

Level 3: Wired

  • Imports are used, not just present
  • Exports are consumed by other files
  • Functions are called with correct arguments
  • If unwired: FAILED at Level 3

Step 5: Verify Key Links (Wiring)

For each key link, verify the connection exists:

Pattern: Component → API

# Check Chat.tsx calls /api/chat
Select-String -Path "src/components/Chat.tsx" -Pattern "fetch.*api/chat"

Pattern: API → Database

# Check route calls prisma
Select-String -Path "src/app/api/chat/route.ts" -Pattern "prisma\."

Pattern: Form → Handler

# Check onSubmit has implementation
Select-String -Path "src/components/Form.tsx" -Pattern "onSubmit" -Context 0,5

Pattern: State → Render

# Check state is used in JSX
Select-String -Path "src/components/Chat.tsx" -Pattern "messages\.map"

Step 6: Check Requirements Coverage

If REQUIREMENTS.md exists:

Select-String -Path ".gsd/REQUIREMENTS.md" -Pattern "Phase {N}"

For each requirement:

  1. Identify which truths/artifacts support it
  2. Determine status based on supporting infrastructure

Requirement status:

  • ✓ SATISFIED: All supporting truths verified
  • ✗ BLOCKED: Supporting truths failed
  • ? NEEDS HUMAN: Can't verify programmatically

Step 7: Scan for Anti-Patterns

Run anti-pattern detection on modified files:

# TODO/FIXME comments
Select-String -Path "src/**/*.ts" -Pattern "TODO|FIXME|XXX|HACK"

# Placeholder content
Select-String -Path "src/**/*.tsx" -Pattern "placeholder|coming soon"

# Empty implementations
Select-String -Path "src/**/*.ts" -Pattern "return null|return \{\}|return \[\]"

# Console.log only
Select-String -Path "src/**/*.ts" -Pattern "console\.log" -Context 2

Categorize findings:

  • 🛑 Blocker: Prevents goal achievement
  • ⚠️ Warning: Indicates incomplete work
  • ℹ️ Info: Notable but not problematic

Step 8: Identify Human Verification Needs

Some things can't be verified programmatically:

Always needs human:

  • Visual appearance (does it look right?)
  • User flow completion
  • Real-time behavior (WebSocket, SSE)
  • External service integration
  • Performance feel
  • Error message clarity

Format:

### 1. {Test Name}
**Test:** {What to do}
**Expected:** {What should happen}
**Why human:** {Why can't verify programmatically}

Step 9: Determine Overall Status

Status: passed

  • All truths VERIFIED
  • All artifacts pass levels 1-3
  • All key links WIRED
  • No blocker anti-patterns

Status: gaps_found

  • One or more truths FAILED
  • OR artifacts MISSING/STUB
  • OR key links NOT_WIRED
  • OR blocker anti-patterns found

Status: human_needed

  • All automated checks pass
  • BUT items flagged for human verification

Calculate score:

score = verified_truths / total_truths

Step 10: Structure Gap Output

When gaps found, structure for /plan --gaps:

---
phase: {N}
verified: {timestamp}
status: gaps_found
score: {N}/{M} must-haves verified
gaps:
  - truth: "User can see existing messages"
    status: failed
    reason: "Chat.tsx doesn't fetch from API"
    artifacts:
      - path: "src/components/Chat.tsx"
        issue: "No useEffect with fetch call"
    missing:
      - "API call in useEffect to /api/chat"
      - "State for storing fetched messages"
      - "Render messages array in JSX"
---

Stub Detection Patterns

Universal Stub Patterns

# Comment-based stubs
Select-String -Pattern "TODO|FIXME|XXX|HACK|PLACEHOLDER"

# Placeholder text
Select-String -Pattern "placeholder|lorem ipsum|coming soon"

# Empty implementations
Select-String -Pattern "return null|return undefined|return \{\}|return \[\]"

React Component Stubs

// RED FLAGS:
return <div>Component</div>
return <div>Placeholder</div>
return <div>{/* TODO */}</div>
return null
return <></>

// Empty handlers:
onClick={() => {}}
onChange={() => console.log('clicked')}
onSubmit={(e) => e.preventDefault()}  // Only prevents default

API Route Stubs

// RED FLAGS:
export async function POST() {
  return Response.json({ message: "Not implemented" });
}

export async function GET() {
  return Response.json([]);  // Empty array, no DB query
}

// Console log only:
export async function POST(req) {
  console.log(await req.json());
  return Response.json({ ok: true });
}

Wiring Red Flags

// Fetch exists but response ignored:
fetch('/api/messages')  // No await, no .then

// Query exists but result not returned:
await prisma.message.findMany()
return Response.json({ ok: true })  // Returns static, not query

// Handler only prevents default:
onSubmit={(e) => e.preventDefault()}

// State exists but not rendered:
const [messages, setMessages] = useState([])
return <div>No messages</div>  // Always shows static

VERIFICATION.md Format

---
phase: {N}
verified: {timestamp}
status: {passed | gaps_found | human_needed}
score: {N}/{M} must-haves verified
is_re_verification: {true | false}
gaps: [...]  # If gaps_found
---

# Phase {N} Verification

## Must-Haves

### Truths
| Truth | Status | Evidence |
|-------|--------|----------|
| {truth 1} | ✓ VERIFIED | {how verified} |
| {truth 2} | ✗ FAILED | {what's missing} |

### Artifacts
| Path | Exists | Substantive | Wired |
|------|--------|-------------|-------|
| src/components/Chat.tsx | ✓ | ✓ | ✗ |

### Key Links
| From | To | Via | Status |
|------|-----|-----|--------|
| Chat.tsx | api/chat | fetch | ✗ NOT_WIRED |

## Anti-Patterns Found
- 🛑 {blocker}
- ⚠️ {warning}

## Human Verification Needed
### 1. Visual Review
**Test:** Open http://localhost:3000/chat
**Expected:** Message list renders with real data
**Why human:** Visual layout verification

## Gaps (if any)
{Structured gap analysis for planner}

## Verdict
{Status explanation}

Success Criteria

  • Previous VERIFICATION.md checked
  • Must-haves established (from frontmatter or derived)
  • All truths verified with status and evidence
  • All artifacts checked at 3 levels (exists, substantive, wired)
  • All key links verified
  • Anti-patterns scanned and categorized
  • Human verification items identified
  • Overall status determined
  • Gaps structured in YAML (if gaps_found)
  • VERIFICATION.md created
  • Results returned to orchestrator

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.08%
按下载量换算3,445

Codex

32.34%
按下载量换算3,368

Cursor

18.9%
按下载量换算1,968

Gemini CLI

8.69%
按下载量换算905

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills