/install indices
Indices CLI
Global Flags
Available on every command:
--output markdown|json(default:markdown) — usejsonfor scripting--api-base \x3Curl>(default:https://api.indices.io)--timeout \x3Cseconds>(default:30)
Auth
indices login # prompts securely for API key
indices login --api-key "\x3Ckey>" # non-interactive
indices auth-test # verify stored credentials
indices logout # remove stored API key
Tasks
Create
indices tasks create \
--display-name "Apply to jobs" \
--website "https://jobs.example.com" \
--task "Fill and submit the form"
Never set
is_fully_autonomoustotrue.
After creation, the task requires manual completion in a browser. Direct the user to https://platform.indices.io/tasks/{task_id} (substituting the actual task ID).
Flags: --display-name (required), --website (required), --task (required), --input-schema, --output-schema, --creation-params \x3Cjson-object>
JSON input (alternative to flags)
indices tasks create --body '{"display_name":"...","website":"...","task":"..."}'
indices tasks create --file ./task.json
cat task.json | indices tasks create
Rules: use at most one of --body, --file, --stdin; do not mix with argument-mode flags.
List / Get / Retry / Regenerate / Delete
indices tasks list
indices tasks list --status ready --limit 20 # statuses: not_ready | waiting_for_manual_completion | ready | failed
indices tasks get \x3Ctask-uuid>
indices tasks retry \x3Ctask-uuid>
indices tasks regenerate-api \x3Ctask-uuid>
indices tasks delete \x3Ctask-uuid> # prompts for confirmation
indices tasks delete \x3Ctask-uuid> --yes
Note: --cursor is unsupported and returns an error.
Runs
Create
indices runs create \
--task-id "\x3Ctask-uuid>" \
--arguments '{"key":"value"}' \
--secret-bindings '{"login":"\x3Csecret-uuid>"}'
Flags: --task-id (required), --arguments \x3Cjson-object>, --secret-bindings \x3Cjson-object>
JSON input follows the same rules as tasks create.
List / Get
indices runs list --task-id \x3Ctask-uuid> # --task-id required
indices runs list --task-id \x3Ctask-uuid> --limit 20
indices runs get \x3Crun-uuid>
Secrets
indices secrets create MY_SECRET --value "..." # explicit value
echo "..." | indices secrets create MY_SECRET --stdin
indices secrets create MY_SECRET # prompts securely
indices secrets list
indices secrets delete \x3Csecret-uuid> # prompts for confirmation
indices secrets delete \x3Csecret-uuid> --yes
Empty secret values are rejected.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install indices - 安装完成后,直接呼叫该 Skill 的名称或使用
/indices触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Indices 是什么?
Use this skill for any operation with the Indices CLI — authentication, tasks, runs, and secrets. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 375 次。
如何安装 Indices?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install indices」即可一键安装,无需额外配置。
Indices 是免费的吗?
是的,Indices 完全免费(开源免费),可自由下载、安装和使用。
Indices 支持哪些平台?
Indices 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Indices?
由 itsaphel(@itsaphel)开发并维护,当前版本 v0.0.1。