소스 정보
- 저장소
- clowlove/Hermes-House
- 최근 소스 활동
- 2026년 6월 27일 14:01
- 감지된 SKILL.md 언어
- 영어
- 스타
- 14
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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