thinkfleetai/thinkfleet-engine

redis-query

Execute Redis commands using redis-cli.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill redis-query

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 908 B
  • docs SUMMARY.md 58 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Redis Query

Execute Redis commands via redis-cli.

Environment Variables

  • REDIS_URL - Redis connection URL (e.g. redis://user:pass@host:6379/0)

Basic commands

redis-cli -u "$REDIS_URL" PING
redis-cli -u "$REDIS_URL" GET mykey
redis-cli -u "$REDIS_URL" SET mykey "hello" EX 3600

Scan keys (safe for production)

redis-cli -u "$REDIS_URL" --scan --pattern "session:*" | head -20

Hash operations

redis-cli -u "$REDIS_URL" HGETALL user:123

Server info

redis-cli -u "$REDIS_URL" INFO server | head -20

Notes

  • Avoid KEYS * on large databases; use SCAN instead.
  • Confirm before running FLUSHDB, FLUSHALL, or DEL on multiple keys.