Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计通过

trust-but-verify信任但验证

Agent Skill

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

总安装

558

周安装

23

GitHub Stars

1

下载量

182
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wojons/skills --skill trust-but-verify

简介

trust-but-verify 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或命令执行。
  • 注意该技能当前无底部简介,功能依赖仓库内实现细节。

SKILL.md

Trust But Verify

Apply skeptical verification to all system claims, test results, and assumptions through independent validation rather than blind trust, preventing false confidence and accelerating issue detection.

When to use me

Use this skill when:

  • Tests pass but you suspect something might still be wrong
  • Documentation claims features work but you want to verify
  • System memory/brain/progress tracking says something is built
  • Stakeholders assume functionality exists based on reports
  • You need to validate assumptions before critical decisions
  • Building resilience against false positives and blind spots
  • Preparing for production releases or high-risk changes
  • Onboarding to a system with uncertain quality signals

What I do

1. Claim Identification

  • Extract claims from:

- Test results and coverage reports - System documentation and specifications - Progress tracking and memory systems - Stakeholder expectations and assumptions - Deployment logs and monitoring dashboards - Team communications and status updates

  • Categorize claims by:

- Criticality (mission-critical vs nice-to-have) - Verifiability (easily testable vs ambiguous) - Source credibility (trusted source vs unknown) - Time since last verification (fresh vs stale)

2. Verification Strategy Design

  • Select appropriate verification methods:

- Independent test execution (different from original tests) - System probing and health checks - User scenario simulation - Data validation and integrity checks - Performance benchmarking - Security penetration testing - Documentation vs implementation comparison

  • Coordinate with other test types:

- Use unit tests but run them differently - Run integration tests with different data - Execute E2E tests with edge cases - Perform chaos testing to verify resilience claims - Conduct usability testing to verify user experience claims

3. Skeptical Verification Execution

  • Challenge assumptions deliberately:

- What if the test is testing the wrong thing? - What if the test passes for the wrong reason? - What if the feature works but not as users expect? - What if the system works now but won't under load? - What if documentation diverges from implementation?

  • Execute verification with different contexts:

- Different environments (not just test environment) - Different data sets (not just test data) - Different user personas (not just happy path) - Different time periods (not just immediate) - Different failure conditions (not just success paths)

4. Discrepancy Detection & Reporting

  • Compare claims vs verification results:

- Identify false positives (claims true but verification fails) - Identify false negatives (claims false but verification passes) - Measure divergence magnitude (minor vs critical differences) - Track verification confidence levels

  • Generate actionable insights:

- Specific discrepancies found - Root cause hypotheses - Impact assessment - Priority recommendations - Verification method effectiveness

Verification Strategies by Claim Type

For "Tests Pass" Claims:

  • Verify test quality: Are tests actually testing the right thing?
  • Check test coverage: Do tests cover critical paths and edge cases?
  • Review test data: Is test data realistic and comprehensive?
  • Execute alternative tests: Run similar but different verification tests
  • Check test environment: Does test environment match production?

For "Feature Built" Claims:

  • Verify functionality: Does feature actually work as described?
  • Check user experience: Is feature usable and intuitive?
  • Validate integration: Does feature work with other components?
  • Test edge cases: How does feature handle unusual situations?
  • Verify documentation: Does documentation match implementation?

For "System Operational" Claims:

  • Health checks: Is system actually running and responsive?
  • Load testing: Does system perform under expected load?
  • Failure testing: How does system handle failures?
  • Monitoring verification: Are monitoring systems actually catching issues?
  • Backup validation: Are backups actually restorable?

For "Memory/Progress" Claims:

  • Verify completion: Is claimed work actually complete?
  • Check quality: Is completed work production-ready?
  • Validate dependencies: Do dependencies actually exist and work?
  • Review implementation: Does implementation match design?
  • Test deliverables: Do deliverables actually solve the problem?

Examples

# Verify test results claims
npm run verify:test-results -- --test-suite "user-authentication"
npm run verify:test-coverage -- --module "payment-processing"

# Verify feature claims
npm run verify:feature -- --feature "checkout-flow" --claim "handles 1000 concurrent users"
npm run verify:feature -- --feature "report-generation" --claim "exports to PDF format"

# Verify system operational claims
npm run verify:system-health -- --component "database" --claim "redundant and fault-tolerant"
npm run verify:system-performance -- --endpoint "/api/orders" --claim "response < 200ms"

# Verify progress/memory claims
npm run verify:progress -- --task "implement-payment-webhook" --claim "completed and tested"
npm run verify:documentation -- --section "api-reference" --claim "accurately describes endpoints"

# Comprehensive verification
npm run verify:all-claims           # Verify all identified claims
npm run verify:critical-claims      # Verify only critical claims
npm run verify:stale-claims         # Verify claims not recently checked

# Integration with other testing
npm run verify:with -- --test-type chaos --claim "system-resilient"
npm run verify:with -- --test-type security --claim "no-vulnerabilities"
npm run verify:with -- --test-type usability --claim "user-friendly"

Output format

Trust But Verify Report
──────────────────────────────
Verification Context: Pre-production release validation
Total Claims Identified: 47
Claims Verified: 23 (priority order)
Verification Duration: 2 hours 15 minutes

Critical Claim Verification Results:

1. Claim: "Payment processing tests pass with 100% coverage"
   Source: CI/CD pipeline report
   Verification Strategy: Independent test execution + coverage analysis
   Result: ❌ DISCREPANCY FOUND
   - Tests pass but don't validate currency conversion rates
   - Coverage shows 100% but misses error handling paths
   - Test data uses only USD, missing other currencies
   Recommendation: Add currency conversion tests, expand test data

2. Claim: "System handles 5000 concurrent users"
   Source: Performance test report from 2 weeks ago
   Verification Strategy: Fresh load test with different patterns
   Result: ⚠️ PARTIALLY VERIFIED
   - System handles 5000 users but response time degrades by 300%
   - Database connection pool exhausted at 4500 users
   - CPU usage reaches 95% at target load
   Recommendation: Optimize database connections, add autoscaling

3. Claim: "User registration feature complete"
   Source: Project management system
   Verification Strategy: End-to-end testing + security review
   Result: ✅ VERIFIED
   - Registration flow works correctly
   - Email verification functional
   - Password security requirements enforced
   - No security vulnerabilities found

4. Claim: "Monitoring alerts configured for all critical errors"
   Source: DevOps runbook
   Verification Strategy: Error injection + alert monitoring
   Result: ❌ DISCREPANCY FOUND
   - Database connection errors not alerting
   - Payment gateway timeouts not monitored
   - Alert thresholds too high for business impact
   Recommendation: Review and update alert configuration

5. Claim: "Backup system tested and functional"
   Source: System documentation
   Verification Strategy: Actual backup restore test
   Result: ⚠️ PARTIALLY VERIFIED
   - Backup creation works
   - Restore process documented but untested
   - Restore time exceeds RTO (Recovery Time Objective)
   Recommendation: Test full restore, optimize restore process

Verification Confidence Assessment:
  - High Confidence: 8 claims (thoroughly verified)
  - Medium Confidence: 10 claims (partially verified)
  - Low Confidence: 5 claims (insufficient verification)
  - Failed Verification: 5 claims (discrepancies found)

Critical Issues Requiring Attention:
  1. Payment currency conversion untested (business risk: high)
  2. Database connection pool limits scalability (performance risk: high)
  3. Missing critical error alerts (operational risk: medium)
  4. Backup restore untested (recovery risk: medium)

Verification Effectiveness:
  - False positives prevented: 3 (would have caused production issues)
  - Assumptions challenged: 12 (revealed hidden risks)
  - Verification time vs value: High ROI (2 hours prevented days of issues)
  - Recommendations generated: 7 actionable improvements

Next Steps:
  1. Address critical discrepancies before release
  2. Improve test coverage for payment processing
  3. Optimize database connection management
  4. Update monitoring and alert configuration
  5. Schedule regular verification for high-risk claims

Notes

  • Trust but verify is a mindset, not just a technical process
  • Balance verification effort with risk and criticality
  • Document verification methods and results for audit trails
  • Use verification findings to improve original testing and claims
  • Consider verification as ongoing process, not one-time event
  • Involve different perspectives in verification (fresh eyes see different things)
  • Measure verification effectiveness over time
  • Share verification findings transparently with stakeholders
  • Use verification to build system understanding, not just find faults
  • Adapt verification strategies based on what you learn
  • Remember: absence of evidence is not evidence of absence

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.7%
按下载量换算65

Claude

30.43%
按下载量换算55

Cursor

18.52%
按下载量换算34

Gemini CLI

7.98%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills