Babysitter langchain-memory
LangChain memory integration including ConversationBufferMemory, ConversationSummaryMemory, and vector-based memory
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/ai-agents-conversational/skills/langchain-memory" ~/.claude/skills/a5c-ai-babysitter-langchain-memory && rm -rf "$T"
manifest:
library/specializations/ai-agents-conversational/skills/langchain-memory/SKILL.mdsource content
LangChain Memory Skill
Capabilities
- Implement various LangChain memory types
- Configure ConversationBufferMemory for short-term recall
- Set up ConversationSummaryMemory for long conversations
- Integrate vector-based memory for semantic search
- Design memory retrieval strategies
- Handle memory persistence and serialization
Target Processes
- conversational-memory-system
- chatbot-design-implementation
Implementation Details
Memory Types
- ConversationBufferMemory: Stores full conversation history
- ConversationBufferWindowMemory: Rolling window of recent messages
- ConversationSummaryMemory: Summarizes older messages
- ConversationSummaryBufferMemory: Hybrid approach
- VectorStoreRetrieverMemory: Semantic similarity-based retrieval
Configuration Options
- Memory key naming conventions
- Return message format (string vs messages)
- Summary LLM selection
- Vector store backend selection
- Token limits and window sizes
Dependencies
- langchain
- langchain-community
- Vector store client (optional)