Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/luokai0/ai-agent-skills-by-luo-kai --skill eo-ability-rag명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Writers Room Story Engine mega-skill. Creates, structures, drafts, and revises compelling standalone stories from zero using premise generation, audience engagement, thematic design, character arcs, Story Spine structure, causal beats, worldbuilding in service of story, scene construction, and revision diagnostics. Use when developing short stories, standalone fiction, scripts, or narrative concepts from scratch or when improving weak drafts.
Browse Airtable bases and tables, inspect records, create records, and manage fields, comments, and table actions — powered by ClawLink.
Alibaba Cloud DNS (Alidns) CLI skill. Use to query, add, and update DNS records via aliyun-cli, including CNAME setup for Function Compute custom domains.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | eo-ability-rag |
| description | RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索 |
| metadata | {"openclaw":{"requires":{"bins":[]},"install":[]}} |
RAG 知识共享能力 - 跨项目共享知识,避免重复造轮子
基于RAG架构的知识共享能力,跨项目共享专家经验和最佳实践,语义搜索快速检索。
# 自动索引(由 EO 自动触发)
索引: "Architect 专家在博客系统项目中的架构设计经验"
索引: "最佳实践:电商平台的缓存策略"
# 手动索引
/索引 "安全审计的 PCI-DSS 检查清单"
# 搜索相关知识
搜索: "博客系统的架构设计模式"
搜索: "学术论文的方法论设计"
搜索: "电商营销的内容策略"
# 基于专家搜索
搜索: "小红书策略师的种草内容经验"
# 标记为可共享
共享: "本次项目中学到的架构设计经验"
来源: "博客系统项目"
专家: "Architect"
| 模式 | 能力 |
|---|---|
| 有EO插件 | LanceDB向量索引、语义搜索、跨会话知识持久化 |
| 无插件(基础) | 简单关键词索引、基础全文搜索 |
// 用户需要设计博客系统架构
const knowledge = await eo_ability_rag({
action: 'search',
query: '博客系统架构设计最佳实践'
})
// → 返回相关的架构模式、设计经验
// 使用知识辅助设计
const arch = await eo_ability_architect({
task: '设计博客系统',
useKnowledge: knowledge.results
})
interface RAGInput {
action: 'index' | 'search' | 'share' | 'learn' | 'stats'
content?: string // 要索引的内容
query?: string // 搜索查询
expert?: string // 专家领域
project?: string // 项目名称
}
interface RAGOutput {
results: KnowledgeEntry[]
relevance: number[]
sources: string[]
totalIndexed: number
}
🦞⚙️ 钢铁龙虾军团