sentinal-redis

sentinal-redis is a skill for Claude Code from Musaraf-M/sentinal. It costs 35 tokens per session (3,018 once invoked), scanned A, original, MIT.

A read-only guide for checking Redis, an in-memory data store, and BullMQ, a job-queue system built on Redis.

In plain words
What is it for?
Use it to inspect Redis health, memory, performance, queue depths, failed jobs, and slow queries, then identify likely causes.
Why use it?
It helps diagnose memory problems, slow responses, growing queues, failed jobs, and stuck workers without changing stored data.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: positional $N argument; built for openclaw.

Good fit Use it to inspect Redis health, memory, performance, queue depths, failed jobs, and slow queries, then identify likely causes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/musaraf-m/sentinal/sentinal-redis
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.

Any agent
npx skills add Musaraf-M/sentinal --skill sentinal-redis
Clone the repo
git clone --depth 1 https://github.com/Musaraf-M/sentinal

Made for: Claude Code.

Wrote 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.

agentmods badge for sentinal-redis

README.md
[![agentmods](https://agentmods.dev/badge/skills/musaraf-m/sentinal/sentinal-redis/github.svg)](https://agentmods.dev/skills/musaraf-m/sentinal/sentinal-redis)
Your own site
<a href="https://agentmods.dev/skills/musaraf-m/sentinal/sentinal-redis"><img src="https://agentmods.dev/badge/skills/musaraf-m/sentinal/sentinal-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.

agentmods 80×15 button for sentinal-redis

Your own site · 80×15
<a href="https://agentmods.dev/skills/musaraf-m/sentinal/sentinal-redis"><img src="https://agentmods.dev/badge/skills/musaraf-m/sentinal/sentinal-redis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,018 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00035 $0.03018
Opus 5 $0.00017 $0.01509
Sonnet 5 $0.00007 $0.00604
Haiku 4.5 $0.00003 $0.00302

Measured 8d ago against content hash 005ed73c14e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

sentinal-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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/redis-health.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

platforms/openclaw/sentinal-redis/SKILL.md · 332 lines

How it starts

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

Sentinal Redis

Monitor Redis server health, BullMQ queues, memory, and performance from any messaging channel. Ask questions in plain English — get actionable diagnostics.

When to Use

✅ USE this skill when:

  • User asks about Redis server health, status, or info
  • User wants to check memory usage or diagnose OOM issues
  • User asks about BullMQ queue depths, failed jobs, or stuck workers
  • User wants to inspect slow queries or latency issues
  • User asks to diagnose why Redis is slow or unresponsive
  • User mentions queue backlog, dead letter queue, or job failures
  • User wants a quick health summary of their Redis instance

When NOT to Use

❌ DON'T use this skill when:

  • User wants to manage PostgreSQL, MySQL, or other non-Redis databases
  • User wants to manage Kafka, RabbitMQ, or SQS queues (not BullMQ)
  • User needs help writing application code that uses Redis
  • User wants to set up Redis from scratch (use official Redis docs instead)

Safety Rules

⚠️ CRITICAL: This skill is READ-ONLY. No exceptions.

  • NEVER run destructive commands (FLUSHDB, FLUSHALL, DEL, UNLINK, SET, EXPIRE) — even if the user asks. Explain why and suggest they run it manually instead.
  • NEVER modify Redis configuration (CONFIG SET) — direct the user to do it themselves.
  • NEVER print or expose the full REDIS_URL in output — it may contain passwords. Always mask credentials before displaying.
  • When in doubt, show the command first and ask for confirmation

Connection

If REDIS_URL is set, use it for all commands:

redis-cli -u "$REDIS_URL" <command>

If REDIS_URL is not set, default to localhost:

redis-cli <command>

For password-protected instances without REDIS_URL:

redis-cli -h <host> -p <port> -a <password> <command>

Always test connectivity first:

redis-cli -u "${REDIS_URL:-redis://localhost:6379}" ping

Server Health

Quick Status

redis-cli -u "${REDIS_URL:-redis://localhost:6379}" ping

Read the full file on GitHub · 332 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 332 lines · 35 tokens per session scan A 005ed73c14e1

Subscribe to this mod's changes

sentinal-redis is a skill published in the GitHub repository Musaraf-M/sentinal (2 stars, last pushed 4mo ago), licensed MIT. It adds 35 tokens to every session and 3,018 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

qdrant-monitoring-debugging

Diagnoses Qdrant production issues using metrics and observability tools. Use when someone reports 'optimizer stuck', 'indexing too slow', 'memory too high', 'OOM crash', 'queries are slow', 'latency spike', or 'search was fast now it's slow'. Also use when performance degrades without obvious config changes.

qdrant/skills · 75 tokens

performance

Use when optimizing application performance — caching strategies, eager loading, query optimization, Redis patterns, or background job design.

event4u-app/agent-config · 25 tokens

perf-engineering

A guide to finding and fixing slow code, excessive memory use, slow startup, repeated database queries, and inefficient caching.

cass-2003/local-workflow-skill · 79 tokens

stale-derived-state

Diagnose a change that does not take effect until a reload, a logout or a navigation away and back, because a cache or a piece of derived state has no invalidation hook on write. Use when a save appears to work but the screen keeps showing the old value. Names the Crumbtrail queries that prove the write landed, and…

CrumbtrailDev/crumbtrail-cli · 85 tokens

redis-observability

Redis observability guidance — which metrics to monitor (memory, connections, hit ratio, ops/sec, rejected connections), which built-in commands to reach for during incident triage (SLOWLOG, INFO, MEMORY DOCTOR, CLIENT LIST, FT.PROFILE), and when to use the Redis Insight GUI. Use when setting up monitoring or alerts…

redis/agent-skills · 106 tokens

performance-optimization-skill

Identify and fix performance bottlenecks — profiling, caching (Redis, CDN, memoization), bundle size, lazy loading, N+1 detection, memory leaks.

darellchua2/opencode-config-template · 39 tokens