📚knowledge-base
- プラグイン
- desktop-commander
- ソース
- GitHub で見る ↗
説明
Markdown形式のナレッジベースを作成・保守します。任意のAIエージェントが読み取り、検索、更新できます。 次のような場合に使用: ユーザーがナレッジベースを開始したい、ノートを追加または更新したい、エージェントやLLMが消費するためにドキュメント/ノートを整理したい、ノートのインデックスを構築したい、既存のMarkdownナレッジベースのクリーンアップ/メンテナンスを実行したい場合。 トリガーワード: 「ナレッジベース」「KB」「エージェント向けノート」「ノートのインデックス」「セカンドブレイン」「AI用コンテキストドキュメント」「ノートを追加」「KBを更新」
原文を表示
Create and maintain a Markdown knowledge base that any AI agent can read, search, and update. Use when the user wants to start a knowledge base, add or update notes, organize docs/notes for an agent or LLM to consume, build an index of notes, or run a cleanup/maintenance pass on an existing MD knowledge base. Triggers include "knowledge base", "KB", "notes for the agent", "index of notes", "second brain", "docs for AI context", "add a note", "update the KB".
ユースケース
- ✓ナレッジベースを新規作成したい
- ✓ノートを追加または更新したい
- ✓ドキュメントをAIエージェント向けに整理したい
- ✓ノートのインデックスを構築したい
- ✓既存のMarkdownナレッジベースをメンテナンスしたい
本文(日本語訳)
ナレッジベース(Markdown、agent対応)
ナレッジベース(KB)はMarkdownファイルのフォルダであり、どのAIエージェントもベクトルデータベースなしで移動できるように設計されています。エージェントは1つのインデックスファイルを読み込み、説明に基づいて関連ノートを選択し、それらのファイルだけを開きます。KB全体を読みやすく保ち、インデックスは最小限に — インデックスがコンテキストに読み込まれるため、高いシグナル価値を持つ必要があります。
新しいKBを作成する場合、ノートを追加・編集する場合、またはメンテナンスを実施する場合は、以下のルールを適用してください。ユーザーのリクエストが曖昧な場合(新規KB vs ノート追加 vs クリーンアップ)は、実行する前にどれかを確認してください。
コア原則(背景にある考え方)
-
インデックス優先のナビゲーション。 インデックスはマップであり、コンテナではありません。エージェントは
INDEX.mdを読み、ワンライン説明でノートを選択してから、それらのファイルだけを開きます。インデックスに登録されていないノートは、KB「内」に存在しません。 -
アトミック性。 1つのノート = 1つのトピック。タイトルに「と」が必要なら、おそらく2つのノートです。アトミックなノートは検索、リンク、再利用が容易です。
-
安定したID。 すべてのノートには変更されず、再利用されない永続的なIDがあり、リンクはリネームや移動に耐えられます。
-
理由付きでリンク。 2つのノートが接続される場合、なぜかを明記してください(前提条件、サポート、対比、参照)。接続はノート自体と同じくらい価値を持ちます。
-
簡潔な指示。
INDEX.mdの指示は短く、高シグナル価値を保ってください — エージェントのコンテキスト予算と競争します。本体はオンデマンドで読み込まれます。 -
検索構造。 明確なH1タイトルとH2/H3セクションにより、エージェントはノート全体ではなく関連スライスを取得できます。
フォルダ構造(トピック別ネスト)
knowledge-base/
INDEX.md # エントリポイント: 指示 + 完全なノートレジストリ
topics/
<topic>/
_topic.md # トピックマップ: このトピックがカバーする内容 + そのノート
<slug>.md # 1つのアトミックノート
assets/ # ノートで参照される画像・添付ファイル
- トピックフォルダは短い小文字の名詞(
auth,billing,deploys)です。 _topic.mdはトピックレベルのコンテンツマップ(MOC)です。短いイントロと、そのトピック内のすべてのノートへのリンクが含まれます。これは便宜的なビューです。INDEX.mdが真実の源です。
ネーミング規則
- 小文字のkebab-case、予測可能でgrepに対応:
topics/auth/session-tokens.md。 - ファイル名にスペース、大文字、日付は不可(日付はfrontmatterに記載)。
- ファイル名slugはノートの
idslug部分と一致する必要があります。
必須frontmatter(すべてのノート)
---
id: 20260618-session-tokens # IDスキーム: YYYYMMDD-slug。安定。再利用または変更不可。
title: Session tokens # 人間向けタイトル、ノートのH1でもあります
tags: [auth, security] # INDEX.mdの管理用タグリストのみ
created: 2026-06-18
updated: 2026-06-18
related: [20260618-auth-flow] # リンクされたノートのID
summary: このノートがカバーする内容を説明する1つのスキャン可能な文。
---
-
id:YYYYMMDD-slug。ソート可能、読みやすく、安定。同一日で異なるタイトルのノートはslugで区別します。同一の日付と同一のslugで衝突する2つのノートがある場合、-2,-3, … を追加します(割り当てる前にINDEX.mdレジストリを確認してください)。一度割り当てられたら、idは永続的です。 -
summary: この正確な文がインデックスレジストリに掲載されます — エージェントがノートを開くかどうかを判断するのに役立つように書いてください。 -
updated: 本文が変更されるたびにバンプしてください。
ノート本文の形式
# Session tokens
> Summary: 1文(frontmatter summaryを反映)。
## Context
このノートが存在する理由 / いつ適用されるか。
## Details
実際のコンテンツ、短いH2/H3セクション。
## Related
- [Auth flow](auth-flow.md) — 前提条件: トークンは認証フロー中に発行されます。
- [Rate limiting](../api/rate-limiting.md) — 参照: トークンはレート制限キーを含みます。
- ノート間で相対リンクを使用し、フレーズで関係を注釈付けします。
- すべてのリンク対象は、ノートの
relatedfrontmatterにも表示される必要があります。
INDEX.md(唯一の真実の源)
INDEX.md には2つの部分があります。エージェント向けの操作指示とレジストリです。
# ナレッジベース — インデックス
## このKBの使い方(エージェント向け)
1. まずこのインデックスを読んでください。説明でノートを選択してから、それらだけを開いてください。
2. 質問に答えるために、すべてをスキャンするのではなく、1~3個の特定のノートを開くことを優先してください。
3. ノートからの情報を使用するときは、ノート `id` を引用してください。
## このKBを更新する方法(エージェント向け)
- 新しいアイデア → 新しいノートを作成します(アトミック)。同じアイデアが変更された → ノートをその場で編集し、`updated` をバンプします。
- 作成 / リネーム / 削除は、このレジストリとトピックの `_topic.md` を同じ変更で更新する**必須**です。
- 管理用語彙以下のタグのみを使用してください。新しいタグを使用する前にここに追加してください。
## 管理用タグ
`auth`, `security`, `billing`, `api`, `ops` <!-- 意図的に拡張 -->
## レジストリ
### auth
- `20260618-auth-flow` — **認証フロー** — `topics/auth/auth-flow.md` — ユーザーセッションがエンドツーエンドで確立される方法。
- `20260618-session-tokens` — **セッショントークン** — `topics/auth/session-tokens.md` — トークンの形式、ライフタイム、ローテーション。
### billing
- `20260618-invoicing` — **請求書作成** — `topics/billing/invoicing.md` — 請求書がどのように生成・送信されるか。
レジストリ行フォーマット: `id` — **タイトル** — `path` — ワンライン説明。
_topic.md(トピックマップ)
# Auth
認証、セッション、およびアクセス制御をカバーするノート。
- [認証フロー](auth-flow.md) — セッションがどのように確立されるか。
- [セッショントークン](session-tokens.md) — トークン形式、ライフタイム、ローテーション。
ワークフロー
新しいKBを作成する
- 上記のフォルダ構造用に
create_directoryします。 write_fileでINDEX.mdを、指示ブロック、空の管理用タグリスト、空のレジストリで作成します。- 最初のトピックフォルダ +
_topic.md、その後最初のノート(各々write_fileで)を追加します。 - ノートを
INDEX.mdに登録し、_topic.mdからリンクします — 変更した行だけに触れるようedit_blockを使用してください。
ノートを追加する
- トピックフォルダを選択または作成します(
list_directoryで何があるか確認)。 write_fileでノート(kebab-case slug)を完全なfrontmatterと本文形式で作成します。- クロスリンクを追加し、
relatedに反映させます。 INDEX.mdに登録し、_topic.mdでリンクします —edit_blockで同じ変更内で行います。
ノートを更新する
- 同じアイデア、新しい情報 →
edit_blockでノートをその場で更新し、updatedをバンプし、スコープが変わった場合はレジストリ行をedit_blockで更新します。 - 本当に新しいアイデア → このノートを拡張するのではなく、新しいアトミックノートを
write_fileで作成します。
メンテナンスパス(オンデマンドで実行)
テキストスキャンに start_search(ripgrep)を、存在確認に get_file_info / list_directory を使用します — これらは大規模で実行可能にします:
-
孤立ノート(受信リンクがない — 送信は関係ありません):
start_searchでKBのノートidとファイル名slugを検索し、常に存在する自己マッチ — ノート自体のファイル、INDEX.md、その_topic.md— を割り引いてください。左側に何か残っている場合は本物の受信リファレンスです。何も残らない場合 = 孤立なので、関連ノート/MOCからリンクするか、アーカイブしてください。 -
リンク切れ / ドリフト: テキストヒットから解決を推論しないでください — 文字列が存在することはファイルが存在することを意味しません。
get_file_info(またはlist_directoryper トピック)で各レジストリパスとrelated:ターゲットが存在することを確認し、ディスク上のすべてのファイルが登録されていることを確認してください。テキスト比較はタイトル/サマリー不同期部分のみに使用してください。 -
非アトミックノート: 複数のトピックをカバーするように拡張されたノート → 分割します。
-
重複: ほぼ同一のノート → マージし、1つの
idを保持し、リンクをリダイレクトします。 -
タグの蔓延:
INDEX.mdから管理用リストを読み込み、その後start_searchでfrontmattertags:行を検索し、リスト上にないタグをフラグします → 調整します。
read_multiple_files で候補を一括で取得し、edit_block で修正を適用し、変更内容をレポートしてください。
KB編集の完了前のチェックリスト
- [ ] すべての新規/変更ノートに完全で有効なfrontmatterがあります。
- [ ]
idは一意で変更されていません。ファイル名slugはid slugと一致します。 - [ ] すべてのリンクが解決され、
relatedに反映されています。 - [ ]
INDEX.mdレジストリとトピック_topic.mdが変更を反映しています。 - [ ] タグは管理用語彙からのものです。
- [ ]
updatedは変更されたすべてのノートでバンプされています。
原文(English)を表示
Knowledge Base (Markdown, agent-readable)
A knowledge base (KB) here is a folder of Markdown files designed so any AI agent can navigate it without a vector database: the agent reads one index file, picks the relevant notes by their descriptions, and opens only those. Keep the whole KB readable and the index lean — the index is what gets loaded into context, so it must be high-signal.
Apply the rules below when creating a new KB, adding/editing notes, or doing a maintenance pass. When the user's request is ambiguous (new KB vs. add note vs. cleanup), ask which one before acting.
Core principles (the "why")
- Index-first navigation. The index is a map, not a container. An agent
reads
INDEX.md, selects notes by their one-line descriptions, then opens only those files. No note is "in" the KB unless it's registered in the index. - Atomicity. One topic per note. If a title needs an "and", it's probably two notes. Atomic notes are easier to find, link, and reuse.
- Stable IDs. Every note has a permanent ID that never changes and is never reused, so links survive renames and moves.
- Linked with reason. When two notes connect, state why (prerequisite, supports, contrasts, see-also). Connections carry as much value as the notes.
- Lean instructions. Keep
INDEX.mdinstructions short and high-signal — it competes for the agent's context budget. Bodies load on demand. - Structured for retrieval. Clear H1 title and H2/H3 sections so an agent can grab the relevant slice of a note, not the whole thing.
Folder structure (nested by topic)
knowledge-base/
INDEX.md # entry point: instructions + full note registry
topics/
<topic>/
_topic.md # topic map: what this topic covers + its notes
<slug>.md # one atomic note
assets/ # images / attachments referenced by notes
- Topic folders are short, lowercase nouns (
auth,billing,deploys). _topic.mdis the topic-level map of content (MOC): a short intro plus links to every note in that topic. It is a convenience view;INDEX.mdremains the source of truth.
Naming rules
- Lowercase kebab-case, predictable and greppable:
topics/auth/session-tokens.md. - No spaces, no uppercase, no dates in filenames (dates live in frontmatter).
- The filename slug should match the note's
idslug portion.
Required frontmatter (every note)
---
id: 20260618-session-tokens # ID scheme: YYYYMMDD-slug. Stable. Never reuse or change.
title: Session tokens # human title, also the note's H1
tags: [auth, security] # only tags from the controlled list in INDEX.md
created: 2026-06-18
updated: 2026-06-18
related: [20260618-auth-flow] # IDs of linked notes
summary: One scannable sentence describing what this note covers.
---
id:YYYYMMDD-slug. Sortable, readable, stable. Different-titled same-day notes differ by slug; if two same-day notes would collide on the same slug, append-2,-3, … (check theINDEX.mdregistry before assigning). Once assigned, the id is permanent.summary: this exact sentence is what goes in the index registry — write it to help an agent decide whether to open the note.updated: bump it whenever the body changes.
Note body shape
# Session tokens
> Summary: One sentence (mirrors frontmatter summary).
## Context
Why this note exists / when it applies.
## Details
The actual content, in short H2/H3 sections.
## Related
- [Auth flow](auth-flow.md) — prerequisite: tokens are issued during the auth flow.
- [Rate limiting](../api/rate-limiting.md) — see-also: tokens carry the rate-limit key.
- Use relative links between notes and annotate the relationship in a phrase.
- Every link target should also appear in the note's
relatedfrontmatter.
INDEX.md (the single source of truth)
INDEX.md has two parts: operating instructions for agents, and the registry.
# Knowledge Base — Index
## How to use this KB (for agents)
1. Read this index first. Pick notes by their descriptions; open only those.
2. To answer a question, prefer opening 1–3 specific notes over scanning everything.
3. Cite the note `id` when you use information from it.
## How to update this KB (for agents)
- New idea → create a new note (atomic). Same idea changed → edit the note in place and bump `updated`.
- Any create / rename / delete MUST update this registry and the topic's `_topic.md` in the same change.
- Use only tags from the controlled vocabulary below; add a new tag here before using it.
## Controlled tags
`auth`, `security`, `billing`, `api`, `ops` <!-- extend deliberately -->
## Registry
### auth
- `20260618-auth-flow` — **Authentication flow** — `topics/auth/auth-flow.md` — How a user session is established end to end.
- `20260618-session-tokens` — **Session tokens** — `topics/auth/session-tokens.md` — Token format, lifetime, and rotation.
### billing
- `20260618-invoicing` — **Invoicing** — `topics/billing/invoicing.md` — How invoices are generated and sent.
Registry line format: `id` — **Title** — `path` — one-line description.
_topic.md (topic map)
# Auth
Notes covering authentication, sessions, and access control.
- [Authentication flow](auth-flow.md) — how a session is established.
- [Session tokens](session-tokens.md) — token format, lifetime, rotation.
Workflows
Create a new KB
create_directoryfor the folder structure above.write_fileINDEX.mdwith the instructions block, an empty controlled-tag list, and an empty registry.- Add the first topic folder +
_topic.md, then the first note (each viawrite_file). - Register the note in
INDEX.mdand link it from_topic.md—edit_blockboth so you touch only the changed lines.
Add a note
- Pick or create the topic folder (
list_directoryto see what's there). write_filethe note (kebab-case slug) with full frontmatter and the body shape.- Add cross-links (and mirror them in
related). - Register it in
INDEX.mdand link it in_topic.mdwithedit_block— same change.
Update a note
- Same idea, new information →
edit_blockthe note in place, bumpupdated, andedit_blockthe registry line if the scope changed. - Genuinely new idea →
write_filea new atomic note instead of expanding this one.
Maintenance pass (run on demand)
Use start_search (ripgrep) for text scans and get_file_info / list_directory
for existence checks — together they make this tractable at scale:
- Orphans (no inbound links — outbound doesn't matter):
start_searchthe KB for the note'sidand filename slug, then discount the self-matches that always exist — the note's own file,INDEX.md, and its_topic.md. Anything left is a genuine inbound reference; nothing left = orphan, so link it from a relevant note/MOC or archive it. - Broken links / drift: don't infer resolution from a text hit — a string
existing doesn't mean the file does. Confirm each registry path and
related:target exists withget_file_info(orlist_directoryper topic), and that every file on disk is registered. Use a text compare only for the titles/summaries-out-of-sync half. - Non-atomic notes: notes that grew to cover multiple topics → split them.
- Duplicates: near-identical notes → merge, keep one
id, redirect links. - Tag sprawl: read the controlled list from
INDEX.md, thenstart_searchthe frontmattertags:lines and flag any tag not on the list → reconcile. Pull candidates in bulk withread_multiple_files, apply fixes withedit_block, and report what changed.
Checklist before finishing any KB edit
- [ ] Every new/changed note has complete, valid frontmatter.
- [ ]
idis unique and unchanged; filename slug matches the id slug. - [ ] All links resolve and are mirrored in
related. - [ ]
INDEX.mdregistry and the topic_topic.mdreflect the change. - [ ] Tags are from the controlled vocabulary.
- [ ]
updatedbumped on every changed note.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。