eo-ability-memory

主动记忆能力(Proactive Memory),跨会话延续用户偏好、项目上下文,记住导师要求和格式规范

3,891 stars

Best use case

eo-ability-memory is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

主动记忆能力(Proactive Memory),跨会话延续用户偏好、项目上下文,记住导师要求和格式规范

Teams using eo-ability-memory should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/eo-ability-memory/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/467718584/eo-ability-memory/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/eo-ability-memory/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How eo-ability-memory Compares

Feature / Agenteo-ability-memoryStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

主动记忆能力(Proactive Memory),跨会话延续用户偏好、项目上下文,记住导师要求和格式规范

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# eo-ability-memory

> 主动记忆能力 (Proactive Memory) - 记住用户偏好、项目上下文,跨会话延续

## 一句话介绍

跨会话主动记忆能力,记住用户偏好、导师要求、项目上下文,下次对话自动恢复。

## 核心功能

- **自动记忆**: 关键决策自动保存
- **跨会话恢复**: 下次对话自动加载相关记忆
- **偏好学习**: 根据用户反馈优化策略
- **遗忘机制**: 自动清理过期记忆

## 使用方法

### 保存记忆

```bash
# 自动保存(由 EO 自动触发)
保存: "导师偏好:方法论章节需要更详细的数学推导"
保存: "格式要求:双栏IEEE模板"
保存: "上次讨论焦点:价格谈判"
```

### 加载记忆

```bash
# 加载用户偏好
加载记忆: "用户偏好"

// 自动恢复
用户: "继续上次的研究"
→ 自动加载:
→   - "目标期刊Medical Image Analysis"
→   - "IEEE格式要求"
→   - "上次模型已经跑出初步结果"
```

### 搜索记忆

```bash
# 搜索相关记忆
搜索记忆: "关于价格的所有记忆"
搜索记忆: "导师的偏好"
```

## 与EO插件的协同

- 被所有 eo-workflow-* 调用
- 被案例2(学术论文研究)使用
- 被案例4(秘书行政工作)重点使用

## 独立运行模式(有EO vs 无EO)

| 模式 | 能力 |
|------|------|
| **有EO插件** | 跨会话持久化、LanceDB索引、语义搜索 |
| **无插件(基础)** | 当前会话记忆、无持久化 |

## 示例

```typescript
// 案例:学术论文
用户: "继续上次的研究,模型已经跑出初步结果"

// EO 自动执行:
const memory = await eo_ability_memory({
  action: 'load',
  context: '当前项目'
})
// → 加载: "用户偏好IEEE格式" + "目标期刊Medical Image Analysis"

// 完成论文撰写后
await eo_ability_memory({
  action: 'save',
  key: '论文进度',
  value: { phase: 'methodology', done: true }
})
```

## Interface

### Input

```typescript
interface MemoryInput {
  action: 'save' | 'load' | 'search' | 'forget' | 'update'
  key?: string
  value?: any
  context?: string
  tags?: string[]
}
```

### Output

```typescript
interface MemoryOutput {
  success: boolean
  data?: any
  related?: MemoryEntry[]
  memoryUsed?: number
}
```

---

*🦞⚙️ 钢铁龙虾军团*

Related Skills

afrexai-observability-engine

3891
from openclaw/skills

Complete observability & reliability engineering system. Use when designing monitoring, implementing structured logging, setting up distributed tracing, building alerting systems, creating SLO/SLI frameworks, running incident response, conducting post-mortems, or auditing system reliability. Covers all three pillars (logs/metrics/traces), alert design, dashboard architecture, on-call operations, chaos engineering, and cost optimization.

ESG & Sustainability Reporting Framework

3891
from openclaw/skills

You are an ESG reporting specialist. Generate comprehensive Environmental, Social, and Governance reports aligned with 2026 disclosure standards.

Workflow & Productivity

Agent Observability & Monitoring

3891
from openclaw/skills

Score, monitor, and troubleshoot AI agent fleets in production. Built for ops teams running 1-100+ agents.

Agent Memory Architecture

3891
from openclaw/skills

Complete zero-dependency memory system for AI agents — file-based architecture, daily notes, long-term curation, context management, heartbeat integration, and memory hygiene. No APIs, no databases, no external tools. Works with any agent framework.

stability-ai

3891
from openclaw/skills

Generate high-quality images via Stability AI API (SDXL, SD3, Stable Image Core). Use when user asks to "generate image", "make a picture", or "draw this".

Content & Documentation

memory-cache

3891
from openclaw/skills

High-performance temporary storage system using Redis. Supports namespaced keys (mema:*), TTL management, and session context caching. Use for: (1) Saving agent state, (2) Caching API results, (3) Sharing data between sub-agents.

General Utilities

Memory

3891
from openclaw/skills

Infinite organized memory that complements your agent's built-in memory with unlimited categorized storage.

Memory Management

auto-memory

3891
from openclaw/skills

Indestructible agent memory — permanently stored, never lost. Save decisions, identity, and context as a memory chain on the Autonomys Network. Rebuild your full history from a single CID, even after total state loss.

AI Persistence & Memory

Triple-Layer Memory System

3880
from openclaw/skills

三层记忆系统 - 解决 AI Agent 长对话记忆丢失和上下文管理问题

Memory & Context Management

Claude Code Memory Kit

3891
from openclaw/skills

Stop Claude Code from repeating mistakes — enforce guardrails, preserve context, maintain consistency across sessions

eo-ability-rag

3891
from openclaw/skills

RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索

eo-ability-plan

3891
from openclaw/skills

项目规划能力,调用Planner专家生成WBS任务分解、里程碑计划、团队组成