Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计提醒

fact-check-verify事实核查核实

Agent Skill

fact-check-verify 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,917

周安装

160

GitHub Stars

公开资料未说明

下载量

1,254
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:fact-check-verify(事实核查核实)
来源仓库:https://github.com/futurizerush/fact-check-verify
安装命令:
openclaw skills install fact-check-verify
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install fact-check-verify

简介

当用户要求“事实检查”、“验证这一点”、“这是真的”、“检查事实”、“验证声明”、“这些字段名称是否正确”时,应该使用此技能。

SKILL.md

name
Fact Check
description
|
version
0.1.1

Fact Check: Verify Before You Ship

Verify that every claim, reference, and technical detail is backed by current evidence. AI models have training data cutoffs and frequently hallucinate version numbers, API signatures, field names, CLI flags, and dates. This skill provides a systematic process to catch these errors before they reach users.

Why This Exists

AI models commonly produce these types of false information:

CategoryExample of Hallucination
Model names/versionsReferencing "GPT-5" or "Claude 4" when they don't exist yet
API field namesWriting likeCount when the real API returns like_count
CLI flagsUsing --recursive when the tool only supports -r
Library methodsCalling .transformAll() on a library that has no such method
DatesGetting today's date wrong, or citing a "2024 release" that happened in 2025
SDK versionsReferencing v2.0 features when the latest is v1.8
Repo structureClaiming a file exists at a path where it doesn't
Default valuesStating "default is 100" when the actual default is 50

The Verification Process

For every piece of output that contains technical claims, run this process:

Step 1: Identify Claims

Scan the output and tag every verifiable claim:

  • Version numbers (library, SDK, model, API)
  • Field names (API response, config keys, database columns)
  • CLI commands and flags
  • URLs and endpoints
  • Dates and timelines
  • Default values and limits
  • File paths and function names
  • "It supports X" or "X is available" statements

Step 2: Classify Each Claim

ClassificationMeaningAction
VerifiedConfirmed by tool output, API call, or file readMark with evidence source
UnverifiedNot yet checkedMust verify before output
UnverifiableCannot be checked with available toolsLabel clearly as unverified
StaleBased on information older than 6 monthsRe-verify from current source

Step 3: Verify Using Tools

For each unverified claim, use the appropriate verification method:

Claim TypeVerification Method
File exists at pathls /path/to/file or Read tool
Function/method existsgrep -r "function_name" /path/to/repo
API field nameMake a real API call and inspect the response
CLI flag existscommand --help or man command
npm package versionnpm info package-name version
Python package versionpip show package-name
GitHub repo infogh repo view owner/repo
PR/Issue statusgh pr view NUMBER --repo owner/repo
Current datedate command
URL is reachablecurl -s -o /dev/null -w "%{http_code}" URL
Git branch/tag existsgit ls-remote --tags origin

Step 4: Label the Output

After verification, every claim in the output should be one of:

  • Verified (with evidence: "confirmed by npm info output")
  • Unverified (explicitly marked: "not yet confirmed")
  • Corrected (original was wrong, replaced with verified data)

Do / Don't Checklist

Do

  • [ ] Verify every version number mentioned in output with a tool or API call
  • [ ] Verify URLs you generate with curl -s -o /dev/null -w "%{http_code}" URL before recommending
  • [ ] Never guess URLs — if you can't see it, ask the user to provide it
  • [ ] For user-provided URLs: only check HTTP status code (-o /dev/null), don't fetch or render content from untrusted sources (phishing/malware risk)
  • [ ] Check today's date with date if you reference it
  • [ ] Run actual API calls to confirm field names (don't guess from memory)
  • [ ] Use --help or docs to confirm CLI flags exist
  • [ ] Check if URLs return 200 before recommending them
  • [ ] Mark claims as "unverified" if you cannot check them
  • [ ] Date your verification ("verified on 2026-04-11")
  • [ ] Re-verify if the source information is older than 6 months
  • [ ] Verify PR/issue status with gh commands, not from memory

Don't

  • [ ] Don't trust your memory for version numbers, API shapes, or dates
  • [ ] Don't assume an API field name — always verify from real output
  • [ ] Don't report "I fixed it" without verifying CI passes (gh pr checks)
  • [ ] Don't report "PR has reviews" without checking (gh pr view)
  • [ ] Don't cite documentation without confirming the URL exists
  • [ ] Don't use old StackOverflow answers as current truth — platforms change
  • [ ] Don't claim "push succeeded" means "task complete"
  • [ ] Don't state defaults or limits without checking the actual source code or schema

Common Hallucination Patterns to Watch For

Pattern 1: Outdated Model/Version References

AI models are frozen at their training cutoff. Always verify:

# Check latest version of a package
npm info @anthropic-ai/sdk version
pip show openai | grep Version
gh release list --repo owner/repo --limit 3

Pattern 2: Invented API Fields

Never guess API response field names. Always run the API and read the actual response:

# Real API call to verify field names
curl -s "https://api.example.com/endpoint" | jq '.[0] | keys'

Pattern 3: False Success Reporting

The most dangerous hallucination. "I did it" when the work is incomplete:

What was saidWhat it actually meansHow to verify
"Pushed successfully"Git push workedgh pr checks — is CI green?
"Responded to review"Committed a changeDoes the new code actually fix the issue?
"Found 10 problems"Listed 10 itemsRead the code for each — do they exist?
"PR has been reviewed"Someone looked at itgh pr view --json reviews — what's the count?

Pattern 4: Phantom References

Referencing things that don't exist:

# Verify a file exists before referencing it
ls /path/to/claimed/file

# Verify a function exists in a codebase
grep -r "functionName" src/

# Verify an npm package exists
npm info claimed-package-name

Pattern 5: Date Confusion

AI models often get dates wrong, including today's date:

# Always verify current date
date "+%Y-%m-%d"

# Check when a release was published
gh release view v1.0.0 --repo owner/repo --json publishedAt

Pattern 6: URL Guessing

AI models will fabricate plausible-looking URLs when they don't know the real one:

Fabricated URLWhy it looks rightActual URL
https://auth.openai.com/activateFollows common OAuth patternshttps://auth.openai.com/codex/device
https://docs.clawhub.aiStandard docs subdomainDoes not exist (returns 404)
https://api.example.com/v2/schemaCommon API conventionEndpoint may not exist

Prevention:

  • Never guess URLs. If you can't see the full output, ask the user to expand it.
  • If recommending a URL, verify it with curl -s -o /dev/null -w "%{http_code}" URL first.
  • Say "I don't have the URL — can you check the terminal output?" instead of guessing.
  • URLs are not inferrable from patterns. auth.openai.com/activate vs auth.openai.com/codex/device — one character path difference, completely different endpoints.

Verification Report Format

When fact-checking, produce a report like this:

## Fact Check Report

| # | Claim | Status | Evidence |
|---|-------|--------|----------|
| 1 | "API returns `like_count`" | Verified | Real API run, dataset abc123 |
| 2 | "Latest version is v2.3" | Corrected → v2.5 | `npm info package version` |
| 3 | "Supports `--recursive` flag" | Unverified | Cannot test without install |
| 4 | "Default timeout is 30s" | Verified | Source code line 42 |

Tips

  • The more confident you feel about a claim, the more important it is to verify. Confidence ≠ correctness.
  • "I'm pretty sure" is not evidence. Run the command.
  • Verification has a cost (time, API calls), but false information has a higher cost (broken code, lost trust, wasted user time).
  • When in doubt, say "I'm not sure — let me verify" instead of guessing.
  • If you can't verify something, say so explicitly. An honest "unverified" is better than a confident hallucination.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

95.83%
按下载量换算1,202

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install fact-check-verify 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills