busytok

作者 BalianWang已验证

Task-level model routing through persistent subagents, with local-first GUI and CLI orchestration

103
Stars
4
Forks
Rust
语言
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/BalianWang/busytok

快速入门

使用 busytok 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Busytok

CI Release License: Apache--2.0

简体中文 | English

Busytok routes delegated tasks to an explicit provider/model binding through a persistent logical subagent identity. It is local-first: the desktop app and busytok CLI coordinate task execution, queueing, and diagnostics on your machine while the existing audit dashboard remains available for local agent usage metadata.

Busytok Dashboard

Why task-level routing?

Different tasks need different models, and a stable role should keep using the same routing decision until you intentionally change it. Busytok lets a caller choose a provider and model for a logical subagent, delegate one task, then wait, poll, cancel, or inspect the result without silently rebinding that role.

Capabilities

  • Explicit provider/model binding sourced from the live catalog
  • Persistent logical subagent identities for role-oriented workflows
  • create, reuse, and fail reuse policies with no silent rebinding
  • Synchronous --wait completion or asynchronous JSON submission and polling
  • Per-subagent task serialization, queueing, and sidecar session reuse
  • Queue reasons, cancellation, task history, and structured error diagnostics
  • Local SQLite persistence and a desktop dashboard for local agent metadata

Quick start (macOS)

1. Install the app

Download the latest universal DMG from Releases, open it, and drag Busytok.app to /Applications. Apple Silicon and Intel are both supported.

2. Check service and catalog readiness

Start the app, then verify that the local service is ready and inspect the enabled provider/model catalog:

busytok status
busytok models --json

Configure at least one provider and enabled model in the GUI or with the CLI. Use the provider_id and model_id returned by busytok models --json; do not assume a fixed provider or catalog order.

3. Delegate and wait

Replace <PROVIDER_ID> and <MODEL_ID> with IDs from the live catalog:

busytok delegate \
  --subagent "reviewer-001" \
  --profile "pi/review-cheap" \
  --bind-provider "<PROVIDER_ID>" \
  --bind-model "<MODEL_ID>" \
  --reuse-policy create \
  --output json \
  --wait \
  --wait-timeout 120 \
  "Review the repository's open TODOs and return the three highest-impact items."

The response is machine-readable JSON on stdout. Keep stderr separate for diagnostics; do not merge the streams in automation.

Install the agent integration

Busytok ships the same Busytok: Subagent Offloading skill (subagent-offloading) in the open Agent Skills format, plus native Codex and Claude Code plugin manifests. Copy this single sentence to a coding agent to install and configure the integration:

Install Busytok's Busytok: Subagent Offloading skill (subagent-offloading) from https://github.com/BalianWang/busytok, verify busytok status is ready and busytok models --json contains an enabled model, then use it for delegated tasks; if installation, service readiness, or catalog selection is blocked, report the blocker instead of silently working locally.

The cross-agent installer is:

npx skills add BalianWang/busytok \
  --skill subagent-offloading \
  --agent codex --agent claude-code --yes

For native plugin installation:

# Codex: add the repository marketplace, then install the plugin.
codex plugin marketplace add BalianWang/busytok
codex plugin add busytok@busytok

# Claude Code:
claude plugin marketplace add BalianWang/busytok
claude plugin install busytok@busytok

Start a new Codex/Claude Code session after installation. The skill is an instruction layer; the installed busytok binary remains the execution and task-lifecycle boundary. The plugin package version is independent from the desktop app version; bump the plugin and marketplace manifest versions together when the skill contract changes. The canonical skill file lives under skills/subagent-offloading/; the Codex and Claude manifests both package this same source.

Example: delegate a code review

After installing the integration, tell Codex or Claude Code explicitly when a task should run through Busytok:

Use the Busytok: Subagent Offloading skill (subagent-offloading) to perform a read-only code review of this repository. Delegate the review to a Busytok subagent, wait for the result, and report findings grouped by severity with file/line evidence and suggested fixes. Do not review locally; if delegation is blocked, report the exact blocker and stop.

