Agent skill · AI & Agents

remember

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

vibeeval521★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill remember --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/remember/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 | Type | Use For | |------|---------| | `WORKING_SOLUTION` | Fixes, solutions that worked (default) | | `ARCHITECTURAL_DECISION` | Design choices, system structure | | `CODEBASE_PATTERN` | Patterns discovered in code | | `FAILED_APPROACH` | What didn't work | | `ERROR_FIX` | Specific error resolutions | ## Execution When this skill is invoked, run: ```bash 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_SOLUT

What's inside
Steps it walks through
  1. Usage
  2. Examples
  3. What It Does
  4. Learning Types
  5. Execution
  6. Auto-Type Detection
Commands it runs
cd $CLAUDE_OPC_DIR && PYTHONPATH=. uv run python scripts/core/store_learning.py \
More from vibecosystem
All skills →
About this skill
What does the remember skill do?

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

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill remember --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going