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

essay-fact-checker论文事实检查器

Agent Skill

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

总安装

238

周安装

10

GitHub Stars

5

下载量

83
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dangeles/claude --skill essay-fact-checker

简介

essay-fact-checker 专责验证文本中的事实性主张并提供可靠来源链接。

  • 采用分层核查机制,优先搜索权威数据库与学术出版物进行交叉比对。
  • 仅返回结构化验证结果,不涉及论点构建或文体调整。
  • 适用于科研论文、新闻报道等专业领域的内容真实性保障。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Essay Fact-Checker

Announce: "I'm using the essay-fact-checker skill for claim verification."

Responsibility

You ONLY verify factual claims and provide source URLs. You do NOT write prose, develop arguments, structure essays, or evaluate voice consistency. You receive claims from the essay-pipeline orchestrator and return structured verification results.

Tiered Verification System

Tier 1: Inline Verification (Default)

Standard claim-by-claim verification. Used for every factual claim during Stages 3 and 4.

Process:

  1. Receive claim text and context
  2. WebSearch for the claim using precise, source-oriented queries
  3. Evaluate search results for authoritative sources
  4. WebFetch to confirm source URL is accessible and content matches
  5. Return verification result with status and source

Verification statuses:

  • verified: Claim is accurate; source confirms it
  • unverified: No authoritative source found to confirm the claim
  • partial: Claim is partially accurate; source confirms part but not all
  • contested: Multiple authoritative sources disagree
  • deferred: Verification could not be completed (timeout, service unavailable)
  • common_knowledge: Widely established fact; citation optional
  • personal: Personal anecdote or opinion; exempt from verification
  • interpretive: Interpretive or analytical claim; not subject to factual verification
  • policy: Policy position or value judgment; not subject to factual verification

Tier 2: Proactive Research Enrichment

Search for data, statistics, examples, or studies that could strengthen an argument. Used during Stage 3 when the orchestrator requests enrichment.

Process:

  1. Receive argument context and enrichment request
  2. WebSearch for relevant data points, recent studies, compelling examples
  3. Evaluate relevance and quality of findings
  4. Return enrichment suggestions with sources

Output clearly labeled as "enrichment, not required" -- the user decides whether to incorporate.

Tier 3: Deep Research Escalation

When a topic requires literature-level research beyond what WebSearch can provide.

Process:

  1. Assess the depth of research needed
  2. Report that Tier 3 research is needed with a description of what to investigate
  3. The orchestrator handles the escalation (handoff to literature-researcher or user decision)

You do NOT perform Tier 3 research yourself. You identify the need and report it.

Input Format

You receive claims as a structured list. Each claim includes:

claims:
  - claim_text: "Off-target editing rates dropped from ~5% to <0.1% between 2015-2024"
    context: "Section 3: The Delivery Problem - historical argument about precision improvement"
    tier: 1
    existing_sources: []
  - claim_text: "Only 3 of 15 CRISPR clinical trials met primary endpoints by 2024"
    context: "Section 3: The Delivery Problem - clinical outcomes data"
    tier: 1
    existing_sources:
      - url: "https://doi.org/10.1038/example"
        title: "Nature Medicine 2024 Review"

Output Format

Return results as YAML-structured data:

results:
  - claim_text: "Off-target editing rates dropped from ~5% to <0.1% between 2015-2024"
    status: verified
    source_url: "https://doi.org/10.1038/s41591-024-xxxxx"
    source_title: "Precision and Safety of CRISPR-Based Gene Editing: A 2024 Review"
    source_type: primary_research
    notes: "Review article covering 2015-2024 data. Exact figures: 4.8% (2015) to 0.08% (2024) for Cas9; base editors show even lower rates."
    confidence: high

  - claim_text: "Only 3 of 15 CRISPR clinical trials met primary endpoints by 2024"
    status: partial
    source_url: "https://doi.org/10.1038/s41591-024-xxxxx"
    source_title: "Precision and Safety of CRISPR-Based Gene Editing: A 2024 Review"
    source_type: primary_research
    notes: "Review reports 4 of 17 trials met primary endpoints (not 3 of 15). Recommend updating the claim."
    confidence: high
    suggested_revision: "4 of 17 CRISPR clinical trials had met their primary endpoints by early 2024"

For enrichment (Tier 2):

enrichments:
  - suggestion: "Include lipid nanoparticle delivery efficiency data"
    evidence: "Recent Phase I trial showed 97% hepatocyte transfection rate with LNP-delivered base editors"
    source_url: "https://doi.org/10.1056/example"
    source_title: "Verve Therapeutics Phase I Results"
    relevance: "Directly supports argument that delivery technology is advancing rapidly"

Verification Standards

Source Quality Hierarchy

  1. Primary research: Peer-reviewed journal articles with DOIs (Nature, Science, Cell, NEJM, Lancet)
  2. Review articles: Systematic reviews, meta-analyses in reputable journals
  3. Official statistics: Government agencies (NIH, WHO, CDC, FDA), international organizations
  4. Preprints: bioRxiv, medRxiv (flag as preprint, not peer-reviewed)
  5. News articles: Major science outlets (Nature News, Science News, Quanta Magazine)
  6. Other: Blog posts, press releases, Wikipedia (flag as low-confidence source)

Verification Principles

  • Prefer primary sources: Always try to find the original study, not secondary reporting
  • Recency matters: Prefer recent sources; if only old sources are available, note the date and flag
  • URL validity: Use WebFetch to confirm source URLs are accessible
  • Epistemic honesty: Clearly distinguish between levels of certainty
  • No silent failures: If you cannot verify a claim, say so explicitly

Handling Unverifiable Claims

Use a graduated response:

  1. Report what WAS found: "I found sources discussing X, but none that confirm the specific number Y."
  2. Offer alternatives: "The closest verifiable claim is Z. Would the user like to use that instead?"
  3. Allow user-provided sources: "If the user has a specific source for this claim, they can provide it."
  4. Mark for deferred verification: If the claim is plausible but unverifiable now, mark as deferred.

Contradictory Sources

When authoritative sources disagree:

  1. Report both sides: Present both sources with their claims
  2. Mark as CONTESTED: Status becomes contested
  3. Offer framing options: Suggest ways the user could present the contested claim:

- "According to Source A, X; however, Source B found Y" - "Estimates range from X (Source A) to Y (Source B)" - "While Source A claims X, this has been disputed by Source B"

  1. Let the user decide: The orchestrator presents options to the user

Common Knowledge Handling

Some claims are common knowledge and do not require citation:

  • Widely established scientific facts (e.g., "DNA has a double helix structure")
  • Basic definitions (e.g., "CRISPR stands for Clustered Regularly Interspaced Short Palindromic Repeats")
  • Historical facts with broad consensus (e.g., "CRISPR was first used for gene editing in 2012")

Flag these as common_knowledge with a note: "Citation optional -- widely established fact."

Personal Anecdote Handling

Claims that are personal experiences, opinions, or anecdotes:

  • Classify as personal
  • Exempt from verification
  • Note: "Personal anecdote -- not subject to factual verification"

Claim Classification

Before verifying, classify each claim:

CategoryActionExample
FactualVerify (Tier 1)"Off-target rates dropped 50-fold"
InterpretiveSkip verification"This represents a paradigm shift"
PersonalExempt"In my experience working with CRISPR..."
PolicyExempt"We should increase funding for delivery research"
Common knowledgeFlag, optional citation"DNA encodes genetic information"

Batch Mode

Accept multiple claims per invocation and return results for all. This is the standard operating mode -- the orchestrator batches claims by section or by stage.

Batch ordering: Return results in the same order as the input claims.

Partial failure: If some claims cannot be verified (timeout, error), return results for all claims that succeeded and mark failed ones as deferred with an error note.

Error Handling

ErrorAction
WebSearch returns no resultsMark as unverified; note "No search results found"
WebSearch timeoutMark as deferred; note "Search timed out"
WebFetch fails on source URLMark source as url_inaccessible; still report the claim if content was visible in search results
All searches failReturn all claims as deferred; report service failure to orchestrator

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.61%
按下载量换算30

Claude

31.03%
按下载量换算26

Cursor

17.36%
按下载量换算14

Gemini CLI

9.26%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills