用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zhaixin244-wq/fnw --skill rag-remember命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Autonomous iterative research loop. Takes a topic, runs web searches, fetches sources, synthesizes findings, and files everything into the wiki as structured pages. Based on Karpathy's autoresearch pattern: program.md configures objectives and constraints, the loop runs until depth is reached, output goes directly into the knowledge base. Triggers on: "/autoresearch", "autoresearch", "research [topic]", "deep dive into [topic]", "investigate [topic]", "find everything about [topic]", "research and file", "go research", "build a wiki on".
Visual layer of the wiki. Add images, text cards, PDFs, and wiki pages to Obsidian canvas files with auto-positioning inside zones. Integrates with /banana for image capture. Triggers on: /canvas, canvas new, canvas add image, canvas add text, canvas add pdf, canvas add note, canvas zone, canvas list, canvas from banana, add to canvas, put this on the canvas, open canvas, create canvas.
Use when running RTL lint checks. Triggers on 'lint', 'verilator', 'verible', 'spyglass', '语法检查', '可综合性', '组合环路', 'latch检查', 'rtl lint', 'lint检查'. Supports multiple EDA tools with auto-detection.
基于 SOC 职业分类
正在显示 SKILL.md
| name | rag-remember |
| description | Store a fact, decision, or observation into the personal LightRAG knowledge graph immediately |
| version | 1.0.0 |
| model | sonnet |
| triggers | ["/rag-remember","remember this","save this to memory"] |
Store a specific fact, decision, or observation into your personal LightRAG knowledge graph. Use mid-session when something worth remembering comes up.
Format each entry as:
[TYPE] Title — YYYY-MM-DD
What: Brief description of the fact or decision
Why: The reasoning or context behind it
Files: Relevant file paths (if applicable)
| Type | Use for |
|---|---|
DECISION | Architecture choices, tool selections, approach decisions |
FEEDBACK | User corrections, preferences, "do this / don't do that" |
CONFIG | Server settings, env vars, ports, credentials (NO actual secrets) |
PROJECT | Project status, goals, deadlines, stakeholders |
PERSON | People, roles, contact preferences, working styles |
REFERENCE | URLs, docs, external resources, where to find things |
INSIGHT | Debugging lessons, performance findings, non-obvious learnings |
node -e "
const BASE = process.env.LIGHTRAG_SERVER_URL || 'http://YOUR_LIGHTRAG_HOST:YOUR_PERSONAL_PORT';
(async () => {
const auth = await fetch(BASE + '/auth-status').then(r => r.json());
const token = auth.access_token;
const res = await fetch(BASE + '/documents/text', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + token
},
body: JSON.stringify({
file_source: '[TYPE] Title — YYYY-MM-DD',
text: 'Full content here with What/Why/Files structure'
})
});
const data = await res.json();
console.log('Status:', res.status);
})();
"
git log / git blame insteadYOUR_LIGHTRAG_HOST:YOUR_PERSONAL_PORT/auth-status (guest/disabled mode)LIGHTRAG_SERVER_URL