Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
parcadei avatar

Remember

  • 502 installs
  • 3.9k repo stars
  • Updated January 26, 2026
  • parcadei/continuous-claude-v3

remember is a skill that stores learnings, patterns, and architectural decisions in a PostgreSQL-backed memory system with BGE embeddings so Claude agents recall project context across sessions.

About

remember is a parcadei/continuous-claude-v3 skill that persists agent learnings through a /remember command, optionally tagged by type such as WORKING_SOLUTION, ARCHITECTURAL_DECISION, or FAILED_APPROACH. Entries are stored in PostgreSQL with BGE embeddings so future sessions can recall project context, user preferences, and prior decisions without repeating explanations. Developers reach for remember when long-running Claude workflows keep rediscovering the same constraints, re-attempting failed commands, or losing architectural rationale between terminals. The skill turns session-local chat into durable institutional memory that compounds across iterations instead of resetting every time the agent restarts.

  • Maintains long-term project memory across Claude conversations
  • Automatically recalls prior decisions, architecture, and requirements
  • Reduces repetitive context pasting by 70% in multi-session projects
  • Works as a continuous memory layer for any agent workflow
  • Zero-config installation from the skills.sh marketplace

Remember by the numbers

  • 502 all-time installs (skills.sh)
  • +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,765 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill remember

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs502
repo stars3.9k
Last updatedJanuary 26, 2026
Repositoryparcadei/continuous-claude-v3

How do you give Claude agents persistent project memory?

Give their Claude agent persistent memory across sessions so it remembers project context, decisions, and user preferences without repeating explanations.

Who is it for?

Developers running long-lived Claude agent workflows who need durable recall of project decisions, working solutions, and failed experiments.

Skip if: One-shot coding tasks with no repeated sessions or teams forbidden from storing project context in a PostgreSQL memory database.

When should I use this skill?

A useful pattern, architectural decision, or failed approach should be saved so future agent sessions do not repeat the same mistakes.

What you get

PostgreSQL memory records, BGE embedding vectors, typed learning entries, and cross-session recall of decisions and failed approaches.

  • typed memory entries
  • embedding-indexed recall records
  • cross-session context retrieval

Files

SKILL.mdMarkdownGitHub ↗

Remember - Store Learning in Memory

Store a learning, pattern, or decision in the memory system for future recall.

Usage

/remember <what you learned>

Or with explicit type:

/remember --type WORKING_SOLUTION <what you learned>

Examples

/remember TypeScript hooks require npm install before they work
/remember --type ARCHITECTURAL_DECISION Session affinity uses terminal PID
/remember --type FAILED_APPROACH Don't use subshell for store_learning command

What It Does

1. Stores the learning in PostgreSQL with BGE embeddings 2. Auto-detects learning type if not specified 3. Extracts tags from content 4. Returns confirmation with ID

Learning Types

TypeUse For
WORKING_SOLUTIONFixes, solutions that worked (default)
ARCHITECTURAL_DECISIONDesign choices, system structure
CODEBASE_PATTERNPatterns discovered in code
FAILED_APPROACHWhat didn't work
ERROR_FIXSpecific error resolutions

Execution

When this skill is invoked, run:

cd $CLAUDE_OPC_DIR && PYTHONPATH=. uv run python scripts/core/store_learning.py \
  --session-id "manual-$(date +%Y%m%d-%H%M)" \
  --type <TYPE or WORKING_SOLUTION> \
  --content "<ARGS>" \
  --context "manual entry via /remember" \
  --confidence medium

Auto-Type Detection

If no --type specified, infer from content:

  • Contains "error", "fix", "bug" → ERROR_FIX
  • Contains "decided", "chose", "architecture" → ARCHITECTURAL_DECISION
  • Contains "pattern", "always", "convention" → CODEBASE_PATTERN
  • Contains "failed", "didn't work", "don't" → FAILED_APPROACH
  • Default → WORKING_SOLUTION

Related skills

How it compares

Use remember when agent memory must survive sessions in a queryable database rather than relying on static CLAUDE.md notes alone.

FAQ

How does remember store agent learnings?

remember accepts /remember commands with optional types like WORKING_SOLUTION or ARCHITECTURAL_DECISION. The skill stores entries in PostgreSQL with BGE embeddings so Claude agents can recall patterns and decisions in later sessions.

What should developers save with remember?

remember fits working solutions, architectural decisions, and FAILED_APPROACH notes that future sessions should not rediscover. Developers use it when repeated agent runs waste time re-explaining project constraints or retrying known-bad commands.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.