Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

tree-graph-ragtree graph RAG 搜索

Agent Skill

用于搭建或维护带检索增强的 RAG 工作流,适合让 Agent 处理知识库问答、向量检索、来源引用和事实核查。它可以辅助整理数据接入、Embedding、向量库、召回参数和回答生成流程。使用时需要确认数据来源、更新频率、召回阈值和引用展示方式,避免把未命中的资料或过期内容包装成确定事实。

总安装

4,027

周安装

173

GitHub Stars

公开资料未说明

下载量

1,412
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install tree-graph-rag

简介

用于构建融合文档树与实体关系的 PostgreSQL RAG 数据库系统。

  • 适合知识库问答、向量检索和事实核查等智能检索任务。
  • 支持数据接入、Embedding 处理和召回参数配置流程。
  • 使用时需明确数据来源和更新机制,避免引用未命中内容。
  • 建议核对召回阈值设置和引用展示方式是否符合需求。tree-graph-rag 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
tree-graph-rag
description
Guide for designing and implementing a PostgreSQL database that fuses PageIndex-style document trees with LightRAG-style entity-relationship anchors. Use this skill when Claude needs to design schemas, write ingestion logic, or implement retrieval SQL for a hybrid tree-graph knowledge base, especially when converting nested tree output into relational tables.

Tree-Graph Hybrid RAG

This skill teaches Claude how to build the database layer of a Tree-Graph Hybrid RAG system. It focuses on the integration seam between PageIndex-style tree output and LightRAG-style graph extraction, both stored in PostgreSQL.

Core Philosophy

  • Tree (Macro): Represents the document's native hierarchy. Gives the LLM the structural skeleton (Chapter -> Section).
  • Graph (Micro): Represents Entities and Relationships. Gives the LLM cross-document, fine-grained factual connections.
  • Fusion: Every node and edge in the Graph is anchored to a specific node_id in the Tree, enabling bidirectional traversal (from graph detail to tree context, or tree context to graph detail).

Bundled Resources

This skill includes the minimum resources needed to teach Claude the database design and data flow:

  • schema.sql: The complete PostgreSQL table definitions required for this architecture.
  • ingestion_core.py: Python script demonstrating how to flatten the Tree JSON into Postgres and how to extract graph entities anchored to the tree.
  • retrieval_core.py: Python script demonstrating the Hybrid Retrieval logic (Querying the Graph to find Tree node_ids, then extracting the macro context).
  • smoke_test.py: Minimal no-database smoke test that validates the ingestion and retrieval flow with a fake pool.
  • integration-pattern.md: Explains what this skill covers, what it intentionally does not reimplement, and where it should sit in a real service.
  • queries.md: Common SQL patterns for loading skeletons, anchoring graph hits, and assembling answer context.

Standard Workflows

1. Indexing Workflow

  1. Tree Extraction: Extract headers/TOC. Save skeleton to nodes and text to node_contents.
  2. Graph Extraction: Pass each node_contents to an LLM to extract entities and relations.
  3. Anchoring: Save entities/relations with their corresponding node_id as a foreign key.

2. Retrieval Workflow

  1. Entity/Relation Search: Extract keywords from the user query. Search the entities and relationships tables to find matching factual details.
  2. Anchor Resolution: Get the node_ids associated with the matched graph elements.
  3. Contextualization (Tree Traversal): Query the nodes table using the node_ids. Traverse up (parent_id) to gather the section titles and summaries.
  4. Content Fetch: Retrieve the full text from node_contents only for the required nodes.
  5. Synthesis: Feed the LLM a prompt containing:

- Found Entities & Relations - Tree Context (e.g., "This was mentioned in Chapter 3: Financials") - Raw Text Chunks

Output Expectations

When this skill is triggered, prefer producing:

  1. PostgreSQL DDL or migration SQL
  2. Tree-flattening ingestion code
  3. Graph anchoring logic tied to node_id
  4. Retrieval SQL that starts from graph hits and resolves back to tree context
  5. Clear explanation of why this database design is preferable to storing one giant nested JSON blob

Developer Guidelines

  • Always enforce bone-meat separation: Never store massive text chunks in the nodes or entities tables.
  • Always maintain multi-tenancy: Ensure every query filters by workspace.
  • When users ask to implement a retrieval function, write SQL queries that join relationships -> nodes -> node_contents to demonstrate the hybrid power.
  • Do not build a full product scaffold inside the skill. Keep the focus on database design, ingestion, anchoring, and retrieval patterns.
  • Do not rewrite PageIndex or LightRAG in full inside the skill. Reuse their existing pipelines and apply this skill at the integration seam.

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

OpenClaw

70.33%
按下载量换算993

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills