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

verifierverifier 搜索

Agent Skill

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

总安装

210

周安装

9

GitHub Stars

4

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nealcaren/sociology-skillset --skill verifier

简介

verifier 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据任务线索快速定位候选结果时使用。

  • 适用于事实核查、资料验证或研究支持等需要精准信息的场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加技能。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • verifier 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Verifier

You help researchers verify claims and quotes in their manuscripts against source materials. Given a draft manuscript and source documents, you systematically confirm that quoted text and attributed claims actually appear in the sources.

Project Integration

This skill reads from project.yaml when available:

# From project.yaml
type: qualitative  # or quantitative, mixed
paths:
  # For qualitative
  transcripts: data/raw/
  # For quantitative
  raw_data: data/raw/
  scripts: scripts/analysis/

Project type: This skill works for all project types:

  • Qualitative: Verifies participant quotes against transcripts
  • Quantitative: Verifies statistical claims against data/scripts
  • Mixed: Handles both verification types

Updates progress.yaml when complete:

status:
  verification: done
artifacts:
  verification_report: verification/verification-report.md

File Management

This skill uses git to track progress across phases. Before modifying any output file at a new phase:

  1. Stage and commit current state: git add [files] && git commit -m "verifier: Phase N complete"
  2. Then proceed with modifications.

Do NOT create version-suffixed copies (e.g., -v2, -final, -working). The git history serves as the version trail.

What This Skill Does

This is a verification skill that catches errors before they become problems:

  1. Extract all direct quotes and verifiable claims from a manuscript
  2. Map each item to its purported source (interview, article, document)
  3. Verify each item is present in the source using efficient search
  4. Escalate to deep reading (haiku agent) when fast search fails
  5. Report verification status with issues flagged for review

When to Use This Skill

Use this skill when you have:

  • A manuscript with quotes attributed to interview participants or literature
  • Source materials available (transcripts, PDFs, or document folder)
  • A need to confirm accuracy before submission

Common scenarios:

  • Final check before journal submission
  • After revisions that moved or edited quotes
  • When using quotes from secondary sources
  • Quality assurance for interview-based findings sections

Source Types Supported

Interview Transcripts

  • Participant quotes with pseudonyms
  • Claims about what participants said/did/felt
  • Aggregate claims ("Most participants...")
  • Paraphrased attributions

Literature Sources

  • Direct quotes from cited works
  • Paraphrased claims with citations
  • Data or statistics attributed to sources
  • Theoretical claims linked to specific authors

Verification Levels

LevelWhat's CheckedTolerance
Exact quoteVerbatim match in sourceMust match character-for-character (allowing minor punctuation variance)
Near quoteQuote with editorial changesMarked edits ([...], [sic]) should reflect actual source
ParaphraseClaimed meaning presentSource must support the paraphrased claim
Aggregate claimPattern across sourcesMultiple sources should support the claim

Workflow Phases

Phase 0: Intake

Goal: Understand the manuscript and source materials.

Process:

  • Read the manuscript (or specified sections)
  • Identify source type: interviews, literature, or mixed
  • Locate source materials (folder path, references.bib + library/, or file list)
  • Confirm verification scope (all quotes, specific sections, etc.)
  • Count approximate items to verify

Output: Appends ## Scope Summary section to verification-report.md.

Pause: User confirms scope and source locations.

Phase 1: Extraction

Goal: Extract all verifiable items from the manuscript.

Process:

  • Identify direct quotes (text in quotation marks with attribution)
  • Identify paraphrased claims with source attribution
  • Identify aggregate claims about participants or literature
  • For each item, extract:

- The quote or claim text - The attributed source (participant name, author/year) - Location in manuscript (section, approximate position) - Verification level (exact, near, paraphrase, aggregate)

  • Create extraction database

Output: Appends ## Verification Items section to verification-report.md.

Pause: User reviews extracted items. Can mark items to skip.

Phase 2: Source Mapping

Goal: Map each item to its specific source document.

Process:

  • For interview quotes: Match participant pseudonym to transcript file
  • For literature: Match citation to PDF/document or references.bib entry
  • Flag unmapped items:

- Participant not found in transcript list - Citation not found in source materials - Ambiguous source references

  • Create source-to-item mapping

Output: Updates ## Verification Items section in verification-report.md with source mappings.

Pause: User resolves unmapped items.

Phase 3: Verification

Goal: Systematically verify each item against its source.

Process: For each item:

  1. Fast search (Grep tool):

- For exact quotes: Search for distinctive phrase (8-15 words) - For paraphrases: Search for key terms that must appear - If found: Mark VERIFIED with source location

  1. If not found, semantic search (RAG):

- Run uv run plugins/sociology-skillset/scripts/rag.py search "paraphrased claim or key concept" - Especially useful for paraphrases where exact keywords differ from source - If found: Mark VERIFIED with source location and note on variation

  1. If not found, fuzzy search:

- Try variations (punctuation, spacing, common OCR errors) - Search for partial matches (beginning/end of quote) - If found: Mark VERIFIED with notes on variation

  1. If still not found, deep reading (haiku agent):

- Spawn haiku agent with source document and search target - Agent reads document looking for semantic match - Agent returns: FOUND (with location), NOT FOUND, or PARTIAL MATCH

  1. Record result:

- VERIFIED: Exact or acceptable match found - PARTIAL: Quote/claim partially matches source - NOT FOUND: Could not locate in purported source - NEEDS REVIEW: Ambiguous or requires human judgment

Verification strategies by type:

TypeFast SearchSemantic SearchDeep Read Trigger
Exact quoteFull phrase grepNo match after fuzzy
Near quoteCore phrase greprag.py search with key conceptPartial match only
ParaphraseKey terms greprag.py search with paraphrased claimTerms found but context unclear
AggregateCount matching instancesNeed pattern confirmation

Output: Appends ## Verification Results section to verification-report.md.

Pause: After each batch of ~20 items to show progress.

Phase 4: Report

Goal: Complete the verification report with full accounting and recommendations.

Process:

  • Summarize verification results:

- Total items verified - Items by status (verified, partial, not found, needs review) - Breakdown by source type

  • Detail issues:

- NOT FOUND items with context and recommendations - PARTIAL matches with specific discrepancies - NEEDS REVIEW items with decision prompts

  • Provide fix recommendations:

- Quote corrections with source text - Missing attribution suggestions - Items to remove or rewrite

Output: Appends ## Verification Report section to verification-report.md, completing the document.


Verification Search Strategy

Fast Search (Grep)

For a quote like:

"I didn't really think about it until my kids started asking questions" (Maria)

Search strategy:

1. Primary: "didn't really think about it until my kids"
2. Fallback: "think about it until" AND "kids" AND "questions"
3. Fuzzy: "did not really think" OR "didnt really think"

Deep Reading (Haiku Agent)

When grep fails, spawn an agent:

Task: Verify quote in source
subagent_type: general-purpose
model: haiku
prompt: |
  Read this interview transcript and find if this quote (or close variant) appears.

  QUOTE TO FIND:
  "I didn't really think about it until my kids started asking questions"

  ATTRIBUTED TO: Maria

  TRANSCRIPT:
  [transcript content]

  Return:
  - FOUND: [exact text from transcript] at [location]
  - PARTIAL: [what you found] - differs in [how]
  - NOT FOUND: Quote does not appear in this transcript

Common Issues Caught

IssueDetectionRecommendation
Quote not in transcriptNOT FOUND after deep readCheck attribution or remove quote
Quote from wrong participantFound but different speakerCorrect attribution
Quote significantly alteredPARTIAL matchRevise to match source
Merged quotesParts from multiple placesSplit or acknowledge composite
Citation to wrong sourceClaim not in cited workFind correct source

File Structure

project/
├── manuscript/
│   └── draft.md                    # Document with quotes/claims
├── sources/
│   ├── interviews/                 # Interview transcripts
│   │   ├── maria.md
│   │   ├── jose.md
│   │   └── ...
│   └── literature/                 # PDF or markdown sources
│       ├── smith-2020.pdf
│       └── ...
├── verification/
│   └── verification-report.md      # Single output: built up across phases; git tracks

Model Recommendations

TaskModelRationale
Extraction (Phase 1)SonnetCareful parsing of manuscript
Source mapping (Phase 2)SonnetMatching logic
Fast search (Phase 3)Grep toolNo model needed
Deep reading (Phase 3)HaikuCost-effective document search
Report generation (Phase 4)SonnetClear synthesis

Integration with Other Skills

After qual-findings-writer: Run verifier on the findings section to confirm all participant quotes are accurate.

After argument-builder: Verify that literature claims match their sources.

Before peer-reviewer: Clean up verification issues before simulating review.

Before revision-coordinator: Establish quote accuracy baseline before making changes.

Key Reminders

  • Exact quotes must be exact: Even small changes should be marked with [...] or [sic]
  • Source materials must be accessible: Can't verify against unavailable documents
  • Participant names must be consistent: Pseudonym in manuscript must match transcript filename or label
  • Deep reading is expensive but thorough: Use haiku agents when grep genuinely fails, not as first resort
  • Some items need human judgment: Flag ambiguous cases rather than making calls
  • Batch progress: Show verification progress to user in manageable chunks
  • Prioritize quotes over paraphrases: Direct quotes are highest risk for errors

Starting the Process

When the user is ready to begin:

  1. Ask for the manuscript: "Please share the path to your manuscript (or the specific section you want verified)."
  2. Identify source type: "Are we verifying quotes from interviews, cited literature, or both?"
  3. Locate sources: "Where are your source materials? I need a folder path for interview transcripts or access to your literature (PDFs, references.bib + library/ folder, or document folder)."
  4. Confirm scope: "Should I verify all quotes and claims, or focus on a specific section (e.g., Findings only)?"
  5. Proceed with Phase 0 to assess verification scope.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.59%
按下载量换算28

Claude

31.36%
按下载量换算23

Cursor

17.48%
按下载量换算13

Gemini CLI

10.01%
按下载量换算7

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/nealcaren/sociology-skillset --skill verifier 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills