TopRank Skills

Home / Claw Skills / Search / Memoria System
Official OpenClaw rules 36%

Memoria System

Memoria System

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Memoria System 技能。 若已安装,则直接安装 Memoria System 技能。

Overview

Skill Key
cuilinshen/memoria-system
Author
cuilinshen
Source Repo
openclaw/skills
Version
-
Source Path
skills/cuilinshen/memoria-system
Latest Commit SHA
901bebcc06a446b476c2d3fd8b78a053f3a9c68a

Extracted Content

SKILL.md excerpt

# Memoria System

## 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

## Tools

### memory-backup.sh
Creates incremental backups of the memory system.

**Usage:**
```bash
./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:**
```bash
./memory-migrate.sh {init|daily [DATE]|migrate [VERSION]}
```

**Commands:**
- `init` - Initialize memory structure
- `daily [DATE]` - Create daily memory file...

README excerpt

# Memoria System

一个完整的长期记忆管理系统,为AI助手提供类人类的多层记忆架构。

## 概述

Memoria System 实现了类似人类认知系统的记忆分层架构:

- **语义记忆 (Semantic)** - 事实、概念、知识
- **情景记忆 (Episodic)** - 事件、经历、对话
- **程序记忆 (Procedural)** - 技能、流程、习惯
- **工作记忆 (Working)** - 当前会话上下文
- **索引 (Index)** - 快速检索目录

## 安装

```bash
openclaw skill install memoria-system
```

## 快速开始

1. **初始化记忆目录**
   ```bash
   ./memory-migrate.sh init
   ```

2. **创建每日记忆**
   ```bash
   ./memory-migrate.sh daily "2026-02-26"
   ```

3. **备份记忆**
   ```bash
   ./memory-backup.sh
   ```

4. **健康检查**
   ```bash
   ./memory-health-check.sh
   ```

## 目录结构

```
memory/
├── semantic/          # 事实知识
│   ├── facts.md
│   ├── concepts.md
│   └── knowledge/
├── episodic/          # 事件经历
│   ├── YYYY-MM-DD.md
│   └── events/
├── procedural/        # 技能流程
│   ├── skills.md
│   ├── workflows.md
│   └── scripts/
├── working/           # 当前上下文
│   ├── current.md
│   └── session/
└── index/             # 索引目录
    ├── tags.json
    ├── timeline.json
    └── search/
```

## 核心脚本

| 脚本 | 功能 |
|------|------|
| `memory-backup.sh` | 增量备份记忆数据 |
| `memory-migrate.sh` | 迁移/初始化记忆结构 |
| `memory-rollback.sh` | 回滚到指定版本 |
| `memory-health-check.sh` | 完整性检查与修复 |

## 配置

编辑 `config.json` 自定义:
- 备份保留策略
- 索引更新频率
- 存储路径

## 许可证

MIT

Related Claw Skills