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

addon-rag-ingestion-pipelineaddon RAG ingestion pipeline 搜索

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

公开资料未说明

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ajrlewis/ai-skills --skill addon-rag-ingestion-pipeline

简介

addon-rag-ingestion-pipeline 支持多格式文档(PDF、Markdown、HTML 等)的 RAG 数据接入与向量化。

  • 适用于知识库问答、事实核查和引用增强场景,可与 Python 后端或 Next.js 前端协作。
  • 提供分块大小、重叠长度、召回数量等参数配置,并支持 OpenAI 或 sentence-transformers 嵌入模型。
  • 建议根据数据来源频率调整更新策略,并设置合理的 TOP_K 阈值以避免幻觉。
  • 可与 addon-langchain-llm 或 addon-langgraph-agent 集成形成完整检索增强生成链路。

SKILL.md

Add-on: Multi-Format RAG Ingestion Pipeline

Use this skill when an existing project needs RAG ingestion/retrieval across multiple document formats.

Compatibility

  • Works with architect-python-uv-batch.
  • Works with architect-python-uv-fastapi-sqlalchemy.
  • Can back a Next.js app via a Python worker service.

Inputs

Collect:

  • SOURCE_FORMATS: one or more of pdf, markdown, txt, html, csv.
  • EMBED_PROVIDER: openai or sentence-transformers.
  • VECTOR_STORE: pgvector, chroma, or existing vector layer.
  • CHUNK_SIZE: default 1000.
  • CHUNK_OVERLAP: default 150.
  • TOP_K: default 5.

Integration Workflow

  1. Add dependencies (Python worker path):
uv add pypdf markdown-it-py beautifulsoup4 pandas langchain-text-splitters
  • If EMBED_PROVIDER=openai: uv add openai
  • If EMBED_PROVIDER=sentence-transformers: uv add sentence-transformers
  • If VECTOR_STORE=chroma: uv add chromadb
  1. Add modules:
src/{{MODULE_NAME}}/rag/
  loaders/pdf_loader.py
  loaders/markdown_loader.py
  loaders/text_loader.py
  loaders/html_loader.py
  loaders/csv_loader.py
  normalize.py
  chunking.py
  embeddings.py
  indexer.py
  retriever.py
  1. Use a normalized document contract:
  • document_id
  • source_path
  • source_type
  • content
  • metadata (filename/page/section/checksum/ingested_at/model_version)
  1. Implement ingestion entrypoint:
uv run {{PROJECT_NAME}} rag-ingest --source ./data/inbox --formats pdf,markdown,txt
  1. Implement retrieval entrypoint:
uv run {{PROJECT_NAME}} rag-query --q "question" --top-k 5
  • Ensure both commands are wired in the project CLI/script entrypoint.
  • rag-query depends on an existing index from rag-ingest; do not run these validation commands in parallel.

Loader Notes

  • PDF: extract per page and keep page_number in metadata.
  • Markdown: keep heading hierarchy and section anchors in metadata.
  • Text: detect encoding fallback (utf-8, then latin-1).
  • HTML: strip script/style tags and preserve title/headings where possible.
  • CSV: convert rows into stable textual records with row identifiers.

Minimal Defaults

normalize.py

import re
import unicodedata

def normalize_text(raw: str) -> str:
    text = unicodedata.normalize("NFKC", raw)
    text = text.replace("\r\n", "\n")
    text = re.sub(r"[ \t]+", " ", text)
    text = re.sub(r"\n{3,}", "\n\n", text)
    return text.strip()

chunking.py

from langchain_text_splitters import RecursiveCharacterTextSplitter

def chunk_text(text: str, chunk_size: int = 1000, overlap: int = 150) -> list[str]:
    splitter = RecursiveCharacterTextSplitter(
        chunk_size=chunk_size,
        chunk_overlap=overlap,
        separators=["\n\n", "\n", ". ", " ", ""],
    )
    return splitter.split_text(text)

Guardrails

  • Documentation contract for generated code:

- Python: write module docstrings and docstrings for public classes, methods, and functions. - Next.js/TypeScript: write JSDoc for exported components, hooks, utilities, and route handlers. - Add concise rationale comments only for non-obvious logic, invariants, or safety constraints. - Apply this contract even when using template snippets below; expand templates as needed.

  • Deduplicate ingestion by checksum to keep re-runs idempotent.
  • Store embedding model/version so re-indexing can be reasoned about.
  • Never interpolate user queries into raw SQL vector search.
  • Keep ingestion async/offline for large corpora; do not block request-response paths.
  • Preserve citation metadata for retrieval (source_path, section, page, row id).

Validation Checklist

  • Confirm generated code includes required docstrings/JSDoc and rationale comments for non-obvious logic.
uv run {{PROJECT_NAME}} rag-ingest --source ./data/inbox --formats pdf,markdown
uv run {{PROJECT_NAME}} rag-query --q "smoke test" --top-k 5
uv run pytest -q

Decision Justification Rule

  • Every non-trivial decision must include a concrete justification.
  • Capture the alternatives considered and why they were rejected.
  • State tradeoffs and residual risks for the chosen option.
  • If justification is missing, treat the task as incomplete and surface it as a blocker.

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

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

平台分布

Codex

36.21%
按下载量换算32

Claude

33.19%
按下载量换算29

Cursor

17.94%
按下载量换算16

Gemini CLI

9.57%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills