Review the current conversation and capture valuable knowledge — best practices, coding conventions, architecture decisions, workflows, and user feedback — into
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-remember-5e05208531a7 ,按照其中的说明把「remember」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Review our conversation and capture valuable knowledge. Focus especially on best practices we discussed or discovered—these are the most important things to preserve.
Scan the conversation for:
For each best practice or learning, choose the right destination:
Use memory when the knowledge is:
Global ($DEEPAGENTS_HOME/agent/AGENTS.md): Universal preferences across all projects
Project (.deepagents/AGENTS.md): Project-specific conventions and decisions
Create a skill when we developed:
Skills are more powerful than memory entries because they can encode how to do something well, not just what to remember.
If we established best practices around a workflow or process, capture them in a skill.
Example: If we discussed best practices for code review, create a code-review skill that encodes those practices into a reusable workflow.
$DEEPAGENTS_HOME/agent/skills/<skill-name>/SKILL.md
skill-name/
├── SKILL.md (required - main instructions with best practices)
├── scripts/ (optional - executable code)
├── references/ (optional - detailed documentation)
└── assets/ (optional - templates, examples)
---
name: skill-name
description: "What this skill does AND when to use it. Include triggers like 'when the user asks to X' or 'when working with Y'. This description determines when the skill activates."
---
# Skill Name
## Overview
Brief explanation of what this skill accomplishes.
## Best Practices
Capture the key best practices upfront:
- Best practice 1: explanation
- Best practice 2: explanation
## Process
Step-by-step instructions (imperative form):
1. First, do X
2. Then, do Y
3. Finally, do Z
## Common Pitfalls
- Pitfall to avoid and why
- Another anti-pattern we discovered
For preferences, guidelines, and simple rules that don't warrant a full skill:
## Best Practices
- When doing X, always Y because Z
- Avoid A because it leads to B
Use edit_file to update existing files or write_file to create new ones.
List what you captured and where you stored it: