# Send Memoria Memory System 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "memoria-system",
    "name": "Memoria Memory System",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/cuilinshen/memoria-system",
    "canonicalUrl": "https://clawhub.ai/cuilinshen/memoria-system",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/memoria-system",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memoria-system",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "config.json",
      "README.md",
      "memory-backup.sh",
      "SKILL.md",
      "memory-migrate.sh",
      "memory-rollback.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "memoria-system",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T08:25:02.271Z",
      "expiresAt": "2026-05-09T08:25:02.271Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memoria-system",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memoria-system",
        "contentDisposition": "attachment; filename=\"memoria-system-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "memoria-system"
      },
      "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/memoria-system"
    },
    "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/memoria-system",
    "downloadUrl": "https://openagent3.xyz/downloads/memoria-system",
    "agentUrl": "https://openagent3.xyz/skills/memoria-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memoria-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memoria-system/agent.md"
  }
}
```
## Documentation

### Overview

Memoria System is a comprehensive long-term memory management system designed for AI assistants. It implements a human-like cognitive memory architecture with distinct layers for different types of information.

### Memory Architecture

The system organizes memory into five distinct types, mirroring human cognitive structures:

### 1. Semantic Memory (semantic/)

Stores factual knowledge, concepts, and general information.

facts.md - Personal facts and key information
concepts.md - Learned concepts and knowledge
knowledge/ - Detailed knowledge entries

### 2. Episodic Memory (episodic/)

Records events, experiences, and conversations with timestamps.

YYYY-MM-DD.md - Daily memory logs
events/ - Specific event documentation

### 3. Procedural Memory (procedural/)

Contains skills, workflows, and learned procedures.

skills.md - Acquired skills and capabilities
workflows.md - Common procedures and workflows
scripts/ - Automation and utility scripts

### 4. Working Memory (working/)

Holds current session context and active tasks.

current.md - Active context and pending items
session/ - Session-specific data

### 5. Index (index/)

Provides fast lookup and search capabilities.

tags.json - Tag-based indexing
timeline.json - Chronological event index
search/ - Search indexes

### memory-backup.sh

Creates incremental backups of the memory system.

Usage:

./memory-backup.sh [options]

Options:

--dry-run - Show what would be backed up without doing it
--verbose - Show detailed output
--path PATH - Override memory path
--output PATH - Override backup destination

### memory-migrate.sh

Initializes new memory structures or migrates existing ones.

Usage:

./memory-migrate.sh {init|daily [DATE]|migrate [VERSION]}

Commands:

init - Initialize memory structure
daily [DATE] - Create daily memory file (default: today)
migrate [VERSION] - Migrate from specified version

### memory-rollback.sh

Restores memory from a previous backup.

Usage:

./memory-rollback.sh {list|rollback BACKUP_NAME [--force]}

Commands:

list - List available backups
rollback BACKUP_NAME - Restore to specified backup

Options:

--force - Skip confirmation prompt

### memory-health-check.sh

Validates memory integrity and optionally repairs issues.

Usage:

./memory-health-check.sh [options]

Options:

--fix - Automatically fix detected issues
--path PATH - Override memory path

### Configuration

Edit config.json to customize behavior:

{
  "memory": {
    "base_path": "./memory",
    "structure": { ... }
  },
  "backup": {
    "enabled": true,
    "retention_days": 30,
    "schedule": "0 2 * * *"
  },
  "health_check": {
    "auto_fix": false,
    "check_interval_hours": 24
  }
}

### Cron Setup

Add to crontab for automated maintenance:

# Daily backup at 2 AM
0 2 * * * cd /path/to/memoria-system && ./memory-backup.sh

# Weekly health check on Sundays at 3 AM
0 3 * * 0 cd /path/to/memoria-system && ./memory-health-check.sh --fix

### Installation

openclaw skill install memoria-system

### Requirements

Bash 4.0+
jq (for JSON processing)
tar (for backup compression)

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cuilinshen
- 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-05-02T08:25:02.271Z
- Expires at: 2026-05-09T08:25:02.271Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/memoria-system)
- [Send to Agent page](https://openagent3.xyz/skills/memoria-system/agent)
- [JSON manifest](https://openagent3.xyz/skills/memoria-system/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/memoria-system/agent.md)
- [Download page](https://openagent3.xyz/downloads/memoria-system)