← 返回 Skills 市场
ajawpwinner-del

Awesome Obsidian

作者 ajawpwinner-del · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
96
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install awesome-obsidian
功能描述
Obsidian 个人知识管理工作流。基于 PARA 方法 + 自动化工具链。用于:(1) 整理 Obsidian 库结构和命名规范 (2) Git 同步管理 (3) 每日时间线记录 (4) 插入手绘风格图表 (5) 从小艺帮记收藏整理笔记。触发词:Obsidian、笔记整理、库整理、daily log、时间线、...
使用说明 (SKILL.md)

Awesome Obsidian - 个人知识管理工作流

基于 PARA 方法 + 自动化工具链的 Obsidian 工作流。

文件夹结构(PARA)

obsidian-vault/
├── inbox/              # 快速收集,临时笔记
├── projects/           # 活跃项目(有明确开始/结束)
├── areas/              # 持续关注的领域
├── resources/          # 长期参考笔记
├── archive/            # 归档(已完成项目)
├── journal/            # 日记(YYYY-MM-DD.md)
└── assets/             # 资源文件

工具链

Skill 用途
obsidian-git-vault Git 同步管理
obsidian-organizer 库整理与命名规范
obsidian-daily-log 每日时间线记录
excalidraw-handdraw 手绘风格图表

日常工作流

1. 快速收集 → inbox/

新想法、临时笔记先丢进 inbox/,定期整理。

2. 每日记录 → journal/

使用 obsidian-daily-log 记录时间线:

## Timeline

- 09:00 — 开始工作
- 10:30 — 完成文档整理
- 14:00 — 会议讨论

3. 定期整理

  • 每周:整理 inbox,移动到正确位置
  • 每月:归档完成的项目

4. Git 同步

git pull
git add . && git commit -m "update: 笔记更新"
git push origin main

命名规范

中文笔记(优先)

  • 中文标题.md
  • 2026-04-21-会议纪要.md

英文笔记

  • kebab-case.md
  • YYYY-MM-DD.md

避免

  • 特殊符号、emoji 表情
  • Finalv2new 等无意义后缀

美化技巧

插入手绘图表

使用 excalidraw-handdraw 在笔记中插入手绘风格图表。

Obsidian 主题推荐

  • Minimal - 极简干净
  • Things - 温暖舒适
  • AnuPpuccin - 多彩可爱

安装:设置 → 外观 → 主题 → 浏览

自动化脚本

审计命名

python scripts/obsidian_audit.py \x3Cvault-path>

应用修复

python scripts/obsidian_audit.py \x3Cvault-path> --apply

最佳实践

  1. 一个笔记一个主题
  2. 及时整理 inbox
  3. [[]] 连接相关笔记
  4. 定期回顾笔记
  5. Git 提交 + 远程同步

⚠️ 整理规则

禁止修改人物原话

  • 整理笔记时,绝不修改、简化或意译人物的发言原话
  • 引用、演讲、声明、采访内容必须保持原文
  • 包括标点符号、语气词、停顿等细节
  • 如需概括,应在引用块之外单独撰写摘要

详细参考


📱 手机端查看

方案:出境易 + Obsidian Git 插件

在鸿蒙手机上使用 出境易 安装 Obsidian,配合 Git 插件同步笔记。

配置步骤

1. 安装应用

  • 在应用市场下载 出境易
  • 通过出境易安装 Obsidian

2. 安装 Git 插件

  • 打开 Obsidian → 设置 → 第三方插件
  • 浏览社区插件,搜索 「Git」
  • 安装并启用

3. 克隆仓库

  1. 打开命令面板(左下角菜单)
  2. 搜索 「Git: Clone an existing remote repo」
  3. 输入你的仓库地址:
    https://oauth2:[email protected]/username/repo.git
    

    将 YOUR_TOKEN 替换为你的访问令牌,仓库地址替换为你的实际地址

  4. 选择保存目录(如 Obsidian
  5. 克隆深度留空(完整克隆)

4. 配置认证

在 Git 插件设置中:

  • Username:GitCode 用户名
  • Password/Token:访问令牌

5. 日常同步

  • 拉取:命令面板 → Git: Pull
  • 推送:命令面板 → Git: Commit and sync

注意事项

  • 克隆时会删除本地 .obsidian 配置
  • 建议在 WiFi 环境下同步
  • 如遇冲突,手动解决后再提交
安全使用建议
This package appears to be a coherent Obsidian workflow, but review before using: 1) SKILL.md references helper scripts (obsidian_audit.py, start-canvas.sh, export-canvas.sh, save-to-file.sh) that are not included — expect missing functionality. 2) Avoid cloning with 'https://oauth2:TOKEN@host/...' since that stores the token in git configs and can leak it; use a credential helper, deploy key, or personal access token stored securely with least privilege. 3) Inspect and test quick_sync.sh: it runs 'git add . && git commit && git push' and will commit everything in the vault — add/verify a .gitignore to prevent sensitive files (e.g., credentials, local plugin config) from being pushed. 4) Be cautious about the suggested cron auto-sync; automated pushes increase risk of leaking accidental secrets and may overwrite local configs. 5) Set OBSIDIAN_VAULT to a safe path before running scripts; the bundled defaults point to a workspace path that may not match your environment. 6) If you need the audit or canvas functionality, request the missing scripts from the author or obtain trusted implementations. If you plan to install/use this skill, prefer manual review and conservative git credential practices (credential helpers, SSH deploy keys, limited-scope tokens) and run scripts in a controlled environment first.
功能分析
Type: OpenClaw Skill Name: awesome-obsidian Version: 1.0.0 The skill bundle provides a comprehensive workflow for Obsidian note management using the PARA method and Git synchronization. It includes utility scripts like `scripts/create_daily_note.sh` and `scripts/quick_sync.sh` for automating routine tasks. While the documentation in `SKILL.md` suggests using Git tokens in URLs (a security risk) and references some missing scripts (e.g., `obsidian_audit.py`), the provided code and instructions are entirely consistent with the stated purpose of personal knowledge management and show no signs of malicious intent or unauthorized data access.
能力评估
Purpose & Capability
Name/description (Obsidian PARA workflow, daily notes, git sync, hand-drawn diagrams) align with the included assets: templates, PARA docs, and two utility scripts (create_daily_note.sh, quick_sync.sh). Nothing in the manifest requests unrelated credentials or system access.
Instruction Scope
SKILL.md instructs use of several tools and scripts that are not present in the package (references to scripts like scripts/obsidian_audit.py, start-canvas.sh, export-canvas.sh, save-to-file.sh). It also shows cloning with an inline OAuth token in the repo URL and recommends cron auto-sync and a blanket git add/commit/push workflow — these instructions can cause tokens to be stored in repo configs or accidentally commit sensitive files. The two included scripts themselves (quick_sync.sh) will add/commit/push everything in the vault without filtering, which may be undesirable.
Install Mechanism
Instruction-only skill with no install spec and only two small shell scripts — no downloads or extract operations. Low install surface.
Credentials
No required environment variables or credentials declared. The scripts honor an optional OBSIDIAN_VAULT env var (reasonable). However SKILL.md advises pasting an OAuth token into a clone URL (https://oauth2:YOUR_TOKEN@host/...), which can store the token in .git/config and leak it; the quick_sync.sh will push whatever is present in the vault, potentially leaking sensitive files. The number of explicit credential requests is low but the suggested workflows are risky if followed without safeguards.
Persistence & Privilege
The skill does not request always:true, does not modify other skills, and has no install-time persistence. The quick_sync.sh and cron examples can cause ongoing repository changes if the user enables them, but that is local action initiated by the user.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install awesome-obsidian
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /awesome-obsidian 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Awesome Obsidian 1.0.0 – 初始发布 - 基于 PARA 方法设计 Obsidian 个人知识管理工作流 - 包含目录结构、命名规范与定期整理流程 - 工具链涵盖 Git 同步、笔记库整理、每日记录与手绘图表 - 提供自动化审计及命名修复脚本 - 移动端同步配置详细说明 - 强调原话整理合规与知识管理最佳实践
元数据
Slug awesome-obsidian
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Awesome Obsidian 是什么?

Obsidian 个人知识管理工作流。基于 PARA 方法 + 自动化工具链。用于:(1) 整理 Obsidian 库结构和命名规范 (2) Git 同步管理 (3) 每日时间线记录 (4) 插入手绘风格图表 (5) 从小艺帮记收藏整理笔记。触发词:Obsidian、笔记整理、库整理、daily log、时间线、... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 96 次。

如何安装 Awesome Obsidian?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install awesome-obsidian」即可一键安装,无需额外配置。

Awesome Obsidian 是免费的吗?

是的,Awesome Obsidian 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Awesome Obsidian 支持哪些平台?

Awesome Obsidian 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Awesome Obsidian?

由 ajawpwinner-del(@ajawpwinner-del)开发并维护,当前版本 v1.0.0。

💬 留言讨论