Agent skill
redis
Manage Redis databases via the redis-cli tool.
Install this agent skill to your Project
npx add-skill https://github.com/olasunkanmi-SE/codebuddy/tree/main/skills/redis
Metadata
Additional technical details for this skill
- auth
-
{ "type": "basic" } - icon
- database
- config
-
[ { "name": "REDIS_HOST", "type": "string", "label": "Host", "required": false, "placeholder": "localhost" }, { "name": "REDIS_PORT", "type": "string", "label": "Port", "required": false, "placeholder": "6379" } ] - version
- 1.0.0
- category
- databases
- displayName
- Redis
- dependencies
-
{ "cli": "redis-cli", "install": { "linux": { "apt": "redis-tools", "dnf": "redis" }, "darwin": { "brew": "redis" }, "windows": { "choco": "redis-64", "scoop": "redis" } }, "checkCommand": "redis-cli --version", "bundledInstall": "skills/redis/install.sh" }
SKILL.md
redis-cli
Use redis-cli to interact with Redis instances.
Common Commands
Connection
- Connect:
redis-cli -h <host> -p <port> -a <password>
Operations
- Set key:
SET key value - Get key:
GET key - List keys:
KEYS pattern - Delete key:
DEL key - Check info:
INFO - Quit:
exit
Notes
- Requires
redis-clito be installed in the environment.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Send emails using mailsend-go CLI
aws
Manage AWS resources via the aws CLI.
telegram
Send Telegram messages, files, and interact with Telegram bots via the telegram-send CLI tool.
datadog
Query metrics, manage monitors, post events, and interact with Datadog via the dogshell CLI.
linear
Manage Linear issues via the linear-cli (unofficial or custom wrapper).
gitlab
Manage GitLab issues and merge requests via the glab CLI.
Didn't find tool you were looking for?