What problem does it solve?
AI agents forget everything between conversations, forcing users to repeat preferences, history, and context. This Skill gives agents persistent memory by saving messages to Honcho and recalling them later through natural language queries or formatted context injection.
Core Features & Use Cases
- Save Memory: Persist user and assistant messages to Honcho sessions with a single function call, automatically creating peers and sessions as needed.
- Query Memory: Ask natural language questions like "What are my hobbies?" against stored memory using Honcho's Dialectic API.
- Context Injection: Retrieve recent conversation history in OpenAI message format, ready to pass directly into an LLM call with a configurable token budget.
- Use Case: A chatbot saves each conversation turn with
save_memory, then in a later session calls query_memory to recall that the user is learning Rust and enjoys rock climbing, personalizing its responses without the user repeating themselves.
Quick Start
Set your HONCHO_API_KEY environment variable, then ask the AI to save this conversation to Honcho memory and recall what it knows about you in the next session.