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.
npx skills add neverinfamous/memory-journal-mcp --skill redisgit clone --depth 1 https://github.com/neverinfamous/memory-journal-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/redis)<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/redis"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/redis/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/redis"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/redis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00080 | $0.00452 |
| Opus 5 | $0.00040 | $0.00226 |
| Sonnet 5 | $0.00016 | $0.00090 |
| Haiku 4.5 | $0.00008 | $0.00045 |
Grade A, and why
redis 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 10d 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.
What it actually says
Redis Best Practices
Standards for deploying and using Redis as a cache or key-value store.
1. Connection Management
- Connection Pooling: Use a persistent connection object across your application. Do not create a new Redis client on every request.
- Timeouts & Reconnects: Always configure
connectTimeoutand strict reconnect strategies. Redis can drop connections under load; your app must handle retries gracefully without stalling.
2. Caching Strategies
- Cache-Aside Pattern: Read from cache; if miss, read from DB and write to cache with a TTL.
- Thundering Herd: Use brief locks (distributed locking) or stale-while-revalidate patterns for heavily accessed keys that expire, to prevent database spikes.
- TTL (Time-To-Live): ALWAYS attach a TTL to cache keys unless the key is definitively a permanent config value. Use staggered TTLs (e.g., base TTL + random jitter) to avoid mass expirations.
3. Data Structures
- Hashes (HSET/HGET): Use Hashes to store objects instead of stringified JSON when you need to update or read individual fields.
- Sets (SADD/SMEMBERS): Use Sets for unique collections (e.g., user IDs online) and quick membership checks.
- Pipelines: Use
MULTI/EXECor Pipelines to batch commands together and save network round trips.
4. Security
- Never expose the Redis port (
6379) to the public internet. Ensure it is accessible only within a VPC or private network. - Use TLS (
rediss://) and authentication for managed instances (e.g., AWS ElastiCache, Render Redis).
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.
- 10d ago First seen · 32 lines · 80 tokens per session scan A 995c312ab22c
redis is a skill published in the GitHub repository neverinfamous/memory-journal-mcp (20 stars, last pushed 1mo ago), licensed MIT. It adds 80 tokens to every session and 452 once invoked, about $0.0004 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.
Other skills, from other repositories
migration-helper
Guide safe database and code migrations with zero-downtime strategies.
surrealdb-canonical-layer
Verify a SurrealDB-backed canonical layer directly, over the surrealdb MCP server, instead of writing a disposable Node script per check. Use whenever the user asks to confirm a batch of writes landed correctly ("did the FreedomFest speakers get tagged right", "do these people have an org relationship", "check that…
redis-patterns
Redis patterns — caching (cache-aside, write-through), sessions, pub/sub, work queues, distributed locks, data structures (sorted sets, streams, hashes). Covers ioredis, node-redis, Redis 7+. Use when designing Redis usage in Node.js or Python apps.
caching-strategy
Adds caching to expensive operations - Redis, in-memory, HTTP cache headers.
redis-js
Work with the Upstash Redis JavaScript/TypeScript SDK for serverless Redis operations. Use for caching, session storage, rate limiting, leaderboards, full-text search (querying, filtering, aggregating with @upstash/redis search extension), and all Redis data structures. Supports automatic serialization/deserialization…
vector-db
Vector database expert for embeddings, similarity search, RAG patterns, and indexing strategies.