Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

quality-verify-implementation-complete质量验证实施完成

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

1

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill quality-verify-implementation-complete

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果。

  • 适用于质量验证实施完成相关的进度跟踪与完整性检查场景,支持基于来源线索的状态确认。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • quality-verify-implementation-complete 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Verify Implementation Complete

Quick Start

Before claiming any implementation is "done", run this verification:

# 1. Check if your new module is imported
grep -r "from.*your_module import\|import.*your_module" src/

# 2. Check if your functions are called
grep -r "your_function_name" src/ --include="*.py" | grep -v test | grep -v "def "

# 3. Run integration verification
./scripts/verify_integration.sh  # If available

# 4. Answer the Four Questions (see below)

If any check fails or you cannot answer all four questions, the implementation is NOT complete.

Table of Contents

  1. When to Use This Skill
  2. What This Skill Does
  3. The CCV Principle
  4. The Four Questions Test
  5. Step-by-Step Verification Process
  6. Verification by Artifact Type
  7. Common Failure Patterns
  8. Supporting Files
  9. Expected Outcomes
  10. Requirements
  11. Red Flags to Avoid

When to Use This Skill

Explicit Triggers

  • "Verify this implementation is complete"
  • "Is this code integrated?"
  • "Check if my code is wired into the system"
  • "Prove this feature runs"
  • "Verify integration for [feature/module]"
  • "Run implementation completeness check"

Implicit Triggers

  • Before marking any task as "done" or "complete"
  • Before moving an ADR from in_progress/ to completed/
  • After creating new Python modules, classes, or functions
  • After implementing LangGraph nodes, CLI commands, or API endpoints
  • Before claiming "feature works" or "implementation successful"
  • When self-reviewing code changes

Debugging Triggers

  • "Why isn't my feature working?" (often it's not integrated)
  • "Tests pass but feature doesn't run" (classic integration gap)
  • "Code exists but nothing happens" (orphaned code)
  • "Feature used to work" (regression - connection removed)

What This Skill Does

This skill enforces the Creation-Connection-Verification (CCV) Principle by:

  1. Verifying Creation - Confirms artifacts exist (files, tests, types)
  2. Verifying Connection - Confirms artifacts are wired into the system
  3. Verifying Execution - Confirms artifacts execute at runtime
  4. Providing Evidence - Generates proof that all three phases are complete

This skill prevents the ADR-013 failure mode where code was created and tested but never integrated into builder.py, causing the feature to never execute despite passing all quality gates.

The CCV Principle

The Formula

COMPLETE = CREATION + CONNECTION + VERIFICATION

The Three Phases

PhaseProvesEvidence Required
CREATIONArtifact existsFile written, tests pass, types check, linting clean
CONNECTIONArtifact is wired inImport statement, registration call, configuration entry
VERIFICATIONArtifact executesLogs showing execution, output observed, state changes confirmed

Missing any phase = Implementation is INCOMPLETE

Why All Three Are Required

  • Creation without Connection → Dead code that never runs
  • Connection without Verification → Unknown if it actually works
  • Creation + Connection without Verification → Might work, might not, no proof

The Four Questions Test

Before claiming "done", you MUST answer ALL FOUR questions:

Question 1: How do I trigger this?

What it means: What user action, CLI command, API call, or system event causes this code to execute?

Examples:

  • uv run temet-run -a talky -p "analyze code"
  • curl -X POST /api/endpoint
  • from myapp.service import MyService; MyService().method()

If you cannot answer: Feature has no entry point → NOT COMPLETE

Question 2: What connects it to the system?

What it means: Where is the import, registration, or wiring that makes this code reachable?

Examples:

  • builder.py line 45: from.architecture_nodes import create_review_node
  • main.py line 12: app.add_command(my_command)
  • container.py line 67: container.register(MyService)

If you cannot answer: Code is orphaned → NOT COMPLETE

Question 3: What evidence proves it runs?

What it means: What logs, traces, or observable output demonstrates execution?

Examples:

  • [2025-12-07 10:30:45] INFO architecture_review_triggered
  • ✓ Task completed successfully (in CLI output)
  • HTTP 200 OK (in curl response)

If you cannot answer: No execution proof → NOT COMPLETE

Question 4: What shows it works correctly?

What it means: What output, state change, or behavior proves correct function?

Examples:

  • state.architecture_review = ArchitectureReviewResult(status=APPROVED)
  • Database row inserted with expected values
  • File created with correct contents

If you cannot answer: No outcome proof → NOT COMPLETE

Step-by-Step Verification Process

Phase 1: Verify Creation (Artifacts Exist)

Run standard quality gates:

# Type checking
uv run mypy src/

# Linting
uv run ruff check .

# Unit tests
uv run pytest tests/unit/ --no-cov -v

Checklist:

  • Files exist with complete implementations (no stubs/TODOs)
  • Unit tests pass (isolated behavior verified)
  • Type checking passes (no type errors)
  • Linting passes (code style clean)

If any fail: Fix before proceeding to Phase 2

Phase 2: Verify Connection (Wiring Exists)

2.1 Check Import Statements

For a new module your_module.py:

# Find all imports of your module
grep -r "from.*your_module import\|import.*your_module" src/ --include="*.py" | grep -v test

Expected: At least one import in production code (not just tests)

If empty: Module is NOT imported → NOT CONNECTED

2.2 Check Call-Sites

For a new function your_function:

# Find all call-sites
grep -r "your_function" src/ --include="*.py" | grep -v test | grep -v "def your_function"

Expected: At least one call-site in production code

If empty: Function is never called → NOT CONNECTED

2.3 Check Registration (if applicable)

For components that require registration:

# LangGraph nodes
grep -E "add_node.*your_node|from.*your_module" src/coordination/graph/builder.py

# CLI commands
grep -r "add_command\|@.*\.command\|@click\.command" src/ | grep your_command

# DI container
grep -r "container\.register\|container\.provide" src/ | grep YourService

# API routes
grep -r "router\.add\|@.*\.route\|@app\." src/ | grep your_endpoint

Expected: Registration code exists

If empty: Component is NOT registered → NOT CONNECTED

Checklist:

  • Module imported in at least one production file
  • Functions/classes called in at least one production path
  • (If applicable) Component registered in system
  • Can trace path from entry point to your code

If any fail: Wire the code before proceeding to Phase 3

Phase 3: Verify Execution (Runtime Proof)

3.1 Trigger the Feature

Execute the actual entry point:

# Example: CLI command
uv run temet-run -a talky -p "test command"

# Example: API endpoint
curl -X POST http://localhost:8000/api/endpoint -d '{"test": "data"}'

# Example: Direct invocation
uv run python -c "from myapp.service import MyService; MyService().method()"

Observe: Command completes without errors

3.2 Capture Execution Evidence

Look for evidence that YOUR code executed:

# Check logs for your module
grep "your_module\|your_function" logs/daemon.log

# Check structured logs
grep "your_module" logs/*.jsonl | jq .

# Check database for expected changes
sqlite3 app.db "SELECT * FROM your_table WHERE created_at > datetime('now', '-1 minute')"

Expected: Evidence that your code path was executed

If no evidence: Code path was not reached → NOT VERIFIED

3.3 Confirm Correct Behavior

Verify the outcome matches expectations:

# Check state changes
# Example: LangGraph state field populated
assert result.your_field is not None

# Example: File created
ls -la expected_output_file.txt

# Example: Database row inserted
# (query from 3.2)

Expected: Behavior matches specification

If incorrect: Implementation has bugs → NOT VERIFIED

Checklist:

  • Feature can be triggered via documented entry point
  • Logs/traces show code execution
  • Expected outcome observed (state change, output, etc.)
  • Can answer all Four Questions

If any fail: Debug and fix before claiming "done"

Verification by Artifact Type

LangGraph Nodes

Creation:

  • Node file exists (e.g., architecture_nodes.py)
  • Factory function implemented (e.g., create_architecture_review_node())
  • Routing function implemented (e.g., should_review_architecture())
  • Unit tests pass

Connection:

# Verify import
grep "architecture_nodes" src/temet_run/coordination/graph/builder.py

# Expected output:
# from .architecture_nodes import create_architecture_review_node, should_review_architecture
  • Imported in builder.py
  • Node added to graph: graph.add_node("your_node", node)
  • Edges wired: graph.add_conditional_edges(...) or graph.add_edge(...)

Verification:

# Add to test_graph_completeness.py
EXPECTED_NODES = [
    "your_node_name",  # Add this
    # ... other nodes
]
  • Node in EXPECTED_NODES list
  • Integration test passes
  • Coordinator execution shows node in logs
  • State field populated after execution

CLI Commands

Creation:

  • Command function exists
  • Decorated with @click.command() or @app.command()
  • Tests pass

Connection:

# Verify registration
grep -r "add_command\|@.*\.command" src/your_app/cli/ | grep your_command_name
  • Command registered in CLI group
  • Shows in --help output

Verification:

# Test command
uv run your-app your-command --help
uv run your-app your-command [args]
  • Command appears in --help
  • Command executes without errors
  • Expected output observed

Service Classes (with DI)

Creation:

  • Service class exists
  • Methods implemented
  • Unit tests pass

Connection:

# Verify DI registration
grep -r "container\.register\|register_singleton\|provide" src/ | grep YourServiceName
  • Service registered in container
  • Dependencies injected correctly

Verification:

# Test injection
uv run python -c "
from your_app.container import container
service = container.resolve('YourService')
service.method()
"
  • Service can be resolved from container
  • Method executes correctly
  • Dependencies are provided

API Endpoints

Creation:

  • Endpoint function exists
  • Route handler implemented
  • Tests pass

Connection:

# Verify route registration
grep -r "router\.add\|@.*\.route\|@app\." src/ | grep your_endpoint
  • Route added to router
  • Endpoint shows in OpenAPI docs (if applicable)

Verification:

# Test endpoint
curl -X POST http://localhost:8000/api/your-endpoint -d '{"test": "data"}'
  • Endpoint responds (not 404)
  • Expected status code (200, 201, etc.)
  • Response body correct

Common Failure Patterns

Pattern 1: Created But Never Imported

Symptom: File exists, tests pass, but nothing uses it

Detection:

grep -r "from.*your_module import" src/ --include="*.py" | grep -v test
# Returns: (empty)

Fix: Add import where the module should be used

Pattern 2: Imported But Never Called

Symptom: Import exists, but functions never invoked

Detection:

grep -r "your_function_name" src/ --include="*.py" | grep -v test | grep -v "def "
# Returns: (empty - only the definition exists)

Fix: Add call-site where the function should be used

Pattern 3: Registered But Wrong Configuration

Symptom: Component registered, but with wrong parameters/order

Detection: Integration tests fail, runtime errors

Fix: Review registration code, compare with working examples

Pattern 4: Unit Tests Pass, Integration Fails

Symptom: Isolated tests work, but feature fails in real system

Detection: Integration tests fail, or manual testing shows errors

Fix: Add integration tests that exercise real dependencies

Pattern 5: Code Reachable But Conditional Never Triggers

Symptom: Code is wired, but conditional logic prevents execution

Detection: Code never appears in logs despite feature being triggered

Fix: Review conditional logic, adjust trigger conditions

Supporting Files

References

  • references/ccv-principle.md - Deep dive into Creation-Connection-Verification
  • references/four-questions-framework.md - Detailed explanation of the Four Questions
  • references/adr-013-case-study.md - Real-world failure that motivated this skill

Examples

  • examples/langgraph-node-verification.md - Complete LangGraph node verification example
  • examples/cli-command-verification.md - CLI command verification walkthrough
  • examples/service-di-verification.md - Service with DI verification example

Scripts

  • scripts/verify_integration.sh - Automated orphan detection script
  • scripts/check_imports.sh - Check if module is imported
  • scripts/check_callsites.sh - Check if functions are called

Templates

  • templates/verification-checklist.md - Copy-paste checklist for feature verification
  • templates/integration-test-template.py - Template for integration tests

Expected Outcomes

Successful Verification

✅ Implementation Verification Complete

Feature: ArchitectureReview Node
Location: src/temet_run/coordination/graph/architecture_nodes.py

Phase 1: CREATION ✅
  - File exists (175 lines)
  - Unit tests pass (24/24)
  - Type checking clean
  - Linting clean

Phase 2: CONNECTION ✅
  - Imported in: builder.py line 12
  - Registered: graph.add_node("architecture_review", node)
  - Edges: Conditional edge from "query_claude"
  - Evidence:
    $ grep "architecture_nodes" src/coordination/graph/builder.py
    from .architecture_nodes import create_architecture_review_node

Phase 3: VERIFICATION ✅
  - Integration test: EXPECTED_NODES includes "architecture_review"
  - Execution proof:
    [2025-12-07 10:30:45] INFO architecture_review_triggered
    [2025-12-07 10:30:46] INFO architecture_review_complete status=approved
  - Outcome proof: state.architecture_review = ArchitectureReviewResult(...)

Four Questions Test ✅
  1. Trigger: uv run temet-run -a talky -p "Write code"
  2. Connection: builder.py line 12 (import), line 146 (add_node)
  3. Execution: Logs above show node executed
  4. Outcome: state.architecture_review contains approval data

✅ IMPLEMENTATION IS COMPLETE

Verification Failure

❌ Implementation Verification Failed

Feature: ArchitectureReview Node
Location: src/temet_run/coordination/graph/architecture_nodes.py

Phase 1: CREATION ✅
  - File exists (175 lines)
  - Unit tests pass (24/24)
  - Type checking clean
  - Linting clean

Phase 2: CONNECTION ❌
  - Imported in: NOT FOUND
  - Evidence:
    $ grep "architecture_nodes" src/coordination/graph/builder.py
    (empty - no imports found)

CRITICAL FAILURE: Module is not imported in builder.py

❌ IMPLEMENTATION IS INCOMPLETE

Required Actions:
1. Add import in builder.py: from .architecture_nodes import create_architecture_review_node
2. Register node: graph.add_node("architecture_review", review_node)
3. Add edges to wire into workflow
4. Re-run verification after fixes

DO NOT claim this feature is "done" until verification passes.

Requirements

Tools Required

  • Read (to examine source files)
  • Grep (to search for imports/calls)
  • Bash (to run verification commands)

Knowledge Required

  • Understanding of the project's architecture
  • Knowledge of where entry points are (main.py, builder.py, etc.)
  • Familiarity with import paths and module structure

Environment Required

  • Working directory is project root
  • Source code in src/ directory
  • Tests in tests/ directory

Red Flags to Avoid

Do Not

  • ❌ Claim "feature complete" without running this verification
  • ❌ Skip Phase 2 (connection) verification
  • ❌ Skip Phase 3 (runtime) verification
  • ❌ Accept "tests pass" as proof of integration
  • ❌ Move ADRs to completed/ without this verification
  • ❌ Self-approve without answering Four Questions
  • ❌ Assume code is integrated just because it compiles
  • ❌ Trust unit tests alone (they can hide orphaned code)

Do

  • ✅ Run all three phases of verification
  • ✅ Paste actual command output as evidence
  • ✅ Answer all Four Questions before claiming "done"
  • ✅ Add integration tests for new components
  • ✅ Update EXPECTED_NODES or equivalent tracking lists
  • ✅ Show execution logs as proof
  • ✅ Verify correct behavior, not just "no errors"
  • ✅ Document evidence in task/ADR completion notes

Notes

  • This skill was created in response to ADR-013 failure (2025-12-07)
  • The failure: 313 lines of code, 46 passing tests, but code never integrated
  • This skill prevents that exact failure mode from recurring
  • Integrate this skill with util-manage-todo (three-phase pattern)
  • Integrate with create-adr-spike (Phase 6: Integration Verification)
  • Integrate with quality-run-quality-gates (add as Gate 6)

Remember: Code is not "done" when it compiles and tests pass. Code is "done" when it executes at runtime and produces correct outcomes.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.22%
按下载量换算24

Claude

31.25%
按下载量换算21

Cursor

19.02%
按下载量换算13

Gemini CLI

8.06%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/dawiddutoit/custom-claude --skill quality-verify-implementation-complete 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills