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*"