在 Claude 裡做筆記:一個把對話原文一鍵歸檔進 Obsidian / Google Drive 的 Claude Code skill。 Take notes inside Claude — a Claude Code skill that archives your chat conversations to Obsidian / Google Drive, word-for-word.
你在跟 Claude 聊天時,常常會冒出一些值得留下來的內容。這個工具就是幫你「一句指令,把那段對話原封不動存進你的筆記庫(Google Drive / Obsidian)」,不改字、不摘要。
When you chat with Claude, useful ideas often come up. This tool lets you save that conversation into your note vault (Google Drive / Obsidian) with a single command — exactly as it was, no edits, no summaries.
以下是最近一次(2026 年 7 月)的更新重點,這個專案還在持續維護中:
Here are the highlights from the latest update (July 2026) — the project is actively maintained:
- 加入 MIT 授權條款,任何人都能自由使用與修改。
Added the MIT License — anyone can freely use and modify it. - 正式封裝成可安裝的 Claude Code skill,指令為
/note-claud。
Packaged as an installable Claude Code skill, triggered by/note-claud. - 機敏設定分離:個人的 Google Drive 資料夾資訊獨立存放,不會上傳到網路。
Sensitive settings separated: your private Google Drive info is kept local and never uploaded. - 全新中英雙語 README,並加上「快速安裝」區塊,降低上手門檻。
A new bilingual README with a Quick-Start section to make setup easier.
✅ 原汁原味,不失真 它只做「搬運」,逐字保留你和 Claude 的對話,不會自作主張幫你摘要或改寫,確保你存下來的是最原始、最完整的素材。
✅ Faithful, no distortion It only "moves" your content — keeping the conversation word-for-word. It never summarizes or rewrites on its own, so what you save is the original, complete material.
✅ 無縫接軌你的筆記庫
直接寫成 Obsidian 看得懂的 .md 檔,存進 Google Drive。你原本怎麼管理筆記,它就怎麼融入,不用改變習慣。
✅ Works with your existing vault
It writes native .md files that Obsidian reads directly, saved to Google Drive. It fits into how you already manage notes — no new habits required.
✅ 保護你的隱私 遇到個資或不該外流的內容,它會整段跳過、不寫入,並主動提醒你。
✅ Protects your privacy If it detects personal or confidential content, it skips that part entirely and warns you.
只要三個步驟就能裝好。請打開你的終端機(Terminal),依序執行下面的指令:
You can set it up in three steps. Open your terminal and run the commands below in order:
# 步驟 1:把專案複製到 Claude Code 的 skills 資料夾
# Step 1: Clone the project into your Claude Code skills folder
git clone https://github.com/kau10082/Note_Claude.git ~/.claude/skills/note-claud
# 步驟 2:進入資料夾,用範本建立你自己的設定檔
# Step 2: Enter the folder and create your own config from the template
cd ~/.claude/skills/note-claud
cp config.example.json config.local.json
# 步驟 3:打開 config.local.json,填入你的 Google Drive 資料夾 ID
# Step 3: Open config.local.json and fill in your Google Drive folder IDWindows 使用者請注意:第 1 步的路徑請改用
"$env:USERPROFILE\.claude\skills\note-claud"。
Windows note: for Step 1, use the path"$env:USERPROFILE\.claude\skills\note-claud"instead.
裝好後,重新啟動 Claude Code,就完成了!
Once installed, restart Claude Code — and you're done!
在 Claude Code 的對話框裡輸入指令 /note-claud,接著它會帶你走完整個流程:
Type the command /note-claud in Claude Code, and it will walk you through the whole process:
- 偵測主題:它會掃描你最近的對話,找出值得存檔的主題。
Detect topics: it scans your recent chats and finds archive-worthy topics. - 讓你挑選:它會列出候選清單,由你決定要存哪些。
Let you choose: it lists the candidates and lets you pick which to keep. - 原文寫入:把你選的對話原封不動存成
.md檔,放進你的 Google Drive。
Save verbatim: it writes your chosen conversation as a.mdfile into your Google Drive.
小提醒:指令名稱是
/note-claud(不是/note)。輸入/note時,系統通常會自動補全到它。
Tip: the command is/note-claud(not/note). Typing/notewill usually auto-complete to it.
專案很單純,主要就是這幾個檔案:
The project is simple — just a few files:
Note_Claude/
├── SKILL.md # 主角:指令的定義與運作流程
├── config.example.json # 設定檔範本(給大家參考用)
├── config.local.json # 你的私人設定(本機專屬,不會上傳)
├── README.md # 說明文件(就是你正在看的這份)
├── LICENSE # 授權條款(MIT)
└── .gitignore # 指定哪些檔案不要上傳
各檔案的白話說明如下:
Here's what each file does, in plain words:
SKILL.md— 這個專案的核心,告訴 Claude 收到/note-claud後該做什麼。
The heart of the project — it tells Claude what to do when it receives/note-claud.config.example.json— 設定的「空白範本」,複製它來建立你自己的設定。
A blank template for settings — copy it to create your own config.config.local.json— 你的私人設定,存放 Google Drive 資料夾資訊,只留在你電腦裡、不會上傳。
Your private settings (Google Drive folder info) — stays on your computer, never uploaded.README.md— 說明文件。
This documentation file.LICENSE— 授權條款。
The license terms..gitignore— 一份清單,指定哪些檔案(例如你的私人設定)不要被上傳。
A list telling Git which files (like your private settings) to keep off the internet.
非常歡迎你一起讓這個專案變得更好!無論是修正錯字、改善功能,還是回報問題,都幫得上忙。
You're very welcome to help make this project better! Whether it's fixing a typo, improving a feature, or reporting a bug — every bit helps.
想回報問題或提出建議? 到專案的 Issues 頁面,開一則新的 issue 說明你的想法就好。
Want to report a bug or suggest an idea? Just open a new issue on the project's Issues page and describe it.
想動手改程式? 流程很簡單:
Want to make changes yourself? The steps are simple:
- Fork 這個專案(複製一份到你自己的帳號)。
Fork this project (make a copy under your own account). - 建立一個新分支來放你的修改。
Create a new branch for your changes. - 完成後,發一個 Pull Request (PR),說明你改了什麼。
When done, open a Pull Request (PR) and describe what you changed.
本專案採用 MIT License。簡單來說:你可以自由使用、修改、散布,甚至用於商業用途,唯一的條件是保留原始的版權與授權聲明(也就是標示出處)。
This project uses the MIT License. In short: you're free to use, modify, distribute, and even use it commercially — the only condition is to keep the original copyright and license notice (i.e., give credit).