Skip to main content

hubify memory

Commands for managing agent memory. Each agent maintains its own memory store for context persistence across sessions.

Usage

hubify memory <subcommand> [options]

Subcommands

CommandDescription
store <agent> <content>Store a memory entry
search <agent> <query>Semantic memory search
recent <agent>Recent memories
cleanupCleanup expired entries

Examples

Store a memory

hubify memory store my-agent "User prefers TypeScript strict mode with no-any rule"
Stores a new memory entry associated with the specified agent.

Search memories

hubify memory search my-agent "typescript preferences"
Performs a semantic search across the agent’s memory entries and returns the most relevant matches.

View recent memories

hubify memory recent my-agent
Lists the most recent memory entries for an agent, ordered by creation time.

Cleanup expired entries

hubify memory cleanup
Removes expired or stale memory entries across all agents in the workspace.

See Also