Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

bit一点

Agent Skill

bit 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,138

周安装

346

GitHub Stars

公开资料未说明

下载量

2,851
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install bit

简介

该技能解释 bit-cli 工具的功能、安装步骤与常见问题排查。

  • 适用于开发者快速上手与集成自定义 CLI 组件。
  • 提供详细的配置示例与环境变量说明文档。bit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前请确保具备终端命令执行与依赖包安装权限。
  • 如遇错误,请优先检查 Python 版本与 pip 源设置。

SKILL.md

name
bit
description
Explain bit-cli skill purpose, installation, required setup, and troubleshooting.
metadata
{"openclaw": {"requires": {"bins": ["bit", "git", "go", "sudo"], "env": ["BIT_API_KEY"]}, "primaryEnv": "BIT_API_KEY", "install": [{"id": "go-install", "kind": "go", "label": "Install bit via Go", "bins": ["bit"], "module": "github.com/ParinLL/bit-cli"}]}}

Bit CLI Skill (Documentation-Only)

Skill Purpose And Trigger Scenarios

  • Purpose: Provide a usage entry point for the Bit URL Shortener CLI (bit) to create, query, update, delete short links, and view click data.
  • Trigger scenarios:
  • The user mentions needs like "short URL", "bit-cli", or commands such as bit create/list/get/update/delete/clicks.
  • The user wants to run Bit API operations with OpenClaw.
  • The user needs to verify Bit API availability (for example, a health check).

Installation (GitHub)

  • Install source: https://github.com/ParinLL/bit-cli
  • Install from GitHub:
git clone https://github.com/ParinLL/bit-cli.git
cd bit-cli
go build -o bit .
sudo mv bit /usr/local/bin/
  • Review the repository before building from source.

Required Environment Variables / Permissions

  • Required environment variables:
  • BIT_API_KEY (required): Bit API authentication key.
  • BIT_API_URL (optional): Bit API base URL, default http://localhost:4000.
  • Permission requirements:
  • The bit executable must be callable from PATH.
  • Installing to /usr/local/bin with sudo mv requires administrator privileges.
  • If the target API is remote, network connectivity to that API is required.

Using The bit Binary

  • Verify installation:
which bit
bit ping
  • Configure API access before running commands:
export BIT_API_URL="http://localhost:4000"
export BIT_API_KEY="your-api-key"
  • Command format:
  • bit <command> [arguments] [flags]
  • Main commands and when to use them:
  • bit ping
  • Use for a quick API health check before other operations.
  • bit create <url>
  • Creates a short link for the target URL.
  • bit list [--limit N] [--cursor X]
  • Lists links with optional pagination for large datasets.
  • bit get <id>
  • Retrieves one link and recent click details.
  • bit update <id> <new-url>
  • Replaces the destination URL for an existing short link.
  • bit delete <id>
  • Removes the short link by ID.
  • bit clicks <id> [--limit N] [--cursor X]
  • Shows click history for a link, with optional pagination.
  • Typical workflow:
# 1) Confirm service is reachable
bit ping

# 2) Create a short link
bit create https://example.com/docs

# 3) List links to find the new ID
bit list --limit 20

# 4) Inspect one link
bit get 1

# 5) Check click records
bit clicks 1 --limit 50

# 6) Update destination if needed
bit update 1 https://example.com/new-docs

# 7) Delete when no longer needed
bit delete 1
  • Practical tips:
  • Start with bit ping whenever requests fail unexpectedly.
  • Use list/get to confirm IDs before update or delete.
  • Keep BIT_API_KEY in environment variables, not in command history or shared scripts.

Common Troubleshooting

  • bit: command not found
  • Cause: The CLI is not installed or not in PATH.
  • Fix: Rebuild with go build and verify which bit returns a valid path.
  • 401 Unauthorized / 403 Forbidden
  • Cause: BIT_API_KEY is missing or invalid.
  • Fix: Reset BIT_API_KEY and confirm the key is still valid on the server.
  • connection refused / timeout
  • Cause: BIT_API_URL is incorrect, the Bit service is not running, or the network is unreachable.
  • Fix: Run bit ping first, then verify API service status and URL.
  • Command succeeds but data is unexpected
  • Cause: The target ID does not exist, data was deleted, or the update payload format is incorrect.
  • Fix: Validate current state with bit list or bit get <id>, then retry.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.36%
按下载量换算2,605

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills