Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

graphrag-evaluation图形评价

Agent Skill

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

总安装

906

周安装

37

GitHub Stars

85

下载量

290
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lyndonkl/claude --skill graphrag-evaluation

简介

用于评估 graphrag 方法在特定场景下的效果表现。

  • 适合对比不同参数配置或数据源的质量差异。graphrag-evaluation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需提供测试数据集、评估指标与基线结果。
  • 可输出精度、召回率等量化分析报告与改进建议。
  • 安装前请核实是否涉及敏感数据脱敏处理机制。

SKILL.md

Table of Contents

GraphRAG Evaluation

Workflow

Copy this checklist and work through each step:

  • Step 1. Identify Evaluation Scope
  • Step 2. Select Metrics
  • Step 3. Design Test Protocol
  • Step 4. Test Reasoning Capabilities
  • Step 5. Measure Hallucination Rate
  • Step 6. Compare Against Baselines
  • Step 7. Produce Evaluation Report

Step 1. Identify Evaluation Scope

Define what aspects of your GraphRAG system you need to evaluate and why. Determine whether you are evaluating the full pipeline or specific components (KG construction, retrieval, generation). Clarify the use case context: domain, query complexity, expected reasoning depth.

See methodology.md for the full evaluation dimensions framework.

Step 2. Select Metrics

Choose metrics appropriate to your evaluation scope. Not every evaluation requires every metric. Match metrics to your system's maturity and the questions you need answered.

See the Metric Selection Guide below and methodology.md for detailed metric definitions.

Step 3. Design Test Protocol

Build test sets that cover your evaluation dimensions. Include single-hop factual queries, multi-hop reasoning queries, constraint satisfaction queries, temporal reasoning queries, comparative queries, and negative queries (questions the system should not answer).

See methodology.md for baseline comparison approaches and statistical significance testing.

Step 4. Test Reasoning Capabilities

Evaluate how well your system handles multi-step reasoning. Verify that each reasoning step is grounded in retrieved KG evidence. Check for error propagation where an incorrect intermediate step leads to wrong conclusions.

See reasoning-patterns.md for chain validation, pattern matching, hypothesis verification, and causal reasoning evaluation.

Step 5. Measure Hallucination Rate

Quantify both intrinsic hallucination (contradicts retrieved evidence) and extrinsic hallucination (claims not supported by any retrieved source). Measure the KG grounding rate: what percentage of generated claims are traceable to knowledge graph entities and relations.

See methodology.md for hallucination detection approaches and comparison protocols.

Step 6. Compare Against Baselines

Run identical test sets against baseline systems: pure vector RAG, LLM-only (no retrieval), and alternative graph configurations. Use controlled ablation studies to isolate the contribution of each component.

See methodology.md for baseline comparison and ablation study design.

Step 7. Produce Evaluation Report

Compile findings into the structured output template below. Include metric values, baseline comparisons, identified weaknesses, and prioritized recommendations.

See rubric_evaluation.json for the scoring rubric (minimum passing score: 3.0).

Evaluation Dimensions

DimensionWhat It MeasuresKey MetricsPriority
KG QualityCompleteness and accuracy of the knowledge graphEntity coverage, relation completeness, schema consistencyHigh
Retrieval QualityEffectiveness of graph-based retrievalContext recall (C-Rec), context precision, multi-hop coverageHigh
Answer CorrectnessAccuracy and completeness of generated answersFactual accuracy, answer completeness, citation accuracyCritical
Hallucination RateFrequency of unsupported or contradicted claimsIntrinsic hallucination rate, extrinsic hallucination rate, KG grounding rateCritical
Reasoning DepthAbility to perform multi-step reasoning correctlyMulti-hop accuracy, stepwise verification score, error propagation rateMedium-High

Metric Selection Guide

Choose metrics based on your evaluation goals:

Quick Health Check (minimal effort):

  • Answer correctness on a curated test set (20-50 questions)
  • KG grounding rate (sample 20 responses)
  • Single baseline comparison (pure vector RAG)

Standard Evaluation (recommended):

  • All five dimensions with standardized test sets
  • Context recall and context precision
  • Multi-hop reasoning tests
  • Hallucination rate measurement
  • Two or more baseline comparisons

Comprehensive Benchmark (production readiness):

  • Full metrics suite across all dimensions
  • Statistical significance testing with confidence intervals
  • Controlled ablation study
  • Process-oriented reasoning evaluation (stepwise correctness)
  • Automated evaluation pipeline for reproducibility

Output Template

# GraphRAG Evaluation Report

## 1. System Under Evaluation
- System name and version:
- Domain:
- KG size (entities/relations):
- Evaluation date:

## 2. Evaluation Scope
- Dimensions evaluated:
- Test set size and composition:
- Baseline systems:

## 3. KG Quality Results
- Entity coverage: ____%
- Relation completeness: ____%
- Schema consistency score: ____
- Notable gaps:

## 4. Retrieval Quality Results
- Context recall (C-Rec): ____
- Context precision: ____
- Multi-hop coverage: ____%
- Latency (p50/p95/p99): ____

## 5. Answer Correctness Results
- Factual accuracy: ____%
- Answer completeness: ____%
- Citation accuracy: ____%

## 6. Hallucination Analysis
- Intrinsic hallucination rate: ____%
- Extrinsic hallucination rate: ____%
- KG grounding rate: ____%
- Comparison with/without graph augmentation:

## 7. Reasoning Depth Results
- Single-hop accuracy: ____%
- Multi-hop accuracy: ____%
- Stepwise reasoning correctness: ____%
- Error propagation incidents: ____

## 8. Baseline Comparison
| Metric | GraphRAG | Pure Vector RAG | LLM Only |
|--------|----------|-----------------|----------|
| Answer correctness | | | |
| Hallucination rate | | | |
| Multi-hop accuracy | | | |

## 9. Statistical Significance
- Test used:
- Confidence level:
- Significant improvements:
- Non-significant differences:

## 10. Identified Weaknesses
1.
2.
3.

## 11. Recommendations
| Priority | Recommendation | Expected Impact | Effort |
|----------|---------------|-----------------|--------|
| | | | |

## 12. Rubric Score
- Metric Coverage: __ / 5
- Measurement Rigor: __ / 5
- Baseline Comparison: __ / 5
- Reasoning Depth: __ / 5
- Actionable Recommendations: __ / 5
- **Weighted Total: __ / 5.0** (minimum passing: 3.0)

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

Codex

35.12%
按下载量换算102

Claude

29.69%
按下载量换算86

Cursor

18.37%
按下载量换算53

Gemini CLI

10.12%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills