Agent skill

redis

Manage Redis databases via the redis-cli tool.

Stars 118
Forks 34

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-cli to be installed in the environment.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results