Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

cm-hallucination-detectorcm 幻觉探测器

Agent Skill

cm-hallucination-detector 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,117

周安装

47

GitHub Stars

公开资料未说明

下载量

391
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install cm-hallucination-detector

简介

用于检测 LLM 输出中的幻觉声明,通过交叉引用源文档和代码进行验证。

  • 适用于 RAG 管道和知识库问答系统的可信度保障场景。
  • 通过 clawhub 安装,需结合 README 了解证据匹配算法阈值设置。
  • 使用前应确认源材料覆盖范围和误判率控制策略。
  • cm-hallucination-detector 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
hallucination-detector
description
Detect and flag hallucinations in LLM outputs by cross-referencing claims against source documents, code, and verifiable data. Essential for RAG pipelines and AI content review.
metadata
tags
["ai", "llm", "hallucination", "rag", "quality", "factcheck"]

Hallucination Detector

Detect and flag hallucinations in LLM-generated content by cross-referencing claims against source documents, codebase facts, API documentation, and verifiable data. Use when reviewing AI-generated documentation, code comments, summaries, or any content that needs factual accuracy.

Usage

"Check this AI-generated summary for hallucinations against the source docs"
"Verify the code documentation matches the actual implementation"
"Detect hallucinations in this RAG pipeline output"
"Fact-check this AI-generated API reference"
"Review these generated release notes for accuracy"

How It Works

1. Claim Extraction

Parse the LLM output and identify verifiable claims:

  • Factual assertions: "The function accepts 3 parameters", "The API returns JSON"
  • Numerical claims: "Performance improved by 40%", "Supports up to 10,000 connections"
  • Reference claims: "As documented in RFC 7231", "According to the README"
  • Code claims: "The processOrder() function handles refunds", "Uses AES-256 encryption"
  • Temporal claims: "Added in version 2.3", "Deprecated since 2024"
  • Relational claims: "Module A depends on Module B", "Function X calls Function Y"

2. Source Grounding

For each claim, identify and query the ground truth source:

Code verification:

# Verify function exists and has claimed signature
grep -rn "function processOrder\|def processOrder\|processOrder(" src/
# Verify parameter count
ast-grep --pattern 'function processOrder($$$)' src/
# Verify dependency relationship
grep -rn "import.*from.*moduleB\|require.*moduleB" src/moduleA/

Documentation verification:

# Check if referenced section exists
grep -rn "## Configuration" docs/
# Verify version claims
git log --oneline --all --grep="processOrder" | head -5
git tag --contains $(git log --format=%H -1 --all -- src/processOrder.ts)

API verification:

# Verify endpoint exists and returns claimed schema
grep -rn "router\.\(get\|post\|put\|delete\)" src/routes/ | grep "orders"
# Check response schema
grep -A 20 "res.json\|res.send" src/routes/orders.ts

3. Hallucination Classification

Each detected issue is classified:

  • 🔴 Fabrication: Claim has no basis in source material (made up entirely)

- Example: "The calculateTax() function" when no such function exists

  • 🟠 Contradiction: Claim directly contradicts source material

- Example: "Returns a string" when function actually returns a number

  • 🟡 Exaggeration: Claim overstates or embellishes source facts

- Example: "Handles millions of requests" when docs say "tested to 10K"

  • 🔵 Outdated: Claim was true but is no longer accurate

- Example: "Uses Express.js" when codebase migrated to Fastify

  • Unverifiable: Claim cannot be checked against available sources

- Example: "Industry best practice" with no citation

4. Confidence Scoring

Each claim gets a confidence score:

  • Verified (✅ 90-100%): Claim matches source material exactly
  • Likely correct (🟢 70-89%): Claim is consistent but not directly verifiable
  • Uncertain (🟡 40-69%): Partial match or ambiguous source
  • Likely hallucinated (🟠 10-39%): Contradicts or unsupported by sources
  • Confirmed hallucination (🔴 0-9%): Demonstrably false

5. RAG Pipeline Analysis

When used in RAG context, also check:

  • Retrieval accuracy: Were the right chunks retrieved for the query?
  • Attribution fidelity: Does the output actually reflect the retrieved chunks?
  • Chunk boundary issues: Was a claim split across chunks, losing context?
  • Source mixing: Were facts from different sources incorrectly combined?
  • Inference vs citation: Is the model inferring beyond what sources state?

6. Pattern Detection

Identify common hallucination patterns:

  • Confident fabrication: High-confidence claims about nonexistent features
  • Plausible details: Made-up but realistic-sounding specifics
  • Version confusion: Mixing features from different software versions
  • Name substitution: Using similar but incorrect function/class names
  • Count inflation: Overstating numbers, capabilities, or performance
  • False relationships: Inventing connections between unrelated components

Output

## Hallucination Analysis Report

**Content reviewed:** AI-generated API documentation (2,400 words)
**Claims extracted:** 47
**Verification results:**

| Status | Count | % |
|--------|-------|---|
| ✅ Verified | 31 | 66% |
| 🟢 Likely correct | 6 | 13% |
| 🟡 Uncertain | 3 | 6% |
| 🔴 Hallucinated | 7 | 15% |

### 🔴 Confirmed Hallucinations

1. **"The /api/users endpoint supports bulk operations via POST /api/users/bulk"**
   - Reality: No bulk endpoint exists in routes/users.ts
   - Type: Fabrication
   - Fix: Remove bulk operations section entirely

2. **"Authentication uses OAuth 2.0 with PKCE flow"**
   - Reality: Uses session-based auth (express-session + passport-local)
   - Type: Contradiction
   - Fix: Replace with actual auth mechanism description

3. **"Rate limited to 1000 requests per minute per API key"**
   - Reality: No rate limiting configured (no rate-limit middleware found)
   - Type: Fabrication
   - Fix: Remove rate limiting claims or implement the feature

4. **"Response includes pagination metadata with total_count, page, and per_page"**
   - Reality: API returns raw arrays without pagination
   - Type: Fabrication
   - Fix: Document actual response format

[3 more...]

### 🟡 Uncertain Claims (need human review)

5. **"Handles up to 5,000 concurrent connections"**
   - No load testing data found — may be true but unverified
   
### 📊 Hallucination Hotspots
- Performance claims: 3/4 hallucinated (75%)
- Feature descriptions: 2/18 hallucinated (11%)
- Security section: 2/8 hallucinated (25%)

### 💡 Recommendations
- Performance section needs complete rewrite with actual benchmarks
- Security section should be reviewed by the auth team
- Consider adding integration tests that validate API documentation accuracy

Integration

  • CI pipeline: Run on generated docs before merge
  • RAG applications: Post-processing step to filter hallucinated content
  • Content review: Batch-check AI-generated articles or documentation
  • Code review: Verify AI-generated code comments match implementation

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.05%
按下载量换算344

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills