remember

Save insights and decisions to long-term agent memory with searchable concept tags.

3|Updated Oct 25, 2025
One-click install
npx skills add https://github.com/Prismaibrowser/prismspace-web --skill remember-prismaibrowser
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: remember
Source: https://github.com/Prismaibrowser/prismspace-web/tree/main/.agents/skills/remember
Command: npx skills add https://github.com/Prismaibrowser/prismspace-web --skill remember-prismaibrowser

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Important decisions, gotchas, and learnings from a coding session are lost when the session ends. This Skill preserves them in agentmemory's long-term storage with specific concept tags so future sessions can retrieve them via recall. ## Core Features & Use Cases - Memory Persistence: Saves insights, decisions, and facts to long-term storage through the memory_save tool with content, concepts, and file references. - Concept Tagging: Extracts 2-5 specific, lowercased concept phrases (e.g., jwt-refresh-rotation) so future recall queries actually surface the memory. - File Linking: Attaches real repo-relative or absolute file paths to memories for code-specific context. - Use Case: After deciding to drop Redis for the iii-engine state store, say "remember this decision" and the Skill saves it tagged with session-caching, iii-state-store, and dropped-redis so any later caching question retrieves it. ## Quick Start Tell the agent "remember that we rotate JWT refresh tokens on every use in auth/refresh.ts" and it will save the memory with specific concept tags and confirm the retrieval terms.

Frequently Asked Questions about remember

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save a decision to agent long-term memory?▼

Invoke the remember skill with the fact or decision in natural language, such as "remember that we dropped Redis for session caching". It calls memory_save with the content, 2-5 specific concept tags, and any referenced file paths.

What makes good concept tags for saved memories?▼

Good concept tags are specific, lowercased phrases like jwt-refresh-rotation or per-ip-bug rather than generic words like stuff or code. Specific tags ensure a future recall query on that topic actually surfaces the memory.

How do I update a memory I saved earlier?▼

Save the corrected version as a new memory outright. Near-duplicate content supersedes the old record in recall results, while the older version remains in the version chain for history.

Can memories reference specific code files?▼

Yes, the files parameter accepts comma-separated absolute or repo-relative file paths, such as src/middleware/limit.ts. Paths should be real references from the conversation, not guesses, and the field is left empty when no files apply.

Why is memory_save not available when I use this skill?▼

The memory_save tool must be provided by the agentmemory backend in your environment. If it is missing, consult the shared troubleshooting guide at ../_shared/TROUBLESHOOTING.md referenced by the skill.