This is useful for an independent review pass before merging a branch, opening a pull request, or releasing a package. The Agent handles catalog selection, explicit binding, polling, and failure diagnostics; you only need to provide the review scope and acceptance criteria.

Asynchronous delegation

For longer work, submit without --wait, read the returned task_id, and poll the task until its status is terminal:

busytok delegate \
  --subagent "reviewer-async-001" \
  --profile "pi/review-cheap" \
  --bind-provider "<PROVIDER_ID>" \
  --bind-model "<MODEL_ID>" \
  --reuse-policy create \
  --output json \
  "Review the repository's open TODOs and return the three highest-impact items."

busytok subagent task --task-id "<TASK_ID>" --output json

completed is success; queued and running are still in progress; failed and cancelled should be surfaced with their structured error or cancellation context. See the integration guide for deterministic catalog selection, prompt channels, and cancellation flows.

Core concepts

Provider/model bindings

Each logical subagent can be bound to a provider UUID (--bind-provider) and a model ID (--bind-model). The live catalog from busytok models --json is the source of truth. A one-task --model override is distinct from a persistent binding.

Logical subagents and reuse policies

--subagent is a stable, role-oriented identity. Use:

  • --reuse-policy create to create a new routing identity
  • --reuse-policy reuse to intentionally use the existing binding
  • --reuse-policy fail to reject a name collision

Reusing a name never silently rebinds it. To route the role to a different provider/model, create a new logical subagent name.

Task lifecycle

The runtime serializes work for one logical subagent, queues tasks when needed, and can reuse its sidecar session. Use task polling, cancellation, and history commands to manage work after submission; structured queue reasons and errors make failures diagnosable.

Product boundaries

Busytok is local-first and stores application data in local SQLite. Providers and models are configured by you in the GUI or CLI, and delegation is explicit. It is not a transparent proxy for all Claude/Codex traffic, does not intercept TLS, and does not manage external agent OAuth/API sessions. It does not promise cloud hosting, automatic routing of every external agent request, or a fixed provider catalog.

Local desktop context

For imported Claude Code and Codex usage logs, the desktop app keeps token/usage metadata rather than prompt/response bodies. Delegated task prompts/results and prompt-palette templates are separate local app data. The desktop UI exposes Overview, Usage, Prompt Palette, Providers, Subagents, and Settings views. Press Cmd+Option+K to open the optional prompt palette for saving and reusing local prompt templates.

Prompt Palette

Documentation

TopicGuide
Agent integration and CLI contractSubagent delegation guide
Subagent testing and isolationSubagent testing guide
Product designDesign · Design system
ReleasesRelease workflow
Development and contributionContributing
Security reportingSecurity policy
LicenseApache-2.0

Workspace and verification

  • apps/gui: React + Tauri desktop application
  • apps/gui/src-tauri: Tauri Rust host crate and bundle configuration
  • apps/service: Rust background service
  • apps/cli: Rust administrative CLI
  • crates/busytok-*: Rust workspace crates

Run the local acceptance gate before a pull request:

./scripts/verify_acceptance.sh

For a release rehearsal on macOS:

DEVELOPER_ID_APPLICATION="Developer ID Application: ..." ./scripts/verify_release.sh

The naming check is:

bash scripts/check-busytok-naming.sh

Stability contract

Busytok is 0.x: real and usable, but minor releases may break. macOS releases use the universal DMG and may auto-update; reinstall manually from Releases when needed.

Contributing

See CONTRIBUTING.md for the toolchain, branch model, and required CI checks. Pull requests target main and should use Conventional Commit titles.

Security

See SECURITY.md. Report vulnerabilities through GitHub Private Vulnerability Reporting; do not open a public issue for a security report.

License

Apache-2.0

常见问题

What is busytok?

busytok is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by BalianWang. Task-level model routing through persistent subagents, with local-first GUI and CLI orchestration. It has 103 GitHub stars.

Is busytok safe to use?

Yes. busytok passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install busytok?

Clone the repository with "git clone https://github.com/BalianWang/busytok" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is busytok written in?

busytok is primarily written in Rust. It is open-source under BalianWang on GitHub, so you can review or fork the full source.

Are there alternatives to busytok?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh busytok against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情