← 返回 Skills 市场
highlander89

Agent Memory Continuity

作者 Highlander89 · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
669
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-memory-continuity
功能描述
Solve the "agent forgot everything" problem with search-first protocol, automated memory sync, and context preservation. No more conversation restarts!
使用说明 (SKILL.md)

Agent Memory Continuity 🧠

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

Features

🔍 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

Quick Start

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

Usage

Basic Memory Protocol

The skill automatically:

  1. Searches memory before responding to ongoing topics
  2. Detects red flags ("we discussed this", "remember when")
  3. Reconstructs context from memory files when breaks detected
  4. Logs decisions to daily memory files
  5. 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

Enterprise Features

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

Troubleshooting

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

Support

Community Support

Enterprise Support

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: [email protected]


Stop agent amnesia. Start agent continuity. Built by the team that solved it first.

安全使用建议
This package is not obviously malicious, but it has inconsistencies and makes persistent changes that you should review before installing: - Inspect the scripts locally before running install.sh. The provided scripts only manipulate files and the crontab, but you should confirm there's no hidden network behavior. - Note missing referenced files: SKILL.md mentions scripts/configure-search-first.sh and setup-memory-archival.sh and a cron-jobs template that are not present in the bundle. Ask the publisher why those files are absent or where they come from. - The package expects a 'memory_search' command to exist in the environment; determine whether that is provided by your OpenClaw runtime or a separate plugin. Without it, the 'search-first' behavior won't work and the agent may behave unpredictably. - The installer will modify your user crontab to add a 6-hourly job. Backup your crontab (crontab -l > crontab.bak) and review the crontab diff after activation. If you prefer not to have cron jobs, run the scripts manually on a schedule you control or use the file-based fallback. - Prefer installing in a sandbox or test workspace first (not a production agent workspace) to validate behavior and to confirm there is no unexpected external communication. - If you may follow the SKILL.md's 'git clone' or 'npx' instructions, validate the remote upstream (github.com/sapconet/agent-memory-continuity) and the homepage/contact info (sapconet.co.za) to ensure the source is trustworthy. The package's metadata is otherwise minimal; verify the publisher before using in enterprise contexts. If you want, I can (a) list the exact lines in the scripts that modify crontab and filesystem for quick review, (b) generate a safe-install checklist for this skill, or (c) attempt to identify the missing scripts and where they should come from.
功能分析
Type: OpenClaw Skill Name: agent-memory-continuity Version: 1.0.0 The OpenClaw AgentSkills bundle 'agent-memory-continuity' is designed to enhance an AI agent's memory and context preservation. The analysis of all files (SKILL.md, install.sh, scripts/*, config/*, templates/*) reveals no malicious intent. The `SKILL.md` and `AGENT_MEMORY_PROTOCOL.md` contain instructions for the agent focused solely on memory management. The `install.sh` script performs standard setup tasks like creating directories and copying files. The `activate-memory-sync.sh` script establishes a cron job to run `scripts/sync-memory.sh` every six hours, which is a form of persistence, but its purpose is benign: to synchronize and clean local memory files within the workspace. No evidence of data exfiltration, malicious execution, unauthorized remote control, or obfuscation was found. All actions are confined to the local workspace and align with the stated goal of improving agent memory continuity.
能力评估
Purpose & Capability
The name/description (agent memory continuity) align with the scripts and templates: the package creates daily memory files, a MEMORY.md aggregator, and schedules periodic syncs. Nothing in the code requests unrelated credentials or external services. However, the SKILL.md references additional helper scripts (e.g., scripts/configure-search-first.sh, scripts/setup-memory-archival.sh) and templates (cron-jobs-template.txt) that are not present in the provided file list, which is inconsistent with the stated installation steps.
Instruction Scope
Runtime instructions tell the agent/user to run installer and multiple scripts that read/write files in the workspace and add cron jobs. The scripts do not reach out to network endpoints, but they do: (1) modify the user's crontab to run sync tasks, (2) create/append to files like .memory-config.json, .memory-search-patterns.txt, .memory-sync-log, MEMORY.md, and daily memory files, and (3) expect an external 'memory_search' command to be available (the package does not provide that command). The SKILL.md instructs running scripts that are missing from the bundle, so following the docs may fail or produce unexpected state changes.
Install Mechanism
There is no remote installer declared in the registry metadata; the included install.sh is a local installer (no download/extract). SKILL.md also shows 'git clone' and 'npx clawhub install' as suggested install paths — cloning or npx could pull remote code, but the provided install.sh itself performs only local file operations. The lack of any external download in the included scripts lowers code-delivery risk, but the documentation's suggestion to clone or use npx introduces a potential external fetch step if the user follows that path.
Credentials
The skill declares no required environment variables or credentials. The documentation shows optional envs (MEMORY_SEARCH_THRESHOLD, MEMORY_ARCHIVE_DAYS, MEMORY_RETENTION_MONTHS) for tuning behavior — these are reasonable and not secrets. No secret-exposing variables are requested. That said, the scripts expect a 'memory_search' command provided by the environment; this external dependency is not included or explained in the package.
Persistence & Privilege
The package installs a persistent cron job (user crontab) to run sync-memory.sh every 6 hours and writes persistent files to the workspace (memory/, MEMORY.md, .memory-sync-log). always:false (not force-included) and the skill does not try to modify other skills' configs. Persisting cron entries and log files is a meaningful privilege; users should review/approve the crontab change before installation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-memory-continuity
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-memory-continuity 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of agent-memory-continuity. - Introduces a search-first protocol for persistent agent memory and conversation continuity. - Automated 6-hourly memory sync and daily memory file creation. - Red flag detection and automatic recovery if agent forgets context. - Cron-based scripting for memory management, archival, and advanced configuration. - Production-ready, enterprise features including compliance, audit trails, and professional support.
元数据
Slug agent-memory-continuity
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

Agent Memory Continuity 是什么?

Solve the "agent forgot everything" problem with search-first protocol, automated memory sync, and context preservation. No more conversation restarts!. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 669 次。

如何安装 Agent Memory Continuity?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-memory-continuity」即可一键安装,无需额外配置。

Agent Memory Continuity 是免费的吗?

是的,Agent Memory Continuity 完全免费(开源免费),可自由下载、安装和使用。

Agent Memory Continuity 支持哪些平台?

Agent Memory Continuity 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Agent Memory Continuity?

由 Highlander89(@highlander89)开发并维护,当前版本 v1.0.0。

💬 留言讨论