npx skills add ...
npx skills add langchain-ai/deepagents --skill remember
npx skills add langchain-ai/deepagents --skill remember
Review the current conversation and capture valuable knowledge — best practices, coding conventions, architecture decisions, workflows, and user feedback — into persistent memory (AGENTS.md) or reusable skills. Use when the user says: (1) remember this, (2) save what we learned, (3) update memory, (4) capture learnings.
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/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/agent/skills/<skill-name>/SKILL.md
For preferences, guidelines, and simple rules that don't warrant a full skill:
Use edit_file to update existing files or write_file to create new ones.
List what you captured and where you stored it:
## Best Practices
- When doing X, always Y because Z
- Avoid A because it leads to B