What problem does it solve? Agents lose context between sessions, making it impossible to recall past conversations or retrieve relevant knowledge. This Skill provides a Pinecone-backed retrieval-augmented generation pipeline that persists embeddings, retrieves relevant context, and builds long-term memory across agent sessions. ## Core Features & Use Cases - RAG Pipeline: Index documents into a Pinecone serverless index and query them with embedding-based similarity search via LangChain. - Session Memory Management: Store, recall, and clean up per-session memory using Pinecone namespaces for multi-tenant isolation. - Cross-Session Recall: Query across all namespaces to surface relevant context from any past conversation. - Use Case: An agent handling ongoing research conversations stores each session's key findings in its own namespace, then recalls related decisions from earlier sessions when the user asks about prior architecture discussions. ## Quick Start Set your PINECONE_API_KEY and OPENAI_API_KEY environment variables, then ask the agent to store this conversation's key points in Pinecone memory and recall what was discussed about a given topic.