# Send Agent Memory Continuity to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-memory-continuity",
    "name": "Agent Memory Continuity",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Highlander89/agent-memory-continuity",
    "canonicalUrl": "https://clawhub.ai/Highlander89/agent-memory-continuity",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-memory-continuity",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-memory-continuity",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "config/memory-config.json",
      "config/search-patterns.txt",
      "docs/troubleshooting.md",
      "install.sh",
      "scripts/activate-memory-sync.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-memory-continuity",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:12:19.383Z",
      "expiresAt": "2026-05-06T12:12:19.383Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-memory-continuity",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-memory-continuity",
        "contentDisposition": "attachment; filename=\"agent-memory-continuity-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-memory-continuity"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-memory-continuity"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-memory-continuity",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-memory-continuity",
    "agentUrl": "https://openagent3.xyz/skills/agent-memory-continuity/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-memory-continuity/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-memory-continuity/agent.md"
  }
}
```
## Documentation

### The Problem

Does your OpenClaw agent suffer from "conversation amnesia"? Starting fresh every session? Forgetting previous discussions, decisions, and context? You're not alone - this is the #1 frustration with AI agents.

### The Solution

Agent Memory Continuity solves fragmented conversations through a battle-tested search-first protocol that ensures agents never forget previous context.

### Why This Skill?

✅ Solves universal pain point - Every OpenClaw user faces memory issues
✅ Battle-tested solution - Proven in production environment
✅ Immediate impact - No more "agent broke and forgot everything"
✅ Enterprise-grade - Professional memory management system

### Use When

Agent conversations keep "starting fresh"
Previous context gets lost between sessions
Users complain "we already discussed this"
Enterprise environments requiring conversation continuity
Multi-session agent workflows

### Don't Use When

Single-use, stateless interactions
Agents with no conversation history requirements
Simple query/response scenarios

### 🔍 Search-First Protocol

Mandatory memory search before responding to ongoing topics
Red flag detection for conversation continuity breaks
Automatic context reconstruction from memory files

### 📝 Automated Memory Sync

6-hourly memory context synchronization
Daily memory file creation and updates
Cross-referencing of ongoing projects and conversations

### 🧠 Context Preservation

Daily memory logging discipline
Persistent insight tracking
Conversation thread continuity maintenance

### 🚨 Break Detection

Identifies when agent "forgets" previous context
Automatic recovery through memory search
User frustration prevention system

### Installation

# Install via ClawHub
npx clawhub install agent-memory-continuity

# Or clone directly
git clone https://github.com/sapconet/agent-memory-continuity.git
cd agent-memory-continuity
bash install.sh

### 1. Initialize Memory Protocol

# Set up memory structure
bash scripts/init-memory-protocol.sh

# Creates:
# - AGENT_MEMORY_PROTOCOL.md (search-first rules)
# - memory/YYYY-MM-DD.md (daily context files)
# - Memory sync cron jobs

### 2. Configure Search-First Behavior

# Configure mandatory memory search
bash scripts/configure-search-first.sh

# Enables:
# - Pre-response memory searches
# - Context continuity checks
# - Automatic break recovery

### 3. Activate Memory Sync

# Start automated memory synchronization  
bash scripts/activate-memory-sync.sh

# Schedules:
# - 6-hourly context updates
# - Daily memory file creation
# - Ongoing project cross-referencing

### Basic Memory Protocol

The skill automatically:

Searches memory before responding to ongoing topics
Detects red flags ("we discussed this", "remember when")
Reconstructs context from memory files when breaks detected
Logs decisions to daily memory files
Syncs context across sessions

### Advanced Configuration

Custom Memory Search Patterns

# Add custom search patterns
echo "project_name meeting decision" >> config/search-patterns.txt

# Configure search sensitivity
export MEMORY_SEARCH_THRESHOLD=0.7

Memory Archival Rules

# Configure archival timing
export MEMORY_ARCHIVE_DAYS=30
export MEMORY_RETENTION_MONTHS=12

# Set up automatic archival
bash scripts/setup-memory-archival.sh

### File Structure

agent-memory-continuity/
├── SKILL.md
├── install.sh
├── scripts/
│   ├── init-memory-protocol.sh
│   ├── configure-search-first.sh
│   ├── activate-memory-sync.sh
│   ├── setup-memory-archival.sh
│   └── test-memory-continuity.sh
├── templates/
│   ├── AGENT_MEMORY_PROTOCOL.md
│   ├── daily-memory-template.md
│   └── cron-jobs-template.txt
├── config/
│   ├── search-patterns.txt
│   └── memory-config.json
└── docs/
    ├── troubleshooting.md
    └── enterprise-setup.md

### Real-World Results

Before Agent Memory Continuity:

❌ "Billy broke and forgot everything"
❌ Constant conversation restarts
❌ Lost context and decisions
❌ User frustration and lost productivity

After Agent Memory Continuity:

✅ Perfect conversation continuity
✅ Context preserved across sessions
✅ Decisions and discussions remembered
✅ User satisfaction and trust restored

### Production Deployment

Multi-agent memory synchronization
Team conversation continuity
Enterprise memory governance
Audit trails and compliance

### Professional Support

Implementation consulting
Custom memory pattern development
Enterprise integration services
24/7 technical support

### Common Issues

Agent still forgetting conversations:

# Check memory search frequency
bash scripts/test-memory-continuity.sh

# Increase search sensitivity  
export MEMORY_SEARCH_THRESHOLD=0.5

Memory files growing too large:

# Enable automatic archival
bash scripts/setup-memory-archival.sh

# Configure retention policies
nano config/memory-config.json

Cron jobs not running:

# Check cron status
crontab -l | grep memory

# Reinstall cron jobs
bash scripts/activate-memory-sync.sh --force

### Community Support

GitHub Issues: https://github.com/sapconet/agent-memory-continuity/issues
Documentation: https://docs.sapconet.co.za/memory-continuity
Examples: https://github.com/sapconet/agent-memory-continuity/examples

### Enterprise Support

Email: support@sapconet.co.za
Professional Services: https://sapconet.co.za/openclaw-consulting
Phone: +27 (0)53 123 4567

### About SAPCONET

Leading OpenClaw enterprise specialists with 6+ months of production experience. We solve the problems others are still discovering.

Services:

Enterprise OpenClaw deployments
Custom skill development
Agent workforce consulting
24/7 technical support

Website: https://sapconet.co.za
Contact: hello@sapconet.co.za

Stop agent amnesia. Start agent continuity. Built by the team that solved it first.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Highlander89
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T12:12:19.383Z
- Expires at: 2026-05-06T12:12:19.383Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-memory-continuity)
- [Send to Agent page](https://openagent3.xyz/skills/agent-memory-continuity/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-memory-continuity/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-memory-continuity/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-memory-continuity)