Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

indexbindindexbind 命令行

Agent Skill

indexbind 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,930

周安装

159

GitHub Stars

公开资料未说明

下载量

1,234
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:indexbind(indexbind 命令行)
来源仓库:https://github.com/jolestar/indexbind
安装命令:
openclaw skills install indexbind
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install indexbind

简介

提供浏览器自动化与网页检查工具链支持。

  • 适用于 OpenClaw 中页面信息提取与前端流程验证任务。
  • 可集成 Node.js 或 Workers 环境,适配多种运行环境。
  • 需评估是否涉及敏感页面访问,确保符合网站 robots.txt 规则。
  • indexbind 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
indexbind
version
1.0.1
description
Use when an agent needs to install or use indexbind from Node, browsers, Web Workers, or Cloudflare Workers. This skill helps choose the right package, CLI, artifact, and entrypoint, and points to the live markdown docs for details.

Indexbind

Use this skill when the task is about using indexbind from a host application or environment.

Usage examples

  • "Use indexbind to add local search to a docs folder."
  • "Help me choose between indexbind, indexbind/web, and indexbind/cloudflare."
  • "Show me how to build a SQLite artifact for Node and a bundle for Workers."

Install

Install the package:

npm install indexbind

Optional global install when the goal is using indexbind as a shell command from arbitrary directories:

npm install -g indexbind

Then use either:

  • npx indexbind ... for local installs and per-project workflows
  • indexbind ... after a global install
  • import ... from 'indexbind' or indexbind/build for programmatic usage

Platform notes:

  • native prebuilds exist for macOS arm64, macOS x64, and Linux x64 (glibc)
  • Windows usage should go through WSL

Install and packaging docs:

  • https://indexbind.jolestar.workers.dev/guides/getting-started.md
  • https://indexbind.jolestar.workers.dev/reference/packaging.md

Choose the right interface

  • Index a local docs folder or local knowledge-base directory from the shell:

use npx indexbind ...

  • Local Node querying over a built SQLite artifact:

use indexbind

  • Programmatic build, incremental cache update, inspect, or benchmark:

use indexbind/build

  • Mixed local knowledge bases that need host-defined document classification, metadata, or directory weighting:

normalize documents in the host first, then pass them to indexbind/build

  • A mostly-default local docs or knowledge-base directory that only needs light host policy:

use indexbind.build.js and indexbind.search.js beside that directory’s .indexbind/

  • Browser or standard worker querying over a canonical bundle:

use indexbind/web

  • Cloudflare Worker querying:

use indexbind/cloudflare

  • Shell-driven build/update/export/inspect flows:

use npx indexbind ...

API docs:

  • https://indexbind.jolestar.workers.dev/reference/api.md
  • https://indexbind.jolestar.workers.dev/reference/cli.md

Choose the artifact

  • Local directory indexing for later Node queries:

build a native SQLite artifact

  • Local directory indexing for browser or worker delivery:

build a canonical bundle

  • Node runtime:

use a native SQLite artifact

  • Browser, Web Worker, Cloudflare Worker:

use a canonical bundle

  • Repeated rebuilds over a stable corpus:

use the build cache, then export fresh artifacts or bundles

Concepts:

  • https://indexbind.jolestar.workers.dev/concepts/runtime-model.md
  • https://indexbind.jolestar.workers.dev/concepts/canonical-bundles.md

Common commands

Typical CLI commands:

  • npx indexbind build ./docs
  • npx indexbind build-bundle ./docs
  • npx indexbind update-cache ./docs --git-diff
  • npx indexbind build [input-dir] [output-file] [--backend <hashing|model-id>]
  • npx indexbind build-bundle [input-dir] [output-dir] [--backend <hashing|model-id>]
  • npx indexbind update-cache [input-dir] [cache-file] [--git-diff] [--git-base <rev>] [--backend <hashing|model-id>]
  • npx indexbind export-artifact <output-file> [--cache-file <path>]
  • npx indexbind export-bundle <output-dir> [--cache-file <path>]
  • npx indexbind inspect <artifact-file>
  • npx indexbind search <artifact-file> <query>
  • npx indexbind benchmark <artifact-file> <queries-json>

Use indexbind/build instead when the host already has documents in memory or wants tighter control from code.

Index-scoped conventions

When one indexed root only needs a small amount of host-specific behavior, place convention files beside that root:

docs/
  indexbind.build.js
  indexbind.search.js
  .indexbind/

Use indexbind.build.js when the default directory scanner is already correct and you only need to:

  • skip a few files from indexing
  • derive canonicalUrl
  • inject metadata such as is_default_searchable, source_root, content_kind, or directory_weight
  • normalize title or summary

Use indexbind.search.js when CLI or Node search should automatically apply:

  • a default search profile
  • a metadata filter
  • score adjustment defaults
  • lightweight query rewrite or alias expansion

These convention files are index-scoped, not repo-global:

  • if you index ./docs, the files live in ./docs/
  • they affect only that indexed root
  • there is no repo-root fallback

Common APIs

Use these APIs when the host already has documents or wants tighter control:

  • openIndex(...) from indexbind
  • buildFromDirectory(...) from indexbind/build
  • buildCanonicalBundle(...) from indexbind/build
  • buildCanonicalBundleFromDirectory(...) from indexbind/build
  • updateBuildCache(...) from indexbind/build
  • updateBuildCacheFromDirectory(...) from indexbind/build
  • exportArtifactFromBuildCache(...) from indexbind/build
  • exportCanonicalBundleFromBuildCache(...) from indexbind/build
  • inspectArtifact(...) from indexbind/build
  • benchmarkArtifact(...) from indexbind/build
  • openWebIndex(...) from indexbind/web
  • openWebIndex(...) from indexbind/cloudflare

Docs:

  • https://indexbind.jolestar.workers.dev/reference/api.md
  • https://indexbind.jolestar.workers.dev/guides/adoption-examples.md
  • https://indexbind.jolestar.workers.dev/reference/cli.md

Cloudflare rule

Inside Cloudflare Workers:

  • prefer indexbind/cloudflare
  • if bundle files are not directly exposed as public URLs, pass a custom fetch to openWebIndex(...)
  • use the host asset loader such as ASSETS.fetch(...) rather than monkey-patching global fetch

Docs:

  • https://indexbind.jolestar.workers.dev/guides/web-and-cloudflare.md
  • https://indexbind.jolestar.workers.dev/reference/api.md

Read in this order when unsure

  1. https://indexbind.jolestar.workers.dev/guides/getting-started.md
  2. https://indexbind.jolestar.workers.dev/reference/api.md
  3. https://indexbind.jolestar.workers.dev/reference/cli.md
  4. https://indexbind.jolestar.workers.dev/guides/web-and-cloudflare.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.74%
按下载量换算1,009

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills