Agent Skillsmtarcure/claude-vibe-squad › rule8-truth-gate

rule8-truth-gate

GitHub

用于在发布前验证内容事实性,通过分解主张、映射引用、检查时效性和逻辑一致性,输出机器可检查的真相门禁记录,确保关键结论有据可依。

.agents/skills/rule8-truth-gate/SKILL.md mtarcure/claude-vibe-squad

Trigger Scenarios

调查报道发布前 文章或活动宣传内容审核 涉及外部世界断言的叙事生产

Install

npx skills add mtarcure/claude-vibe-squad --skill rule8-truth-gate -g -y
More Options

Non-standard path

npx skills add https://github.com/mtarcure/claude-vibe-squad/tree/main/.agents/skills/rule8-truth-gate -g -y

Use without installing

npx skills use mtarcure/claude-vibe-squad@rule8-truth-gate

指定 Agent (Claude Code)

npx skills add mtarcure/claude-vibe-squad --skill rule8-truth-gate -a claude-code -g -y

安装 repo 全部 skill

npx skills add mtarcure/claude-vibe-squad --all -g -y

预览 repo 内 skill

npx skills add mtarcure/claude-vibe-squad --list

SKILL.md

Frontmatter
{
    "name": "rule8-truth-gate",
    "type": "skill",
    "audience": "specialist",
    "description": "Use at S4 before an investigation, article, campaign, narration, or screen production with external-world assertions may advance: require returned source bundles, enforce the requested recency interval for every decision-critical premise, reject unmapped items, and emit the mandated PASS\/needs_tool truth record."
}

Rule-8 Truth Gate

Combines the release-gate portions of claim-verification + citation-audit into one invokable check. Given a deliverable's claims plus a returned citation / grounding-result set, it decides whether each load-bearing claim is supported by a returned citation within the requested recency window, and emits a machine-checkable gate record. A model cutoff is never verification evidence; grounding is a first-class stage, not a hope that the reviewer supplies evidence later.

Procedure

  1. Decompose the content into discrete claims and mark each load-bearing (a conclusion the deliverable depends on) or non-load-bearing / backgrounded. Classify each: fact | quote | calculation | forecast | opinion | inference. Every load-bearing claim is gated — INCLUDING a load-bearing inference (a reasoned conclusion the deliverable rests on): an inference is NOT exempt because it is framed as reasoning rather than quoted — its supporting premises/evidence must map to returned citations, or it is unverifiableneeds_tool. Only a genuine opinion, or non-load-bearing / backgrounded reasoning, passes ungated.
  2. Ground each load-bearing web/factual claim: route a grounding worker (Gemini Google Search grounding or a research-namespace handoff) that returns a typed evidence bundle of citations/search results. If no grounding tool is callable for a load-bearing claim, that is a capability gap → set needs_tool: true (a separate axis). A claim whose callable grounding tool returned nothing supporting is unresolved evidence, not a missing tool → it drives HOLD/FAIL, not needs_tool.
  3. Map claim → citation (claim_to_citation): each load-bearing claim — AND each load-bearing inference, via the evidence for its premises — must map to a specific returned citation, not to model prose. Read the source and confirm it SUPPORTS the claim/premise (not merely mentions the topic); for an inference, also confirm the reasoning is valid over the mapped premises. Preserve quote context.
  4. Resolve + date-check every citation (date_window): resolve each citation, record accessed-at; a citation that 404s or was invented is unverifiable. Confirm publication/event dates fall inside the requested date_window, and check for retractions/corrections. A claim supported only by a citation outside the window is not fresh-supported.
  5. Reproduce arithmetic; check units and internal consistency. Label vendor/provider performance claims as vendor claims unless reproduced on a Vibe-Squad benchmark.
  6. Reject unsupported (reject_unsupported): any load-bearing claim OR load-bearing inference that does not map to an in-window returned citation is dropped or the gate fails — never PASS on prose or on unbacked reasoning. When grounding was callable, an unmapped or out-of-window load-bearing item drives the result to FAIL (or HOLD pending more evidence), never needs_toolneeds_tool is reserved for the capability-absent case.
  7. Emit the gate record (see below).

Machine gate record (emit this)

rule8_truth_gate:
  result: PASS | HOLD | FAIL         # PASS only if `unverifiable` is empty AND `needs_tool` is false; FAIL if a load-bearing claim/inference is unsupported when grounding WAS callable; HOLD if resolvable with more evidence
  needs_tool: <bool>                 # true iff a load-bearing claim/inference had NO callable grounding tool (capability absent — a SEPARATE axis from evidence failure)
  claim_to_citation: true            # policy applied: every load-bearing claim AND load-bearing inference (via its premises) mapped to a returned citation
  date_window: <explicit interval>   # e.g. 24h / 7d / 90d / task-scoped — never true/false
  reject_unsupported: true           # unsupported/out-of-window load-bearing items drove HOLD/FAIL, never PASS
  claims_checked: <n>
  load_bearing_inferences_checked: <n>
  citations_resolved: <n> / <n>
  unverifiable: [<load-bearing claim/inference ids>]   # items with no in-window citation despite a callable tool → drive HOLD/FAIL; MUST be empty for a PASS

