用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/clowlove/Hermes-House --skill obsidian命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Migrate Hermes Agent to a new server while keeping both instances running in parallel. Covers backup, SSH troubleshooting, skill/memory sync, and GitHub remote setup.
Backup, restore, and migrate Hermes Agent data across machines. Covers the local backup scripts, cron scheduling, retention policies, git remote management, shallow-clone migration, and cross-machine parallel deployment.
Modify PDF appearance without changing content/structure: change font colors, remove highlights, adjust styling. Preserves all text, layout, fonts, and embedded resources.
基于 SOC 职业分类
正在显示 SKILL.md
| name | obsidian |
| description | Read, search, and create notes in the Obsidian vault. 支持 Hermes-Wiki 知识库工作流。 |
| triggers | ["obsidian","知识库","笔记","创建概念","创建 MOC"] |
Location:
OBSIDIAN_VAULT_PATH environment variableWIKI_PATH for Hermes-Wiki (defaults to ~/Hermes-Wiki)# 环境变量
export WIKI_PATH="$HOME/Hermes-Wiki" # 默认位置
export OBSIDIAN_VAULT_PATH="$HOME/Hermes-Wiki" # Obsidian vault
Hermes-Wiki/
├── SCHEMA.md # 规范文档
├── index.md # 首页
├── log.md # 更新日志
├── raw/ # 原始资料
│ ├── articles/ # 文章
│ ├── papers/ # 论文
│ ├── transcripts/ # 文字稿
│ └── assets/ # 资源
├── concepts/ # 概念页面 (lowercase-with-hyphens.md)
├── entities/ # 实体页面 (Entity-Name.md)
├── comparisons/ # 对比分析
├── queries/ # 问答
├── moc/ # 主题地图 (moc-topic-name.md)
└── drafts/ # 草稿
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
cat "$WIKI/Note Name.md"
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
# 所有笔记
find "$WIKI" -name "*.md" -type f
# 指定目录
ls "$WIKI/concepts/"
ls "$WIKI/moc/"
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
# 按文件名
find "$WIKI" -name "*.md" -iname "*keyword*"
# 按内容
grep -rli "keyword" "$WIKI" --include="*.md"
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
cat > "$WIKI/concepts/concept-name.md" << 'EOF'
---
tags:
- concept
created: 2026-05-05
---
# Concept Name
## 定义
概念的定义。
## 核心要点
- 要点1
- 要点2
## 相关概念
- [[other-concept]]
- [[moc-topic-name]]
## 相关实体
- [[Entity-Name]]
EOF
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
cat > "$WIKI/entities/Entity-Name.md" << 'EOF'
---
tags:
- entity
- software
created: 2026-05-05
---
# Entity Name
## 简介
实体的简要介绍。
## 核心特性
1. 特性1
2. 特性2
## 使用场景
- 场景1
- 场景2
## 相关
- [[concept-name]]
EOF
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
cat > "$WIKI/moc/moc-topic-name.md" << 'EOF'
---
tags:
- moc
created: 2026-05-05
---
# Topic Name MOC
## 概述
本 MOC 整理 Topic 相关内容。
## 核心概念
- [[concept-1]]
- [[concept-2]]
## 详细笔记
### 概念
- [[concept-a]]
- [[concept-b]]
### 实体
- [[Entity-X]]
- [[Entity-Y]]
## 外部资源
- [链接](url)
EOF
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
echo "
New content here." >> "$WIKI/Existing Note.md"
Obsidian 使用 [[Note Name]] 语法创建双向链接。
[[concept-name]][[Entity-Name]][[moc-topic-name]]1. 放入文章 → raw/articles/
2. Hermes 读取 raw/
3. 自动生成 → concepts/, entities/, moc/
4. Obsidian 打开 → 查看双链网络
WIKI="${WIKI_PATH:-$HOME/Hermes-Wiki}"
cd "$WIKI"
git add .
git commit -m "update: 描述"
git push