ov-layers/skills/redis/SKILL.md
Redis in-memory data store on port 6379 with periodic persistence. Use when working with Redis, caching, or session storage in containers.
npx skillsauth add overthinkos/overthink-plugins redisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
| Property | Value |
|----------|-------|
| Dependencies | none |
| Ports | 6379 |
| Service | redis (supervisord, priority 20) |
| Install files | tasks: |
| Variable | Value |
|----------|-------|
| REDIS_URL | redis://127.0.0.1:6379 |
| Variable | Template Value | Resolved Example |
|----------|---------------|-----------------|
| REDIS_URL | redis://{{.ContainerName}}:6379 | redis://ov-redis:6379 |
Pod-aware: same-container consumers receive redis://localhost:6379, cross-container consumers receive redis://ov-redis:6379. When ov config runs, REDIS_URL is automatically injected into the global deploy.yml env for Redis service discovery.
See /ov:layer for env_provides field docs.
redis (dnf request) → installed as valkey-compat-redis on
Fedora 43. The old redis package was replaced; dnf resolves the
name via Provides:, but rpm -q redis returns "not installed".
Any package: test must query the real installed name. See
/ov:test Authoring Gotcha #8.# image.yml -- typically used as dependency of immich
my-image:
layers:
- redis
/ov-images:immich/ov-images:immich-mlThe layer ships 5 declarative checks embedded in the org.overthinkos.tests
OCI label (see /ov:test for the full schema — this layer is the
gold-standard pattern referenced there):
ov image test, via podman run --rm):
redis-binary — /usr/bin/redis-server existsredis-cli-binary — /usr/bin/redis-cli existsredis-package — valkey-compat-redis package installed (real
installed provider on Fedora 43; see Packages note above)ov test against a live service; uses
${HOST_PORT:6379} runtime substitution so the checks keep working
if deploy.yml remaps the host port — host-side tests always use
127.0.0.1:${HOST_PORT:N}, not ${CONTAINER_IP}):
redis-responds — redis-cli -h 127.0.0.1 -p ${HOST_PORT:6379} ping returns PONGredis-port-open — TCP dial 127.0.0.1:${HOST_PORT:6379} succeedsComposed-vs-standalone skip behavior: when redis is a sub-layer of
a larger image (e.g. immich-ml) that doesn't expose port 6379 on the
host, the deploy-scope tests correctly skip with
unresolved variables: HOST_PORT:6379. No authoring action needed.
/ov-layers:immich -- primary consumer (depends on redis)/ov-layers:postgresql -- often paired with redis in service stacks/ov:test -- declarative testing framework (this layer is the gold-standard pattern)/ov:layer -- layer authoring + env_provides field docs/ov-layers:valkey -- Remi-repo Valkey 9 package (separate layer; different version than Fedora's default valkey-compat-redis)Use when the user asks about:
REDIS_URL configurationtools
OpenCharly CLI (charly) binary installed into container/VM images for in-container use. Use when working with charly binary deployment inside containers, native D-Bus support, or the full charly toolchain (charly binary + virtualization + gocryptfs + socat).
development
Operator CachyOS workstation profile — a kind:local template + target:local deploy that installs the full dev stack (30 candies) onto a CachyOS host via ShellExecutor. Lives in the overthinkos/cachyos submodule. MUST be invoked before editing or applying the charly-cachyos workstation profile.
tools
Fedora box with the full charly toolchain using shared candies. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Same candy list as charly-arch. Includes NVIDIA GPU runtime. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-fedora box.
tools
Arch Linux box with the full charly toolchain. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Composes /charly-coder:charly-mcp so the box is reachable as an MCP gateway on port 18765. NVIDIA GPU runtime composed in. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-arch box.