When to invoke

  • The S4 Verify (Rule-8) step of research/investigation-synthesis, content/editorial-longform, content/marketing-campaign, content/audio-assets, content/video.
  • Any deliverable asserting factual / product / efficacy claims before publish.

When NOT to invoke

  • Pure opinion / creative pieces with no load-bearing factual claims or load-bearing inferences.
  • As a substitute for the independent cross-family reviewer — this is the primary's self-gate, not the review.

Acceptance

  • Every load-bearing claim AND every load-bearing inference is classified and mapped to a returned in-window citation (an inference via the evidence for its premises), or the result is HOLD/FAIL (when grounding was callable) or needs_tool: true (when no grounding tool was callable) — the emitted result is PASS only when unverifiable is empty AND needs_tool is false. A load-bearing inference never PASSes on reasoning alone. "Unverifiable" is distinguished from "false"; a model cutoff is never verification.
  • Vendor claims are labeled; no corroboration is fabricated. Quotes keep their context.

Notes — source boundary + cross-lane home

  • Partial fusion: this gate owns the aggregate S4 release decision and citation-recency policy from shared/skills/claim-verification.md + shared/skills/citation-audit.md. It does not emit the exact evidence span and supported | unsupported | unverifiable verdict for every individual statement; invoke claim-verification when that statement-level adjudication is required.
  • Canonical home: .claude/skills/rule8-truth-gate/SKILL.md. Because its audience is specialist, model-lanes/SKILL-HOMES.md requires .agents/skills/rule8-truth-gate/SKILL.md to be a byte-identical regular file mirror.

Version History

  • d5262e2 Current 2026-09-11 11:25

Same Skill Collection

.agents/skills/accessible-media-authoring/SKILL.md
.agents/skills/agent-prompt-engineering/SKILL.md
.agents/skills/agentic-safety-audit/SKILL.md
.agents/skills/audio-event-map-authoring/SKILL.md
.agents/skills/auto-scaffold/SKILL.md
.agents/skills/claim-verification/SKILL.md
.agents/skills/code-reachability-audit/SKILL.md
.agents/skills/code-review-loop/SKILL.md
.agents/skills/color-theory/SKILL.md
.agents/skills/conversation-design/SKILL.md
.agents/skills/copy-refinement/SKILL.md
.agents/skills/cross-file-relationship-synthesis/SKILL.md
.agents/skills/dependency-cycle-audit/SKILL.md
.agents/skills/dependency-health-triage/SKILL.md
.agents/skills/detection-as-code/SKILL.md
.agents/skills/diff-aware-semgrep-scan/SKILL.md
.agents/skills/differential-review/SKILL.md
.agents/skills/dimensional-analysis-check/SKILL.md
.agents/skills/dual-level-retrieval/SKILL.md
.agents/skills/figma-implement-design/SKILL.md
.agents/skills/forensic-timeline-authoring/SKILL.md
.agents/skills/game-design-fundamentals/SKILL.md
.agents/skills/game-mechanics-balancing/SKILL.md
.agents/skills/head-tail/SKILL.md
.agents/skills/incident-response-runbook/SKILL.md
.agents/skills/interactive-audio-design/SKILL.md
.agents/skills/interface-ambiguity-check/SKILL.md
.agents/skills/keyword-clustering/SKILL.md
.agents/skills/knowledge-base-integration/SKILL.md
.agents/skills/layered-analysis-loop/SKILL.md
.agents/skills/level-design-patterns/SKILL.md
.agents/skills/locale-adaptation/SKILL.md
.agents/skills/narrative-structure/SKILL.md
.agents/skills/platform-compliance/SKILL.md
.agents/skills/player-engagement-psychology/SKILL.md
.agents/skills/requirements-elicitation/SKILL.md
.agents/skills/rule6-rights-gate/SKILL.md
.agents/skills/sandbox-provision-discipline/SKILL.md
.agents/skills/scope-decomposition/SKILL.md
.agents/skills/scope-estimation/SKILL.md
.agents/skills/security-ownership-map/SKILL.md
.agents/skills/security-threat-model/SKILL.md
.agents/skills/semgrep-rule-author/SKILL.md
.agents/skills/skill-description-trigger-authoring/SKILL.md
.agents/skills/sound-design-principles/SKILL.md
.agents/skills/structured-data-authoring/SKILL.md
.agents/skills/supply-chain-audit/SKILL.md
.agents/skills/take-over-resume/SKILL.md
.agents/skills/technical-seo-audit/SKILL.md

Metadata

Files
0
Version
d5262e2
Hash
b548da5f
Indexed
2026-09-11 11:25

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-13 05:02
浙ICP备14020137号-1 $Map of visitor$