
from agent-skills13
Valkey is a Redis-compatible in-memory datastore for caching, sessions, pub/sub, streams, queues, and distributed locks—useful for low-latency caching, rate lim
Valkey is an open-source, Redis-compatible in-memory data store designed for sub-millisecond key-value operations. This skill packages operational guidance, patterns, and deployment tips for using Valkey as a drop-in Redis replacement: cache-aside patterns, session storage, rate limiting, pub/sub messaging, reliable queues (streams + consumer groups), leaderboards (sorted sets), and distributed locking. The skill also documents Docker deployment recommendations and migration notes when moving from Redis.
Use this skill when you need very low-latency key-value access (caching, session stores), implement rate limiting, build real-time leaderboards or counters, or require lightweight pub/sub messaging. Avoid for primary relational data storage, large binary object stores, or workloads that need multi-key ACID transactions without additional coordination.
This skill is primarily operational and integrates with developer/ops-oriented agents: automation agents that can run shell/Docker commands, deployment planners, and performance optimizers (e.g., CLI-based agents like Copilot/Codex/Claude Code when combined with Docker tooling).
Valkey is a Redis-compatible in-memory datastore reference skill with no executable scripts. SKILL.md is well-structured with clear use/non-use guidance, a comprehensive quick-reference table, common mistakes section, and delegation hints. Purely documentation-driven with progressive disclosure via a references/ directory. No security concerns — zero executable content.
Clean reference skill. No scripts, no security concerns. Well-organized architecture with proper frontmatter and references/. The common mistakes section is a nice practical touch.
Git Workflow Practices
Provides branching strategies, commit conventions, CI/CD recommendations, and repository hygiene patterns for teams adopting trunk-based development and stacked
Design System
Guides building scalable design systems: tokens, theming, component patterns, accessibility, and governance.
Tauri
Tauri v2 guidance for building small, secure desktop and mobile apps with web frontends and Rust backends — covers IPC, plugins, packaging, signing, and distrib
React Motion Animations
Expert implementation of Motion (formerly Framer Motion) for React, covering gestures, scroll effects, and layout transitions.
React Native with Expo
Comprehensive guide for building universal native apps using React Native and Expo, covering routing, CI/CD, and native device APIs.
TanStack Hotkeys
Type-safe keyboard shortcuts for React apps with cross-platform Mod key abstraction and sequence recording.