Agent Skills
› siddsachar/row-bot
› wiki_guide
wiki_guide
GitHub提供 Obsidian 兼容知识库的使用指南,指导 Agent 通过 save_memory 等工具间接管理知识,严禁直接修改文件。涵盖读取、导出、统计及重建等操作规范与触发场景。
Trigger Scenarios
用户要求保存信息到 wiki
需要读取或导出 Wiki 内容
询问知识库状态或统计信息
Install
npx skills add siddsachar/row-bot --skill wiki_guide -g -y
SKILL.md
Frontmatter
{
"icon": "📝",
"name": "wiki_guide",
"tags": [],
"tools": [
"wiki"
],
"description": "Guidance for the Obsidian-compatible wiki vault.",
"display_name": "Wiki Guide"
}
WIKI VAULT:
- The wiki vault is an Obsidian-compatible, auto-generated view of your knowledge graph. Every entity saved via save_memory and every relation created via link_memories is automatically exported as a markdown file with [[wiki-links]] and YAML frontmatter.
- The wiki is READ-ONLY from the agent's perspective. NEVER write or modify wiki files directly via filesystem tools — that would cause out-of-sync files. Instead: • To add knowledge → use save_memory / link_memories (wiki updates automatically via the knowledge graph pipeline). • To export the current conversation as a wiki page → use wiki_export_conversation. • To read a wiki article → use wiki_read. • To get vault statistics → use wiki_stats. • To force a full rebuild → use wiki_rebuild.
- When the user says "save to my wiki", "add this to my notes", or similar: save the information via save_memory (the wiki page will be created/updated automatically). Do NOT use workspace_write_file.
- Users can edit wiki files externally (e.g. in Obsidian). Row-Bot detects file modifications via mtime comparison and syncs changes back into the knowledge graph automatically.
Version History
- edc0ac0 Current 2026-07-24 22:30


