eo-ability-rag

RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索

3,891 stars

Best use case

eo-ability-rag is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索

Teams using eo-ability-rag should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/eo-ability-rag/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/467718584/eo-ability-rag/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/eo-ability-rag/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How eo-ability-rag Compares

Feature / Agenteo-ability-ragStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# eo-ability-rag

> RAG 知识共享能力 - 跨项目共享知识,避免重复造轮子

## 一句话介绍

基于RAG架构的知识共享能力,跨项目共享专家经验和最佳实践,语义搜索快速检索。

## 核心功能

- **知识索引**: 自动索引专家经验和最佳实践
- **语义搜索**: 自然语言查询相关知识
- **经验共享**: 跨项目共享成功经验
- **持续学习**: 从使用中自动更新知识库

## 使用方法

### 索引知识

```bash
# 自动索引(由 EO 自动触发)
索引: "Architect 专家在博客系统项目中的架构设计经验"
索引: "最佳实践:电商平台的缓存策略"

# 手动索引
/索引 "安全审计的 PCI-DSS 检查清单"
```

### 搜索知识

```bash
# 搜索相关知识
搜索: "博客系统的架构设计模式"
搜索: "学术论文的方法论设计"
搜索: "电商营销的内容策略"

# 基于专家搜索
搜索: "小红书策略师的种草内容经验"
```

### 共享知识

```bash
# 标记为可共享
共享: "本次项目中学到的架构设计经验"
来源: "博客系统项目"
专家: "Architect"
```

## 与EO插件的协同

- 被所有 eo-workflow-* 调用
- 使用 LanceDB(插件版)或简单索引(独立版)
- 被案例3(电商营销运营)使用

## 独立运行模式(有EO vs 无EO)

| 模式 | 能力 |
|------|------|
| **有EO插件** | LanceDB向量索引、语义搜索、跨会话知识持久化 |
| **无插件(基础)** | 简单关键词索引、基础全文搜索 |

## 示例

```typescript
// 用户需要设计博客系统架构
const knowledge = await eo_ability_rag({
  action: 'search',
  query: '博客系统架构设计最佳实践'
})
// → 返回相关的架构模式、设计经验

// 使用知识辅助设计
const arch = await eo_ability_architect({
  task: '设计博客系统',
  useKnowledge: knowledge.results
})
```

## Interface

### Input

```typescript
interface RAGInput {
  action: 'index' | 'search' | 'share' | 'learn' | 'stats'
  content?: string           // 要索引的内容
  query?: string            // 搜索查询
  expert?: string           // 专家领域
  project?: string          // 项目名称
}
```

### Output

```typescript
interface RAGOutput {
  results: KnowledgeEntry[]
  relevance: number[]
  sources: string[]
  totalIndexed: number
}
```

---

*🦞⚙️ 钢铁龙虾军团*

Related Skills

afrexai-observability-engine

3891
from openclaw/skills

Complete observability & reliability engineering system. Use when designing monitoring, implementing structured logging, setting up distributed tracing, building alerting systems, creating SLO/SLI frameworks, running incident response, conducting post-mortems, or auditing system reliability. Covers all three pillars (logs/metrics/traces), alert design, dashboard architecture, on-call operations, chaos engineering, and cost optimization.

ESG & Sustainability Reporting Framework

3891
from openclaw/skills

You are an ESG reporting specialist. Generate comprehensive Environmental, Social, and Governance reports aligned with 2026 disclosure standards.

Workflow & Productivity

Agent Observability & Monitoring

3891
from openclaw/skills

Score, monitor, and troubleshoot AI agent fleets in production. Built for ops teams running 1-100+ agents.

stability-ai

3891
from openclaw/skills

Generate high-quality images via Stability AI API (SDXL, SD3, Stable Image Core). Use when user asks to "generate image", "make a picture", or "draw this".

Content & Documentation

eo-ability-plan

3891
from openclaw/skills

项目规划能力,调用Planner专家生成WBS任务分解、里程碑计划、团队组成

eo-ability-multi-expert

3891
from openclaw/skills

多专家编排能力(Multi-Expert Orchestrator),协调多个专家并行/串行工作,结果自动汇流

eo-ability-memory

3891
from openclaw/skills

主动记忆能力(Proactive Memory),跨会话延续用户偏好、项目上下文,记住导师要求和格式规范

eo-ability-dream

3891
from openclaw/skills

自我进化能力(Dream Module),空闲时自动分析失败案例,学习新模式,更新Pattern库

eo-ability-code-review

3891
from openclaw/skills

代码审查能力,调用CodeReviewer专家进行安全、性能、风格全面审查,输出问题列表和改进建议

eo-ability-architect

3891
from openclaw/skills

架构设计能力,调用Architect专家设计系统架构、技术选型、风险评估

agent-portability-checker

3891
from openclaw/skills

Audit agent skills for platform lock-in and cross-agent compatibility. Use when checking if a skill is portable, making a skill work across multiple agents (OpenClaw, Claude Code, Codex, etc.), fixing hardcoded paths, or preparing a skill for multi-platform distribution. Checks for hardcoded platform paths, missing env var support, and platform-specific dependencies.

ai-vulnerability-tracker

3891
from openclaw/skills

AI 漏洞追踪器 - 在 GitHub 和微信公众号搜索近一个月的 AI 相关漏洞(提示词注入、提示词越狱等),并推送到飞书表格。支持去重和翻译。 搜索关键字: prompt injection, prompt jailbreak, LLM vulnerability, AI security, adversarial prompt, jailbreak attack 数据源: - GitHub: 最近一个月的安全漏洞提交 - 微信公众号: AI 安全相关文章 使用方式: - 运行技能执行一次搜索和推送 - 配置 cron 进行定时执行