Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

b0乙 0

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/risingwavelabs/skills --skill b0

简介

Box0 (b0) 是多代理并行运行平台,支持单机或多机部署,用于任务委派与结果收集。

  • 适用于需要调度 cron 作业、协调多个 AI 代理执行独立子任务的复杂工作流。
  • 提供 CLI 工具管理服务状态、连接本地或远程服务器,并支持从源码编译安装。
  • 首次使用需先安装 CLI 或构建二进制文件,再启动服务并完成连接验证。
  • 运行代理可能占用较多内存与 CPU 资源,建议根据硬件限制调整并发数量。

SKILL.md

Box0 (b0) Multi-Agent Platform

Run AI agents in parallel on one machine or many. Delegate tasks, collect results, schedule cron jobs.

Setup

Step 1: Check if Box0 is installed

b0 --version

If this succeeds, skip to Step 3.

Step 2: Install

npm install -g @box0/cli@latest

If npm is not available, build from source:

git clone https://github.com/risingwavelabs/box0.git
cd box0 && cargo build --release
export PATH="$PWD/target/release:$PATH"

Step 3: Check if server is running

b0 status

If this shows "Status: connected", skip to Step 5.

Step 4: Connect to a server

Option A: Start a local server (self-hosted)

Run in a separate terminal or background process:

b0 server

On first start, Box0 creates an admin account and auto-configures ~/.b0/config.toml.

Option B: Connect to a remote server (cloud/team)

If the user already has a remote Box0 server, log in instead of starting a local one:

b0 login <server-url> --key <api-key>

The user must provide the server URL and API key. After login, continue to Step 5.

Step 5: Register this machine (remote servers only)

If b0 status shows a remote server (not localhost or 127.0.0.1), check if this machine is registered:

b0 machine ls

If no machines are listed, or if agent creation later fails with "no local machine", register this machine. Read server_url and api_key from ~/.b0/config.toml, then run:

b0 machine join <server-url> --name <hostname> --key <api-key>

Replace <server-url> with the server URL, <hostname> with this machine's hostname, and <api-key> with the API key from the config file.

If the server is local (localhost or 127.0.0.1), skip this step - the local machine is registered automatically.

Step 6: Install the skill

npx skills add risingwavelabs/skills --skill b0

Step 7: Verify

b0 agent ls

This should run without errors. Setup is complete.

Tell the user: "Box0 is installed and ready. You can now delegate tasks to agents."


When to use

When the user's request could benefit from specialized agents or parallel execution, delegate.

Choosing an agent

Always use temp agents unless the user explicitly names an existing agent. b0 agent temp "<task>" is the default for everything. No setup, no cleanup, no b0 agent add. Even if the user says "find 3 agents" or "use multiple agents", create 3 temp agents with b0 agent temp.

Only use b0 agent add when:

  • The user explicitly says "create a permanent agent" or "add an agent that I can reuse"
  • Never for one-off tasks, debates, research, reviews, or any task that will be done today

Only use b0 delegate <name> when:

  • b0 agent ls shows an existing agent that matches the task
  • The user mentions an agent by name ("ask the reviewer")

Commands

b0 agent ls                                           # list available agents
b0 delegate <agent> "<detailed task prompt>"          # send task (non-blocking)
b0 delegate --thread <id> <agent> "<follow-up>"       # continue conversation
b0 wait                                                # wait for next completed result
b0 wait --all                                          # wait for all pending results
b0 wait --timeout 0                                    # non-blocking check for completed results
b0 reply <thread-id> "<answer>"                        # answer an agent's question
b0 status                                              # check pending tasks
b0 agent temp "<task>"                                 # one-off task, no named agent
b0 agent add <name> --instructions "..."               # create a named agent
b0 agent remove <name>                                 # delete an agent
b0 cron add --every <interval> "<task>"                # schedule recurring task (auto-creates temp agent)
b0 cron add --agent <name> --every <interval> "<task>" # schedule with existing agent
b0 cron ls                                             # list scheduled tasks
b0 cron remove <id>                                    # remove a scheduled task

How to write delegation prompts

This is critical. Do NOT forward the user's words. Compose a complete, actionable prompt.

Bad:

b0 delegate reviewer "review this PR"

Good:

b0 delegate reviewer "Review the changes on branch feature-timeout in this repo.
The PR adds timeout handling to src/handler.rs.
Focus on correctness, edge cases, and error handling.
Cite line numbers for any issues found."

Steps:

  1. Gather context first - read relevant files, run git diff, check the branch
  2. Include specifics - file paths, line numbers, branch names, what changed and why
  3. State the deliverable - what the agent should produce (a list of issues, a summary, a fix)

For large content (diffs, file contents), pipe via stdin:

git diff main..HEAD | b0 delegate reviewer "Review the following diff. Focus on correctness."

Concurrent tasks

Delegate to multiple agents, then collect all results:

b0 delegate reviewer "Review the changes on branch feature-timeout..."
b0 delegate security "Check src/handler.rs for OWASP top 10 vulnerabilities..."
b0 delegate doc-writer "Update README to reflect the new timeout config option..."
b0 wait --all

All three run in parallel. b0 wait --all blocks until all complete.

Handling agent questions

During b0 wait, an agent may ask a question:

reviewer asks (thread thread-abc): "Is the timeout change on line 42 intentional?"
  -> Use: b0 reply thread-abc "<your answer>"

Answer with b0 reply, then run b0 wait again to continue collecting results.

Proactive status checks

Before responding to a new user message, run b0 status to check if any previously delegated tasks have completed. Report results to the user if any are ready.

Error handling

If an agent fails, b0 wait reports it. Decide whether to:

  • Retry with a clearer prompt
  • Try a different agent
  • Handle the task yourself
  • Report the failure to the user

Multi-turn conversations

To continue a conversation with an agent, pass the thread ID from the first round:

b0 delegate --thread <thread-id> <agent> "<follow-up>"
b0 wait

The agent remembers all previous turns.

Troubleshooting

SymptomFix
b0: command not foundRun npm install -g @box0/cli@latest
b0 status shows no connectionStart the server with b0 server
b0 delegate hangsCheck that the daemon is running (it starts with the server)
Agent returns empty resultCheck agent instructions with b0 agent info <name>
"no local machine" errorRun b0 machine join <url> --name <hostname> --key <key> to register this machine
Timeout errorsDefault is 300s. Check if the task needs more time.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.18%
按下载量换算24

Claude

31.64%
按下载量换算21

Cursor

17.78%
按下载量换算12

Gemini CLI

9.32%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills