Agent skill

honcho-memory

Gives AI agents persistent memory across conversations using Honcho. Automatically saves and retrieves user context so the AI remembers preferences, history, and facts between sessions. Use when you need the AI to remember past conversations, recall what a user has told it, inject relevant context into prompts, or manage separate memory spaces for different topics.

Stars 2,088
Forks 254

Install this agent skill to your Project

npx add-skill https://github.com/plastic-labs/honcho/tree/main/examples/zo

Metadata

Additional technical details for this skill

author
plastic-labs
version
0.1.0
honcho sdk
2.1.0

SKILL.md

Honcho Memory Skill

This skill provides three tools for storing and retrieving AI memory using Honcho.

Setup

  1. Get a Honcho API key at honcho.dev.

  2. Set environment variables:

    HONCHO_API_KEY=your-api-key
    HONCHO_WORKSPACE_ID=default   # optional, defaults to "default"
    
  3. Install dependencies:

    pip install honcho-ai python-dotenv
    

Tools

save_memory

Saves a conversation turn (user or assistant message) to Honcho.

When to use: After every message exchange to build up the user's memory.

python
from tools.save_memory import save_memory

save_memory(
    user_id="alice",           # unique user identifier
    content="I love hiking",   # message text
    role="user",               # "user" or "assistant"
    session_id="chat-1",       # conversation session ID
    assistant_id="assistant"   # optional: assistant peer ID (default: "assistant")
)

query_memory

Asks a natural language question against stored memory using Honcho's Dialectic API.

When to use: When the user asks "do you remember...?", or when you need to recall facts about the user before responding.

python
from tools.query_memory import query_memory

answer = query_memory(
    user_id="alice",
    query="What are Alice's hobbies?",
    session_id="chat-1"   # optional: scope to a session
)
# Returns: "Alice enjoys hiking."

get_context

Retrieves recent conversation history formatted for direct use in an LLM API call.

When to use: At the start of each LLM call to inject relevant context from past conversations.

python
from tools.get_context import get_context

messages = get_context(
    user_id="alice",
    session_id="chat-1",
    assistant_id="assistant",
    tokens=4000              # max tokens to include
)
# Returns: [{"role": "user", "content": "..."}, ...]

Concept Mapping

Zo Computer Honcho
Account Workspace
User Peer
Conversation Session
Message Message

Example: Full Conversation Flow

python
from tools.save_memory import save_memory
from tools.query_memory import query_memory
from tools.get_context import get_context

user_id = "alice"
session_id = "session-1"

# 1. Save user message
save_memory(user_id, "I'm learning Rust and love rock climbing", "user", session_id)

# 2. Save assistant reply
save_memory(user_id, "That's great! Both require patience.", "assistant", session_id)

# 3. In a later session, recall what you know
print(query_memory(user_id, "What does Alice do in her free time?"))
# → "Alice is learning Rust and enjoys rock climbing."

# 4. Get context window for next LLM call
messages = get_context(user_id, session_id, "assistant", tokens=4000)

Expand your agent's capabilities with these related and highly-rated skills.

plastic-labs/honcho

honcho-integration

Integrate Honcho memory and social cognition into existing Python or TypeScript codebases. Use when adding Honcho SDK, setting up peers, configuring sessions, implementing the dialectic chat endpoint for AI agents, or wiring Honcho into bot frameworks (nanobot, openclaw, picoclaw, etc).

2,088 254
Explore
plastic-labs/honcho

migrate-honcho-ts

Migrates Honcho TypeScript SDK code from v1.6.0 to v2.1.1. Use when upgrading @honcho-ai/sdk, fixing breaking changes after upgrade, or when errors mention removed APIs like .core, getConfig, observations, or snake_case properties.

2,088 254
Explore
plastic-labs/honcho

migrate-honcho

Migrates Honcho Python SDK code from v1.6.0 to v2.1.1. Use when upgrading honcho package, fixing breaking changes after upgrade, or when errors mention AsyncHoncho, observations, Representation class, .core property, or get_config methods.

2,088 254
Explore
davila7/claude-code-templates

verl-rl-training

Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.

23,776 2,298
Explore
davila7/claude-code-templates

openrlhf-training

High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.

23,776 2,298
Explore
davila7/claude-code-templates

gguf-quantization

GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.

23,776 2,298
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results