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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/eo-ability-memory/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How eo-ability-memory Compares
| Feature / Agent | eo-ability-memory | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
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
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
You are an ESG reporting specialist. Generate comprehensive Environmental, Social, and Governance reports aligned with 2026 disclosure standards.
Agent Observability & Monitoring
Score, monitor, and troubleshoot AI agent fleets in production. Built for ops teams running 1-100+ agents.
Agent Memory Architecture
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
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".
memory-cache
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.
Memory
Infinite organized memory that complements your agent's built-in memory with unlimited categorized storage.
auto-memory
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.
Triple-Layer Memory System
三层记忆系统 - 解决 AI Agent 长对话记忆丢失和上下文管理问题
Claude Code Memory Kit
Stop Claude Code from repeating mistakes — enforce guardrails, preserve context, maintain consistency across sessions
eo-ability-rag
RAG知识共享能力,跨项目共享专家经验和最佳实践,基于语义搜索快速检索
eo-ability-plan
项目规划能力,调用Planner专家生成WBS任务分解、里程碑计划、团队组成