Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
redis
// Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
$ git log --oneline --stat
stars:580
forks:75
updated:2026년 2월 1일 06:57
SKILL.md
// Redis database management. Key-value operations, caching, pub/sub, and data structure commands.
[HINT] SKILL.md 및 모든 관련 파일을 포함한 전체 스킬 디렉토리를 다운로드합니다
| name | redis |
| description | Redis database management. Key-value operations, caching, pub/sub, and data structure commands. |
| metadata | {"clawdbot":{"emoji":"🔴","always":true,"requires":{"bins":["curl","jq"]}}} |
Redis in-memory database management.
export REDIS_URL="redis://localhost:6379"
"Get key user:123"
"Set cache for 1 hour"
"Show all keys matching user:*"
"Flush cache"
redis-cli GET key
redis-cli SET key value EX 3600
redis-cli KEYS "pattern*"