Agent Memory 1

v1.0.0

Persistent memory system for AI agents to remember facts, learn from experience, and track entities across sessions with easy recall and updates.

0· 185·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for tigertamvip/agent-memory-1.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Agent Memory 1" (tigertamvip/agent-memory-1) from ClawHub.
Skill page: https://clawhub.ai/tigertamvip/agent-memory-1
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install agent-memory-1

ClawHub CLI

Package manager switcher

npx clawhub@latest install agent-memory-1
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name, description, SKILL.md, CLI wrappers, tests, and src/memory.py all implement a local persistent memory (facts, lessons, entities) stored in an SQLite DB. There are no unrelated environment variables, binaries, or cloud credentials requested.
Instruction Scope
SKILL.md and examples only instruct creating/using the AgentMemory API and storing the DB at ~/.agent-memory/memory.db (or a custom path). There are no instructions to read unrelated system files, access secrets, call external endpoints, or exfiltrate data.
Install Mechanism
This is effectively an instruction/source bundle with no install spec that downloads arbitrary code. All source is included; there are no URL downloads, package installs, or extract steps in the provided files.
Credentials
The skill declares no required environment variables or credentials, and the code does not read environment secrets. It persists data to a user-local SQLite DB only.
Persistence & Privilege
always is false (not forced), model invocation is allowed (normal), and the skill only creates/uses a DB under the user's home directory. It does not alter other skills' configs or request elevated/system-wide privileges.
Assessment
This skill appears to be what it claims: a local SQLite-based memory for agents. Before installing, consider: 1) The DB is stored in ~/.agent-memory/memory.db by default and contains any facts you store — treat it as sensitive data (restrict filesystem permissions, do not put secrets there, or set a custom db_path). 2) SQLite FTS5 is used; ensure your Python/SQLite build supports FTS5 or the FTS parts may fail. 3) The code is included and readable — review src/memory.py if you have specific security/privacy requirements. 4) Run the bundled tests or run in an isolated environment first if you want to validate behavior. There are no signs of network exfiltration or unrelated credential requests.

Like a lobster shell, security has layers — review code before you run it.

latestvk972a7446xhzk93nrwkxc8rqzd83dp7m
185downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

AgentMemory Skill

Persistent memory system for AI agents. Remember facts, learn from experience, and track entities across sessions.

Installation

clawdhub install agent-memory

Usage

from src.memory import AgentMemory

mem = AgentMemory()

# Remember facts
mem.remember("Important information", tags=["category"])

# Learn from experience
mem.learn(
    action="What was done",
    context="situation",
    outcome="positive",  # or "negative"
    insight="What was learned"
)

# Recall memories
facts = mem.recall("search query")
lessons = mem.get_lessons(context="topic")

# Track entities
mem.track_entity("Name", "person", {"role": "engineer"})

When to Use

  • Starting a session: Load relevant context from memory
  • After conversations: Store important facts
  • After failures: Record lessons learned
  • Meeting new people/projects: Track as entities

Integration with Clawdbot

Add to your AGENTS.md or HEARTBEAT.md:

## Memory Protocol

On session start:
1. Load recent lessons: `mem.get_lessons(limit=5)`
2. Check entity context for current task
3. Recall relevant facts

On session end:
1. Extract durable facts from conversation
2. Record any lessons learned
3. Update entity information

Database Location

Default: ~/.agent-memory/memory.db

Custom: AgentMemory(db_path="/path/to/memory.db")

Comments

Loading comments...