ALWAYS use this skill BEFORE any of these actions: (1) Implementing something non-trivial — search for prior decisions and patterns in this area before writing code. (2) Encountering unfamiliar code or architecture — search for entity knowledge before exploring from scratch. (3) The user references past work, past decisions, or "what we decided" — search for that context. (4) You are stuck or blocked on a problem — search for related cases and solutions. (5) Making a decision that could confl...
Install
Quick install
npx skills add https://github.com/Rememora/rememoranpx skills add Rememora/rememora --agent claude-codenpx skills add Rememora/rememora --agent cursornpx skills add Rememora/rememora --agent codexnpx skills add Rememora/rememora --agent opencodenpx skills add Rememora/rememora --agent github-copilotnpx skills add Rememora/rememora --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add Rememora/rememoraManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/Rememora/rememora.gitcp -r rememora ~/.claude/skills/Rememora Search
ALWAYS use this skill BEFORE any of these actions: (1) Implementing something non-trivial — search for prior decisions and patterns in this area before writing code. (2) Encountering unfamiliar code or architecture — search for entity knowledge before exploring from scratch. (3) The user references past work, past decisions, or "what we decided" — search for that context. (4) You are stuck or blocked on a problem — search for related cases and solutions. (5) Making a decision that could confl...
---
name: rememora-search
description: >
ALWAYS use this skill BEFORE any of these actions:
(1) Implementing something non-trivial — search for prior decisions and patterns in this area before writing code.
(2) Encountering unfamiliar code or architecture — search for entity knowledge before exploring from scratch.
(3) The user references past work, past decisions, or "what we decided" — search for that context.
(4) You are stuck or blocked on a problem — search for related cases and solutions.
(5) Making a decision that could conflict with a prior one — search to check for consistency.
This skill fires BEFORE you act — search first, then implement.
allowed-tools: Bash
---
Search Rememora for Prior Knowledge
Before starting non-trivial work, check if there is relevant knowledge from
prior sessions. Rememora stores memories in three tiers (L0 abstract, L1
overview, L2 content), so you can filter cheaply before paying the full
token cost of a memory.
Progressive-disclosure workflow (search → timeline → get)
Do not pull full memory content up front. Use the three verbs in order.
1. rememora search --format compact — filter
Scan for relevant memories by topic. Compact output is one line per hit
(~75 tokens/hit), enough to decide whether to drill in.
rememora search "<what you're looking for>" --project <project-name> --format compact
Each line looks like:
[decision] Picked Redis over Memcached — rememora://projects/foo/memories/decision/redis-caching (rank=-1.23)
Query tips:
- Use the topic or domain:
"database choice","auth middleware" - Use the problem area:
"JWT token expiration","rate limiting" - Use the entity name:
"Stripe integration","prisma schema"
2. rememora timeline --anchor <uri> — context around a hit
Once a hit looks promising, pull the neighbours around it to understand
what else was happening when that decision was made. Sorted by creation
time by default (--by ts); use --by hotness to rank peers by
importance + hotness instead.
rememora timeline \
--anchor rememora://projects/foo/memories/decision/redis-caching \
--before 3 --after 3
You get the three closest older memories, the anchor, and the three
closest newer memories — each rendered in the same compact shape.
3. rememora get <uri> — full L2 content
Only when you know you want everything: pull the full abstract + overview +
content for a specific URI.
rememora get rememora://projects/foo/memories/decision/redis-caching
Example flow
# Step 1: filter
rememora search "caching strategy" --project acme --format compact
# → hit: rememora://projects/acme/memories/decision/redis-caching (rank=-2.1)
# Step 2: context
rememora timeline --anchor rememora://projects/acme/memories/decision/redis-caching --before 3 --after 3
# → see what else was decided that week
# Step 3: full content (only for the most relevant hit)
rememora get rememora://projects/acme/memories/decision/redis-caching
When to search
| Situation | Search for |
|---|---|
| About to implement a feature | Prior decisions about architecture, framework choices, patterns |
| Debugging a problem | Prior cases with similar symptoms or in the same area |
| User says "we decided..." or "remember when..." | The specific decision or event |
| Working with unfamiliar code | Entity knowledge about that module/service |
| Making a trade-off choice | Prior decisions to maintain consistency |
After searching
- If results are relevant: incorporate them into your approach. Mention what you found.
- If no results: proceed normally. Not everything has prior context.
- Do not fabricate memories — only use what rememora returns.
Rules
- Search BEFORE acting — don't implement first and search after.
- Filter cheaply first —
--format compactfor search, thentimeline, thenget. Do not default to the fullsearchoutput — it burns tokens. - Be brief — one search, check results, move on.
- Don't search for things you can just read — use Read/Grep for code, rememora for decisions and context.
---
Source: https://github.com/Rememora/rememora
Author: Rememora
Discovered via: skillsdirectory.com
Genre: ai-agents
SKILL.md source
--- name: Rememora Search description: ALWAYS use this skill BEFORE any of these actions: (1) Implementing something non-trivial — search for prior decisions and patterns in this area before writing code. (2) Encountering unfamiliar cod... --- # Rememora Search ALWAYS use this skill BEFORE any of these actions: (1) Implementing something non-trivial — search for prior decisions and patterns in this area before writing code. (2) Encountering unfamiliar code or architecture — search for entity knowledge before exploring from scratch. (3) The user references past work, past decisions, or "what we decided" — search for that context. (4) You are stuck or blocked on a problem — search for related cases and solutions. (5) Making a decision that could confl... --- name: rememora-search description: > ALWAYS use this skill BEFORE any of these actions: (1) Implementing something non-trivial — search for prior decisions and patterns in this area before writing code. (2) Encountering unfamiliar code or architecture — search for entity knowledge before exploring from scratch. (3) The user references past work, past decisions, or "what we decided" — search for that context. (4) You are stuck or blocked on a problem — search for related cases and solutions. (5) Making a decision that could conflict with a prior one — search to check for consistency. This skill fires BEFORE you act — search first, then implement. allowed-tools: Bash --- # Search Rememora for Prior Knowledge Before starting non-trivial work, check if there is relevant knowledge from prior sessions. Rememora stores memories in three tiers (L0 abstract, L1 overview, L2 content), so you can filter cheaply before paying the full token cost of a memory. ## Progressive-disclosure workflow (search → timeline → get) Do not pull full memory content up front. Use the three verbs in order. ### 1. `rememora search --format compact` — filter Scan for relevant memories by topic. Compact output is one line per hit (~75 tokens/hit), enough to decide whether to drill in. ```bash rememora search "<what you're looking for>" --project <project-name> --format compact ``` Each line looks like: ``` [decision] Picked Redis over Memcached — rememora://projects/foo/memories/decision/redis-caching (rank=-1.23) ``` Query tips: - Use the topic or domain: `"database choice"`, `"auth middleware"` - Use the problem area: `"JWT token expiration"`, `"rate limiting"` - Use the entity name: `"Stripe integration"`, `"prisma schema"` ### 2. `rememora timeline --anchor <uri>` — context around a hit Once a hit looks promising, pull the neighbours around it to understand what else was happening when that decision was made. Sorted by creation time by default (`--by ts`); use `--by hotness` to rank peers by importance + hotness instead. ```bash rememora timeline \ --anchor rememora://projects/foo/memories/decision/redis-caching \ --before 3 --after 3 ``` You get the three closest older memories, the anchor, and the three closest newer memories — each rendered in the same compact shape. ### 3. `rememora get <uri>` — full L2 content Only when you know you want everything: pull the full abstract + overview + content for a specific URI. ```bash rememora get rememora://projects/foo/memories/decision/redis-caching ``` ## Example flow ```bash # Step 1: filter rememora search "caching strategy" --project acme --format compact # → hit: rememora://projects/acme/memories/decision/redis-caching (rank=-2.1) # Step 2: context rememora timeline --anchor rememora://projects/acme/memories/decision/redis-caching --before 3 --after 3 # → see what else was decided that week # Step 3: full content (only for the most relevant hit) rememora get rememora://projects/acme/memories/decision/redis-caching ``` ## When to search | Situation | Search for | |---|---| | About to implement a feature | Prior decisions about architecture, framework choices, patterns | | Debugging a problem | Prior cases with similar symptoms or in the same area | | User says "we decided..." or "remember when..." | The specific decision or event | | Working with unfamiliar code | Entity knowledge about that module/service | | Making a trade-off choice | Prior decisions to maintain consistency | ## After searching - If results are relevant: incorporate them into your approach. Mention what you found. - If no results: proceed normally. Not everything has prior context. - **Do not fabricate memories** — only use what rememora returns. ## Rules 1. **Search BEFORE acting** — don't implement first and search after. 2. **Filter cheaply first** — `--format compact` for search, then `timeline`, then `get`. Do not default to the full `search` output — it burns tokens. 3. **Be brief** — one search, check results, move on. 4. **Don't search for things you can just read** — use Read/Grep for code, rememora for decisions and context. --- **Source**: https://github.com/Rememora/rememora **Author**: Rememora **Discovered via**: skillsdirectory.com **Genre**: ai-agents
Related skills 6
running-claude-code-via-litellm-copilot
Use when routing Claude Code through a local LiteLLM proxy to GitHub Copilot, reducing direct Anthropic spend, configuring ANTHROPIC_BASE_URL or ANTHROPIC_MODEL overrides, or troubleshooting Copilot proxy setup failures such as model-not-found, no localhost traffic, or GitHub 401/403 auth errors.
skills-cli
Use when users ask to discover, install, list, check, update, remove, back up, restore, sync, or initialize Agent Skills, mention `bunx skills`, `npx skills`, `skills.sh`, or `skills-lock.json`, ask "find a skill for X", or want help extending agent capabilities with installable skills.
repo-intake-and-plan
Narrow RigorPilot helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, classify inference, evaluation, and training candidates, and return the smallest trustworthy reproduction plan to the main orchestrator. Do not use for environment setup, asset download, command execution, final reporting, paper lookup, or end-to-end orchestration.
image-to-video
Animate any still image on RunComfy — this skill is a smart router that matches the user's intent to the right i2v model in the RunComfy catalog. Picks HappyHorse 1.0 I2V (Arena #1, native audio, identity preservation) for general animations, Wan 2.7 with `audio_url` for custom-voiceover lip-sync, or Seedance 2.0 Pro for multi-modal animation from image + reference video + reference audio. Bundles each model's documented prompting patterns so the caller gets sharper output without burning ite...
video-edit
Edit existing video on RunComfy — this skill is a smart router that matches the user's intent to the right edit model in the RunComfy catalog. Picks Wan 2.7 Edit-Video (general restyle / background swap / packaging swap, identity + motion preservation), Kling 2.6 Pro Motion Control (transfer precise motion from a reference video to a target character), or Lucy Edit Restyle (lightweight identity-stable restyle / outfit swap). Bundles each model's documented prompting patterns so the skill gets...
nano-banana-2
Generate images with Google Nano Banana 2 (Gemini-family flash-tier text-to-image) on RunComfy — bundled with the model's documented prompting patterns so the skill gets sharper output than naive prompting against the same model. Documents Nano Banana 2's strengths (rapid iteration, in-image typography rendering, predictable framing, optional web-grounded context), the resolution-tier pricing, the safety-tolerance dial, and when to route to Nano Banana Pro / GPT Image 2 / Flux 2 / Seedream in...