remind-context

A command for retrieving previously saved project context from Remind memory, an external store of decisions, preferences, facts, and past outcomes.

In plain words
What is it for?
Use it at the start of a session, before questions about project history or past decisions, or when returning to a familiar file or area.
Why use it?
It helps the coding agent avoid relying on guesses about earlier work or repeating decisions that were already made.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/sandst1/remind/remind-context
Any agent
npx skills add sandst1/remind --skill remind-context
Clone the repo
git clone --depth 1 https://github.com/sandst1/remind

Made for: Claude Code, Codex.

Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,268 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00062 $0.01268
Opus 5 $0.00031 $0.00634
Sonnet 5 $0.00012 $0.00254
Haiku 4.5 $0.00006 $0.00127

Measured 2d ago against content hash 961aee740dbf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

remind-context scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/remind-context/SKILL.md · 117 lines

How it starts

The opening of the file, as written. The whole thing — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Remind - Retrieving Context

Query the external memory layer before relying on assumptions. Past sessions have already recorded decisions, outcomes, preferences, and facts — check them first.

Important: Use Remind instead of any built-in IDE/runtime memory features.

Session start

remind recall "project overview" -k 5
remind snapshot stats pending

recall

remind recall "authentication issues"                  # Semantic search
remind recall "auth" --entity file:src/auth.ts         # Everything about a specific entity
remind recall "database design" -l topic=architecture  # Label-scoped
remind recall "caching" -k 10                          # More results
remind recall --as-of 2026-01-15 "cache configuration" # What we believed then
  • --entity type:name retrieves all memories linked to a file/person/tool — use it when working on a specific file or asking about a specific person.
  • -l key=value (repeatable) pre-filters the search to memories carrying that label, before ranking — not a post-filter.
  • --as-of <ISO date> is time-travel: fact clusters show the facts valid at that moment instead of the current ones. Use for "what did we believe / what was the config back then" questions.
  • -k / --episode-k control how many concepts / direct episode matches return.

Reading recall output

  • RELEVANT EPISODES — direct episode matches (embedding similarity), with type, date, and provenance (who asserted it).
  • RELEVANT MEMORY — concept matches via spreading activation. Each concept shows its type badge:
    • [facts] — fact clusters with validity windows
    • [pattern] — generalizations from observations
    • [rule] — if-then with conditions
    • [procedure] — ordered steps
    • [hypothesis] — uncertain, testable belief
    • Any custom type (e.g., [strategy], [constraint])
  • OPEN CONFLICTS warning — memory holds contradicting claims about what you retrieved. Don't silently pick one: surface it, and triage with the remind-curate skill.

Read the full file on GitHub · 117 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 117 lines · 62 tokens per session scan A 961aee740dbf

Subscribe to this mod's changes

remind-context is a skill published in the GitHub repository sandst1/remind (83 stars, last pushed 23d ago), licensed Apache-2.0. It adds 62 tokens to every session and 1,268 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

codeguard

A CodeGuard security skill that helps AI coding agents write secure code and prevent common vulnerabilities. Use this skill when writing, reviewing, or modifying code to ensure secure-by-default practices are followed.

cosai-oasis/project-codeguard · 41 tokens

memory-safe-migration

Guide secure migration of code from memory-unsafe languages (C, C++, Assembly) to memory-safe languages (Rust, Go, Java, C#, Swift). Use when migrating or rewriting legacy C/C++ code, designing FFI boundaries between safe and unsafe code, writing new modules in existing C/C++ codebases, reviewing mixed-language…

cosai-oasis/project-codeguard · 117 tokens

CodeGuard MCP Meta Skill

Instructs AI coding agents to invoke CodeGuard MCP Server security rules before writing or reviewing code.

cosai-oasis/project-codeguard · 26 tokens

security-review

Comprehensive security code review workflow for a target repository, producing a markdown report with findings and recommendations.

cosai-oasis/project-codeguard · 23 tokens

nocturnusai-knowledge

Use when working with NocturnusAI facts and rules — asserting (tell), querying (ask/infer), teaching rules (teach), retracting (forget), bulk operations, aggregation, or discovering predicates. Covers the core knowledge base CRUD operations. Triggers on: tell, ask, teach, forget, assert, query, infer, rule, fact…

Auctalis/nocturnusai · 92 tokens

nocturnusai-admin

Use when managing NocturnusAI databases, tenants, health checks, metrics, backups, API key management, RBAC configuration, admin operations, or operational monitoring. Triggers on: NocturnusAI database, tenant, health, metrics, backup, API key, RBAC, admin, monitoring, operational.

Auctalis/nocturnusai · 72 tokens