redis-cache-only

A coding rule that keeps Redis as a data cache and uses the Hub WebSocket to notify services about configuration changes. Redis pub/sub means sending messages through Redis channels.

In plain words
What is it for?
Use it when adding or reviewing Redis code, especially caching, rate limits, quotas, sessions, or configuration synchronization.
Why use it?
It prevents multiple, conflicting ways to synchronize configuration and avoids missed confirmations or differences after a service restarts.

Cursor rule for Cursor

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 rules/alphabitcore/nexus-gateway/redis-cache-only
Clone the repo
git clone --depth 1 https://github.com/AlphaBitCore/nexus-gateway

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 568 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.00000 $0.00568
Opus 5 $0.00000 $0.00284
Sonnet 5 $0.00000 $0.00114
Haiku 4.5 $0.00000 $0.00057

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

Security

Grade A, and why

redis-cache-only 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 3d 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.

.cursor/rules/redis-cache-only.mdc · 43 lines

How it starts

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

Redis is cache-only — no pub/sub (binding)

Nexus Gateway uses Redis for caching only: sessions, IAM cache, rate-limit counters, response cache, desired-state cache, cert cache, quota counters.

Config invalidation across services is the Hub WebSocket change-signal, not Redis pub/sub. See docs/developers/architecture/cross-cutting/foundation/thing-config-sync-architecture.md and docs/developers/architecture/cross-cutting/storage/cache-multi-tier-architecture.md.

What this rule forbids

  • redis.Subscribe(...), redis.PSubscribe(...) for cross-service event notification.
  • redis.Publish(...) for cross-service signaling.
  • New code that "broadcasts an invalidation via Redis channel nexus:config:...".

What's allowed

  • redis.Set / Get / HGet etc. for plain key-value caching.
  • Lua scripts on Redis for sliding-window counters (quota, rate-limit).
  • Redis-backed LRU promotion in two-tier cert / IAM caches.

Why

The pre-Hub architecture used Redis pub/sub for config invalidation; it had three documented problems (no apply receipt, cold-start divergence, two parallel code paths). The Hub-centric Thing model replaced it. Bringing pub/sub back in any form re-introduces those failure modes.

Enforcement

npm run check:no-redis-pubsub (CI + pre-commit) catches three regression shapes:

  1. Forbidden pub/sub callsredis.Publish/Subscribe/PSubscribe(…) in production Go.
  2. Channel literals — string nexus:config* appearing anywhere in production code.
  3. Deleted-package re-imports — any Go import of packages/shared/heartbeat, packages/control-plane/internal/pubsub, or packages/control-plane/internal_registry. These packages were deleted with the Hub-centric migration; their re-appearance is an unambiguous architectural regression.

Historical context (informational)

Pre-Hub, config invalidation rode nexus:config:shared with payloads "hooks" | "routing" | "credentials" | "all". The pub/sub design had three documented failure modes (no apply receipt, cold-start divergence, two parallel code paths) which the Hub WebSocket change-signal eliminates. The packages named above implemented the old design and are deleted — the names are kept here only so future searches that hit this file get the "use Hub WebSocket instead" answer.

Read the full file on GitHub · 43 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. 3d ago First seen · 43 lines · 0 tokens per session scan A ca366a5cd3b6

Subscribe to this mod's changes

redis-cache-only is a cursor rule published in the GitHub repository AlphaBitCore/nexus-gateway (22 stars, last pushed 7d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 568 tokens. 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.