feat: AI chat as a knowledge base standard (CLAUDE.md)#19
Open
mcabico-blip wants to merge 1 commit into
Open
Conversation
Introduces a convention for treating AI chat sessions as a first-class knowledge asset — captured, versioned, and surfaced to Claude automatically. Includes: directory layout, entry format, CLAUDE.md section template, and two slash command definitions (/save-insight, /search-kb). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
A standard for treating AI chat sessions as a versioned, project-local knowledge base — defined entirely inside
CLAUDE.mdso it's immediately usable with no extra tooling.The problem
Every productive Claude session generates institutional knowledge that vanishes when the window closes. Traced a subtle bug? Explained why the middleware order matters? Discovered an undocumented SDK quirk? That knowledge lives nowhere.
The solution
A
.claude/knowledge/directory convention + two slash commands that make capture and retrieval frictionless:/save-insight <title>— distills the current session's key insight into a structured Markdown entry and updates an index/search-kb <query>— searches the index and returns ranked matches with summariesThe
CLAUDE.mdsection tells Claude to read the index at session start, so it automatically avoids re-solving already-solved problems — and offers to run/save-insightwhenever something new is discovered.What's in this PR
CLAUDE.mdwith the full standard:.claude/knowledge/{decisions,patterns,gotchas,integrations,processes}/)/save-insightcommand definition/search-kbcommand definitionDesign principles
🤖 Generated with Claude Code