← 返回 Skills 市场
okaris

Ai Rag Pipeline

作者 Ömer Karışman · GitHub ↗ · v0.1.5
cross-platform ⚠ suspicious
1299
总下载
0
收藏
4
当前安装
2
版本数
在 OpenClaw 中安装
/install ai-rag-pipeline
功能描述
Build RAG (Retrieval Augmented Generation) pipelines with web search and LLMs. Tools: Tavily Search, Exa Search, Exa Answer, Claude, GPT-4, Gemini via OpenRo...
使用说明 (SKILL.md)

AI RAG Pipeline

Build RAG (Retrieval Augmented Generation) pipelines via inference.sh CLI.

AI RAG Pipeline

Quick Start

curl -fsSL https://cli.inference.sh | sh && infsh login

# Simple RAG: Search + LLM
SEARCH=$(infsh app run tavily/search-assistant --input '{"query": "latest AI developments 2024"}')
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"Based on this research, summarize the key trends: $SEARCH\"
}"

Install note: The install script only detects your OS/architecture, downloads the matching binary from dist.inference.sh, and verifies its SHA-256 checksum. No elevated permissions or background processes. Manual install & verification available.

What is RAG?

RAG combines:

  1. Retrieval: Fetch relevant information from external sources
  2. Augmentation: Add retrieved context to the prompt
  3. Generation: LLM generates response using the context

This produces more accurate, up-to-date, and verifiable AI responses.

RAG Pipeline Patterns

Pattern 1: Simple Search + Answer

[User Query] -> [Web Search] -> [LLM with Context] -> [Answer]

Pattern 2: Multi-Source Research

[Query] -> [Multiple Searches] -> [Aggregate] -> [LLM Analysis] -> [Report]

Pattern 3: Extract + Process

[URLs] -> [Content Extraction] -> [Chunking] -> [LLM Summary] -> [Output]

Available Tools

Search Tools

Tool App ID Best For
Tavily Search tavily/search-assistant AI-powered search with answers
Exa Search exa/search Neural search, semantic matching
Exa Answer exa/answer Direct factual answers

Extraction Tools

Tool App ID Best For
Tavily Extract tavily/extract Clean content from URLs
Exa Extract exa/extract Analyze web content

LLM Tools

Model App ID Best For
Claude Sonnet 4.5 openrouter/claude-sonnet-45 Complex analysis
Claude Haiku 4.5 openrouter/claude-haiku-45 Fast processing
GPT-4o openrouter/gpt-4o General purpose
Gemini 2.5 Pro openrouter/gemini-25-pro Long context

Pipeline Examples

Basic RAG Pipeline

# 1. Search for information
SEARCH_RESULT=$(infsh app run tavily/search-assistant --input '{
  "query": "What are the latest breakthroughs in quantum computing 2024?"
}')

# 2. Generate grounded response
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"You are a research assistant. Based on the following search results, provide a comprehensive summary with citations.

Search Results:
$SEARCH_RESULT

Provide a well-structured summary with source citations.\"
}"

Multi-Source Research

# Search multiple sources
TAVILY=$(infsh app run tavily/search-assistant --input '{"query": "electric vehicle market trends 2024"}')
EXA=$(infsh app run exa/search --input '{"query": "EV market analysis latest reports"}')

# Combine and analyze
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"Analyze these research results and identify common themes and contradictions.

Source 1 (Tavily):
$TAVILY

Source 2 (Exa):
$EXA

Provide a balanced analysis with sources.\"
}"

URL Content Analysis

# 1. Extract content from specific URLs
CONTENT=$(infsh app run tavily/extract --input '{
  "urls": [
    "https://example.com/research-paper",
    "https://example.com/industry-report"
  ]
}')

# 2. Analyze extracted content
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"Analyze these documents and extract key insights:

$CONTENT

Provide:
1. Key findings
2. Data points
3. Recommendations\"
}"

Fact-Checking Pipeline

# Claim to verify
CLAIM="AI will replace 50% of jobs by 2030"

# 1. Search for evidence
EVIDENCE=$(infsh app run tavily/search-assistant --input "{
  \"query\": \"$CLAIM evidence studies research\"
}")

# 2. Verify claim
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"Fact-check this claim: '$CLAIM'

Based on the following evidence:
$EVIDENCE

Provide:
1. Verdict (True/False/Partially True/Unverified)
2. Supporting evidence
3. Contradicting evidence
4. Sources\"
}"

Research Report Generator

TOPIC="Impact of generative AI on creative industries"

# 1. Initial research
OVERVIEW=$(infsh app run tavily/search-assistant --input "{\"query\": \"$TOPIC overview\"}")
STATISTICS=$(infsh app run exa/search --input "{\"query\": \"$TOPIC statistics data\"}")
OPINIONS=$(infsh app run tavily/search-assistant --input "{\"query\": \"$TOPIC expert opinions\"}")

# 2. Generate comprehensive report
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"Generate a comprehensive research report on: $TOPIC

Research Data:
== Overview ==
$OVERVIEW

== Statistics ==
$STATISTICS

== Expert Opinions ==
$OPINIONS

Format as a professional report with:
- Executive Summary
- Key Findings
- Data Analysis
- Expert Perspectives
- Conclusion
- Sources\"
}"

Quick Answer with Sources

# Use Exa Answer for direct factual questions
infsh app run exa/answer --input '{
  "question": "What is the current market cap of NVIDIA?"
}'

Best Practices

1. Query Optimization

# Bad: Too vague
"AI news"

# Good: Specific and contextual
"latest developments in large language models January 2024"

2. Context Management

# Summarize long search results before sending to LLM
SEARCH=$(infsh app run tavily/search-assistant --input '{"query": "..."}')

# If too long, summarize first
SUMMARY=$(infsh app run openrouter/claude-haiku-45 --input "{
  \"prompt\": \"Summarize these search results in bullet points: $SEARCH\"
}")

# Then use summary for analysis
infsh app run openrouter/claude-sonnet-45 --input "{
  \"prompt\": \"Based on this research summary, provide insights: $SUMMARY\"
}"

3. Source Attribution

Always ask the LLM to cite sources:

infsh app run openrouter/claude-sonnet-45 --input '{
  "prompt": "... Always cite sources in [Source Name](URL) format."
}'

4. Iterative Research

# First pass: broad search
INITIAL=$(infsh app run tavily/search-assistant --input '{"query": "topic overview"}')

# Second pass: dive deeper based on findings
DEEP=$(infsh app run tavily/search-assistant --input '{"query": "specific aspect from initial search"}')

Pipeline Templates

Agent Research Tool

#!/bin/bash
# research.sh - Reusable research function

research() {
  local query="$1"

  # Search
  local results=$(infsh app run tavily/search-assistant --input "{\"query\": \"$query\"}")

  # Analyze
  infsh app run openrouter/claude-haiku-45 --input "{
    \"prompt\": \"Summarize: $results\"
  }"
}

research "your query here"

Related Skills

# Web search tools
npx skills add inference-sh/skills@web-search

# LLM models
npx skills add inference-sh/skills@llm-models

# Content pipelines
npx skills add inference-sh/skills@ai-content-pipeline

# Full platform skill
npx skills add inference-sh/skills@inference-sh

Browse all apps: infsh app list

Documentation

安全使用建议
This skill appears to do what it claims (compose RAG pipelines via the infsh CLI), but be cautious before running the suggested installer command. Prefer to: 1) Inspect the installer script at https://cli.inference.sh and the referenced dist.inference.sh host before executing; 2) download the binary and verify its SHA-256 checksum manually rather than piping to sh; 3) run the installer in an isolated environment (container or VM) if possible; 4) confirm where infsh stores API keys and only provide least-privilege credentials (use provider-specific API keys, not broad account credentials); and 5) if you need higher assurance, ask the publisher for a link to reproducible build/release artifacts (e.g., GitHub releases with signed checksums) or more details on authentication and data flows.
功能分析
Type: OpenClaw Skill Name: ai-rag-pipeline Version: 0.1.5 The skill bundle is designed for RAG pipelines and uses the `inference.sh` CLI. It grants broad `Bash(infsh *)` permissions, allowing the agent to execute any `infsh` command. The primary concern is a significant prompt/shell injection vulnerability identified in `SKILL.md`. User-controlled input (`$query`) and API responses (`$results`) are directly interpolated into shell commands that construct JSON payloads for `infsh app run` (e.g., in the `research.sh` template and other examples). This lack of sanitization could allow an attacker to manipulate `infsh` command arguments or potentially execute arbitrary shell commands if the injection breaks out of the `infsh` context. While this is a critical vulnerability, there is no evidence of intentional malicious activity like data exfiltration or backdoor installation.
能力评估
Purpose & Capability
The name, description, and SKILL.md consistently describe building RAG pipelines using the inference.sh (infsh) CLI and composing search/extraction apps with LLMs; required capabilities map to the described tools and examples.
Instruction Scope
Runtime instructions are narrowly focused on using infsh to run search/extract/LLM apps and composing outputs; they do not ask the agent to read arbitrary host files or unrelated credentials. However, the examples instruct running a remote installer (curl | sh) and expect the user/agent to authenticate via 'infsh login' without detailing where credentials are stored or how they're used.
Install Mechanism
There is no platform install spec, but SKILL.md directs users to 'curl -fsSL https://cli.inference.sh | sh' and references binaries hosted at dist.inference.sh. This is a remote-download-and-execute pattern from a domain that is not an obviously well-known release host (e.g., GitHub releases). Although the doc claims SHA-256 checksums are available, the example pipes to sh without demonstrating verification — that increases supply-chain risk.
Credentials
The skill declares no required env vars or credentials, which is consistent with being instruction-only. In practice the described workflows use OpenRouter-hosted LLMs and third-party search/extract services that will require API keys or an 'infsh' login. The skill does not enumerate or justify those credentials, making it unclear what credentials the agent/user must provide or where they are stored.
Persistence & Privilege
The skill does not request persistent privileges (always:false) and is instruction-only with no code written by the registry. It does not modify other skills or system-wide settings in its instructions.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-rag-pipeline
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-rag-pipeline 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.5
ai-rag-pipeline 0.1.5 - Added comprehensive SKILL.md with detailed usage instructions, pipeline patterns, and best practices. - Clarified available tools, models, and their applications. - Provided multiple hands-on examples for search+LLM, multi-source research, fact-checking, and report generation. - Included tips for query optimization, context management, source attribution, and iterative research. - Offered pipeline templates and related skills for easy integration.
v0.1.0
Initial release of ai-rag-pipeline: Build Retrieval Augmented Generation (RAG) pipelines with web search and LLMs. - Provides RAG pipeline patterns for research, fact-checking, and knowledge retrieval - Integrates multiple search, extraction, and LLM tools: Tavily, Exa, Claude, GPT-4, Gemini (via OpenRouter) - Includes Bash-based pipeline recipes and best practices for query optimization, context management, and source attribution - Offers example pipelines for multi-source research, fact-checking, and report generation - Features links to related skills and further documentation for agent tool integration
元数据
Slug ai-rag-pipeline
版本 0.1.5
许可证
累计安装 4
当前安装数 4
历史版本数 2
常见问题

Ai Rag Pipeline 是什么?

Build RAG (Retrieval Augmented Generation) pipelines with web search and LLMs. Tools: Tavily Search, Exa Search, Exa Answer, Claude, GPT-4, Gemini via OpenRo... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1299 次。

如何安装 Ai Rag Pipeline?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-rag-pipeline」即可一键安装,无需额外配置。

Ai Rag Pipeline 是免费的吗?

是的,Ai Rag Pipeline 完全免费(开源免费),可自由下载、安装和使用。

Ai Rag Pipeline 支持哪些平台?

Ai Rag Pipeline 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ai Rag Pipeline?

由 Ömer Karışman(@okaris)开发并维护,当前版本 v0.1.5。

💬 留言讨论