ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Agent Memory Kit

Skill by ryancampbell

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/ryancampbell/agent-memory-kit
Or

Agent Memory Kit

Type: Practice / Framework Dependencies: None (markdown only)


Description

A structured memory system for AI agents. Prevents the "forgot how to do things" problem by separating memory into episodic (what happened), semantic (what I know), and procedural (how to do things) layers.

Installation

# Create memory folder structure
mkdir -p memory/procedures

# Copy templates
cp templates/ARCHITECTURE.md memory/
cp templates/feedback.md memory/
cp templates/procedure-template.md memory/procedures/

Usage

  1. Read README.md to understand the system
  2. Add memory loading to your wake routine (AGENTS.md)
  3. Use templates when logging events, creating procedures, tracking feedback

Files

FilePurpose
README.mdFull documentation
templates/ARCHITECTURE.mdMemory system overview (copy to memory/)
templates/feedback.mdSuccess/failure tracking template
templates/procedure-template.mdHow-to document template
templates/daily-template.mdDaily log template
templates/compaction-survival.mdNEW: Pre-compaction flush guide
templates/context-snapshot-template.mdNEW: Quick context save template
helpers/check-compaction.shNEW: Token limit checker

Key Concepts

  • Episodic memory: Daily logs of WHAT happened
  • Semantic memory: Curated knowledge (MEMORY.md)
  • Procedural memory: HOW to do things
  • Feedback loops: Learn from success/failure

The Rule

Always capture the HOW, not just the WHAT. Future-you needs the steps.

Metadata

Stars1133
Views0
Updated2026-02-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-ryancampbell-agent-memory-kit": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.