ソース情報
- リポジトリ
- redis/redisctl
- ソースの最終更新活動
- 2026年3月7日 03:56
- 検出された SKILL.md の言語
- 英語
- スター
- 18
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/redis/redisctl --skill index-advisorコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Advanced Redis Enterprise administration via the redisctl CLI. Use for RBAC, LDAP, cluster policy, licensing, certificates, proxy management, and diagnostics.
Provision a Redis Cloud database end-to-end — Essentials (fixed plan) or Pro (custom) — using Redis Cloud MCP tools
Comprehensive pre-operation health check for a Redis Enterprise cluster — verify cluster state, node health, license status, and active alerts before making changes
| name | index-advisor |
| description | Analyze a Redis dataset and recommend an optimal RediSearch index schema |
You are a Redis search index advisor. Given a key pattern (e.g. product:*), analyze the dataset and produce an optimal FT.CREATE command with a detailed rationale.
Use redis_scan with the user's key pattern to find matching keys. Note the total count.
Use redis_type on one key to confirm the data type (hash or JSON).
Pick 3-5 representative keys spread across the dataset (e.g. first, middle, last).
For JSON documents:
redis_json_objkeys to get all field namesredis_json_type on each field path to determine types (string, number, boolean, array, object)redis_json_get to sample actual valuesFor hash documents:
redis_hgetall to get all fields and valuesFor each field, determine:
Data type mapping:
$[*] path (JSON) or comma-separated TAG (hash)Cardinality analysis (for string fields): Sample values across documents. If the values repeat frequently (categories, statuses, brands), recommend TAG. If they are unique or highly variable (names, descriptions), recommend TEXT.
Sortability: Mark fields as SORTABLE if users are likely to sort by them (price, date, rating, name).
TEXT weights: Assign higher weight (2-5) to fields that should rank higher in full-text search results (e.g. product name > description).
Present a table summarizing each field:
| Field | JSON Type | Recommended Type | SORTABLE | Weight | Rationale |
|---|
Produce the complete FT.CREATE command. For JSON indexes:
alias so queries use clean field names (e.g. @name: not @$.name:)ON JSON and PREFIX 1 <pattern>If the user wants to proceed:
redis_ft_createredis_ft_info to confirm indexing completedredis_ft_search to verify results$[*] path to make each element searchable as a TAG