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

rag-chunking-optimizerRAG chunking 优化器

Agent Skill

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

总安装

973

周安装

39

GitHub Stars

公开资料未说明

下载量

315
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install rag-chunking-optimizer

简介

分析文档结构并推荐最优分块大小、重叠设置与元数据丰富策略。

  • 提升 RAG 管道的信息召回率与答案相关性表现。
  • 支持 PDF、Word、Markdown 等多格式输入的智能分段处理。
  • 分块粒度影响语义完整性,需平衡检索速度与上下文连贯性要求。
  • 安装命令:openclaw skills install rag-chunking-optimizer

SKILL.md

name
rag-chunking-optimizer
description
Optimize RAG pipeline chunking strategy — analyze documents, recommend chunk sizes, splitting methods, overlap settings, and metadata enrichment for maximum retrieval quality.
metadata
tags
["rag", "chunking", "llm", "embeddings", "ai", "retrieval"]

RAG Chunking Optimizer

Analyze documents and recommend optimal chunking strategies for RAG (Retrieval-Augmented Generation) pipelines. Evaluates chunk sizes, splitting methods, overlap settings, metadata enrichment, and retrieval quality. Use when building or optimizing RAG applications.

Usage

"Optimize chunking for my knowledge base documents"
"What's the best chunk size for these technical docs?"
"Analyze my current chunking strategy for retrieval quality"
"Help me set up semantic chunking for my RAG pipeline"
"Compare chunking strategies for my document types"

How It Works

1. Document Analysis

Profile the document corpus:

# Analyze document types and sizes
find docs/ -type f \( -name "*.md" -o -name "*.txt" -o -name "*.pdf" -o -name "*.html" \) -exec wc -l {} + | sort -rn | head -20

# Check document structure patterns
for f in docs/*.md; do
  echo "=== $f ==="
  grep -c "^#" "$f"           # heading count
  grep -c "^```" "$f"          # code block count  
  wc -w < "$f"                 # word count
done

Classify documents by type:

  • Structured technical docs: APIs, references, manuals → heading-based splitting
  • Narrative content: articles, blog posts, reports → semantic/paragraph splitting
  • Code-heavy docs: tutorials, examples → code-aware splitting
  • Tabular data: specs, configurations → row/section splitting
  • Q&A / FAQ: question-answer pairs → pair-based splitting
  • Legal/compliance: contracts, policies → clause-based splitting

2. Chunking Strategy Evaluation

Evaluate strategies against the corpus:

Fixed-size chunking:

  • Pros: Simple, predictable, works everywhere
  • Cons: Breaks mid-sentence, loses context
  • Best for: Homogeneous documents, initial prototyping
  • Typical: 512-1024 tokens, 50-100 token overlap

Recursive character splitting:

  • Split hierarchy: `\

\ \ . `

  • Pros: Respects natural boundaries, widely supported
  • Cons: May still break semantic units
  • Best for: General purpose, mixed content

Semantic chunking:

  • Group sentences by embedding similarity
  • Pros: Preserves meaning, variable-size chunks
  • Cons: Slower, requires embedding model, harder to debug
  • Best for: Narrative content, complex topics

Heading-based (markdown/HTML):

  • Split on heading hierarchy (H1 → H2 → H3)
  • Pros: Preserves document structure, natural sections
  • Cons: Uneven chunk sizes, may be too large or small
  • Best for: Structured documentation, wikis

Code-aware chunking:

  • Split on function/class boundaries using AST
  • Pros: Complete code units, preserves imports/context
  • Cons: Language-specific, requires parsing
  • Best for: Code documentation, API references

Sliding window with context:

  • Overlapping windows with parent/sibling context
  • Pros: Never loses boundary context
  • Cons: Storage overhead, retrieval deduplication needed
  • Best for: Dense technical content

3. Chunk Size Optimization

Factors that determine optimal chunk size:

  • Embedding model: Match chunk size to model's sweet spot

- text-embedding-3-small: 256-512 tokens optimal - text-embedding-ada-002: 512-1024 tokens - voyage-3: 512-1024 tokens - BAAI/bge-large: 256-512 tokens

  • Query type: Short queries → smaller chunks; complex queries → larger
  • Answer density: If answers span paragraphs → larger chunks
  • Context window: LLM context limits how many chunks you can inject
  • Latency budget: More chunks = more embedding comparisons

4. Overlap Analysis

Determine optimal overlap:

  • Too little overlap (0-10%): Context lost at boundaries, retrieval misses
  • Optimal overlap (10-20%): Maintains context without excessive duplication
  • Too much overlap (>25%): Storage waste, retrieval returns near-duplicates

5. Metadata Enrichment

Recommend metadata to attach to each chunk:

  • Source metadata: file path, section heading, page number
  • Structural metadata: document type, heading hierarchy, position
  • Semantic metadata: extracted entities, keywords, topic classification
  • Temporal metadata: creation date, last modified, version
  • Relational metadata: links to parent/child/sibling chunks

6. Quality Metrics

Evaluate chunking quality:

  • Semantic coherence: Does each chunk contain a complete thought?
  • Retrieval precision: Top-K results contain the answer?
  • Retrieval recall: Can every answerable question find its chunk?
  • Chunk size distribution: Normal distribution around target?
  • Boundary quality: How often are sentences/concepts split?
  • Deduplication ratio: How much content overlaps between chunks?

7. A/B Testing Framework

Design experiments to compare strategies:

Test matrix:
- Chunk sizes: [256, 512, 768, 1024] tokens
- Overlap: [0, 64, 128] tokens
- Method: [recursive, semantic, heading-based]
- Embedding model: [ada-002, voyage-3]

Evaluation set: 50 representative queries with known answers
Metrics: MRR@5, Recall@10, Answer accuracy, Latency

Output

## RAG Chunking Analysis

**Corpus:** 234 documents, 1.2M tokens total
**Current strategy:** Fixed 1024 tokens, 100 overlap
**Recommendation:** Switch to heading-based + semantic hybrid

### Document Profile
| Type | Count | Avg Length | Recommended Strategy |
|------|-------|------------|---------------------|
| API docs | 89 | 2,400 tokens | Heading-based (H2 splits) |
| Tutorials | 45 | 5,800 tokens | Semantic chunking |
| Blog posts | 67 | 1,600 tokens | Recursive, 512 tokens |
| Changelogs | 33 | 800 tokens | Version-based splits |

### Recommended Configuration

Primary strategy: heading-based for structured docs

structured_splitter = MarkdownHeaderTextSplitter( headers_to_split_on=[("##", "Section"), ("###", "Subsection")], strip_headers=False )

Fallback: recursive for unstructured content

recursive_splitter = RecursiveCharacterTextSplitter( chunk_size=512, chunk_overlap=64, separators=["\ \ ", "\ ", ". ", " "] )


### Expected Improvement
| Metric | Current | Projected |
|--------|---------|-----------|
| MRR@5 | 0.62 | 0.78 (+26%) |
| Recall@10 | 0.71 | 0.89 (+25%) |
| Avg chunk coherence | 0.54 | 0.82 (+52%) |
| Storage overhead | 1.0x | 1.12x |

### Chunk Size Distribution (recommended)
- Min: 128 tokens (small subsections)
- Median: 420 tokens
- Max: 1,024 tokens (capped)
- Std dev: 180 tokens

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

OpenClaw

93.66%
按下载量换算295

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills