用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill obsidian-vault-pipeline命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | obsidian-vault-pipeline |
| description | | Use when this capability is needed. |
此 skill 用于帮助用户运行 Obsidian Vault Pipeline 自动化知识管理流程。
pip install obsidian-vault-pipeline
Pipeline 自动检测 vault 位置(按优先级):
cwd--vault-dir 参数** - 显式指定VAULT_DIR最佳实践:
cd /path/to/my-vault # 进入 vault 目录
ovp --check # 检查环境
ovp --full # 运行完整 pipeline
| 命令 | 说明 |
|---|---|
ovp --check | 检查环境配置 |
ovp --init | 初始化配置(交互式) |
ovp --full | 运行完整 pipeline |
ovp-article --process-inbox | 处理 50-Inbox/01-Raw/ 中的文章 |
ovp-evergreen --recent 7 | 提取最近7天的 Evergreen 笔记 |
ovp-moc --scan | 扫描并更新 MOC 索引 |
ovp-quality --recent 7 | 质量检查 |
# 进入 vault 目录
cd my-vault
# 检查环境
ovp --check
# 如果提示未配置,运行初始化
ovp --init
# 放入新文章到 50-Inbox/01-Raw/
cp article.md my-vault/50-Inbox/01-Raw/
# 运行 pipeline
ovp --full
# 5层一致性检查
./60-Logs/scripts/check-consistency.sh
# 自动修复低风险问题
./60-Logs/scripts/repair.sh --auto
在 vault 根目录创建 .env:
AUTO_VAULT_API_KEY=your_api_key
AUTO_VAULT_API_BASE=https://api.minimaxi.com/anthropic
AUTO_VAULT_MODEL=minimax/MiniMax-M2.5
| 用户说 | 执行命令 |
|---|---|
| "运行 WIGS 流程" | ./60-Logs/scripts/check-consistency.sh |
| "整理 Obsidian" | ovp --full |
| "处理文章" | ovp-article --process-inbox |
| "提取 Evergreen" | ovp-evergreen --recent 7 |
| "更新 MOC" | ovp-moc --scan |
| "质量检查" | ovp-quality --recent 7 |
| "检查一致性" | ./60-Logs/scripts/check-consistency.sh |
50-Inbox/01-Raw/ → ovp-article → 20-Areas/深度解读
20-Areas/ → ovp-evergreen → 10-Knowledge/Evergreen/
20-Areas/ → ovp-moc → 10-Knowledge/Atlas/MOC-*.md
| 错误 | 解决方案 |
|---|---|
| API Key 未配置 | ovp --init |
| .env 未找到 | 在 vault 目录创建 .env |
| 找不到 vault | 确保在 vault 目录运行,或用 --vault-dir 指定 |
| 文章未处理 | 检查 50-Inbox/01-Raw/ 是否存在 .md 文件 |
Source: fakechris/obsidian_vault_pipeline — distributed by TomeVault.