save
現在の会話や回答、洞察を構造化されたノートとしてObsidianに保存し、チャット内容を分析して適切なノート形式でWikiフォルダに整理、インデックスやログを更新することで、情報を効率的に管理・活用するSkill。
📜 元の英語説明(参考)
Save the current conversation, answer, or insight into the Obsidian wiki vault as a structured note. Analyzes the chat, determines the right note type, creates frontmatter, files it in the correct wiki folder, and updates index, log, and hot cache. Triggers on: "save this", "save that answer", "/save", "file this", "save to wiki", "save this session", "file this conversation", "keep this", "save this analysis", "add this to the wiki".
🇯🇵 日本人クリエイター向け解説
現在の会話や回答、洞察を構造化されたノートとしてObsidianに保存し、チャット内容を分析して適切なノート形式でWikiフォルダに整理、インデックスやログを更新することで、情報を効率的に管理・活用するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o save.zip https://jpskill.com/download/10555.zip && unzip -o save.zip && rm save.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10555.zip -OutFile "$d\save.zip"; Expand-Archive "$d\save.zip" -DestinationPath $d -Force; ri "$d\save.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
save.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
saveフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
save: 会話を Wiki に保存する
優れた回答や洞察は、チャットの履歴に埋もれてしまうべきではありません。このスキルは、議論された内容を永続的な Wiki ページとして保存します。
Wiki は蓄積されます。頻繁に保存しましょう。
ノートタイプの決定
会話の内容から最適なタイプを決定します。
| タイプ | フォルダ | 使用場面 |
|---|---|---|
| synthesis | wiki/questions/ | 複数ステップの分析、比較、または特定の質問への回答 |
| concept | wiki/concepts/ | アイデア、パターン、またはフレームワークの説明または定義 |
| source | wiki/sources/ | セッションで議論された外部資料の要約 |
| decision | wiki/meta/ | 行われたアーキテクチャ、プロジェクト、または戦略的な決定 |
| session | wiki/meta/ | 完全なセッションの要約:議論されたすべての内容をキャプチャ |
ユーザーがタイプを指定した場合は、それを使用します。そうでない場合は、内容に基づいて最適なものを選択します。迷った場合は、synthesis を使用します。
保存ワークフロー
- 現在の会話をスキャンします。保存する価値のある最も重要なコンテンツを特定します。
- (まだ名前がない場合は)質問します:「このノートを何と呼びますか?」名前は短く、説明的なものにしてください。
- 上の表を使用してノートのタイプを決定します。
- 会話から関連するすべてのコンテンツを抽出します。宣言的な現在形で書き直します(「ユーザーが質問した」ではなく、実際のコンテンツ自体)。
- 正しいフォルダに、完全な frontmatter を使用してノートを作成します。
- リンクを収集します:会話で言及された Wiki ページを特定します。それらを frontmatter の
relatedに追加します。 wiki/index.mdを更新します。関連するセクションの先頭に新しいエントリを追加します。wiki/log.mdに追加します。一番上に新しいエントリを追加します:## [YYYY-MM-DD] save | ノートのタイトル - Type: [ノートのタイプ] - Location: wiki/[フォルダ]/ノートのタイトル.md - From: [簡単なトピックの説明]に関する会話- 新しい追加を反映するように
wiki/hot.mdを更新します。 - 確認します:「[[ノートのタイトル]] として wiki/[フォルダ]/ に保存しました。」
Frontmatter テンプレート
---
type: <synthesis|concept|source|decision|session>
title: "ノートのタイトル"
created: YYYY-MM-DD
updated: YYYY-MM-DD
tags:
- <関連するタグ>
status: developing
related:
- "[[言及された Wiki ページ]]"
sources:
- "[[.raw/source-if-applicable.md]]"
---
question タイプの場合は、以下を追加します。
question: "質問された元のクエリ。"
answer_quality: solid
decision タイプの場合は、以下を追加します。
decision_date: YYYY-MM-DD
status: active
書き方
- 宣言的な現在形。会話ではなく、知識を記述します。
- 不可:「ユーザーが X について質問し、Claude が説明した...」
- 可:「X は Y を行うことで機能します。重要な洞察は Z です。」
- 関連するすべてのコンテキストを含めます。将来のセッションで、このページを初めて読むことができるようにする必要があります。
- 言及されたすべての概念、エンティティ、または Wiki ページを wikilink でリンクします。
- 該当する場合はソースを引用します:
(Source: [[Page]])。
保存するものとスキップするもの
保存:
- 自明ではない洞察または統合
- 根拠のある決定
- 多大な労力を要した分析
- 再度参照される可能性が高い比較
- 調査結果
スキップ:
- 機械的な Q&A(明らかな回答のあるルックアップの質問)
- 他の場所で既に文書化されているセットアップ手順
- 永続的な洞察のない一時的なデバッグセッション
- Wiki に既にあるもの
Wiki に既にある場合は、重複を作成する代わりに、既存のページを更新します。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
save: File Conversations Into the Wiki
Good answers and insights shouldn't disappear into chat history. This skill takes what was just discussed and files it as a permanent wiki page.
The wiki compounds. Save often.
Note Type Decision
Determine the best type from the conversation content:
| Type | Folder | Use when |
|---|---|---|
| synthesis | wiki/questions/ | Multi-step analysis, comparison, or answer to a specific question |
| concept | wiki/concepts/ | Explaining or defining an idea, pattern, or framework |
| source | wiki/sources/ | Summary of external material discussed in the session |
| decision | wiki/meta/ | Architectural, project, or strategic decision that was made |
| session | wiki/meta/ | Full session summary: captures everything discussed |
If the user specifies a type, use that. If not, pick the best fit based on the content. When in doubt, use synthesis.
Save Workflow
- Scan the current conversation. Identify the most valuable content to preserve.
- Ask (if not already named): "What should I call this note?" Keep the name short and descriptive.
- Determine note type using the table above.
- Extract all relevant content from the conversation. Rewrite it in declarative present tense (not "the user asked" but the actual content itself).
- Create the note in the correct folder with full frontmatter.
- Collect links: identify any wiki pages mentioned in the conversation. Add them to
relatedin frontmatter. - Update
wiki/index.md. Add the new entry at the top of the relevant section. - Append to
wiki/log.md. New entry at the TOP:## [YYYY-MM-DD] save | Note Title - Type: [note type] - Location: wiki/[folder]/Note Title.md - From: conversation on [brief topic description] - Update
wiki/hot.mdto reflect the new addition. - Confirm: "Saved as [[Note Title]] in wiki/[folder]/."
Frontmatter Template
---
type: <synthesis|concept|source|decision|session>
title: "Note Title"
created: YYYY-MM-DD
updated: YYYY-MM-DD
tags:
- <relevant-tag>
status: developing
related:
- "[[Any Wiki Page Mentioned]]"
sources:
- "[[.raw/source-if-applicable.md]]"
---
For question type, add:
question: "The original query as asked."
answer_quality: solid
For decision type, add:
decision_date: YYYY-MM-DD
status: active
Writing Style
- Declarative, present tense. Write the knowledge, not the conversation.
- Not: "The user asked about X and Claude explained..."
- Yes: "X works by doing Y. The key insight is Z."
- Include all relevant context. Future sessions should be able to read this page cold.
- Link every mentioned concept, entity, or wiki page with wikilinks.
- Cite sources where applicable:
(Source: [[Page]]).
What to Save vs. Skip
Save:
- Non-obvious insights or synthesis
- Decisions with rationale
- Analyses that took significant effort
- Comparisons that are likely to be referenced again
- Research findings
Skip:
- Mechanical Q&A (lookup questions with obvious answers)
- Setup steps already documented elsewhere
- Temporary debugging sessions with no lasting insight
- Anything already in the wiki
If it's already in the wiki, update the existing page instead of creating a duplicate.