Agent Skills
› fanfan-de/anybox
› anybox-start-dev
anybox-start-dev
GitHub启动 Anybox 本地开发环境,通过脚本在独立 PowerShell 窗口中同时运行代理服务器和桌面客户端。适用于需要手动测试或本地验证的场景,支持用户直接请求启动服务。
Trigger Scenarios
启动本地开发环境
手动测试需求
启动服务器或客户端
Install
npx skills add fanfan-de/anybox --skill anybox-start-dev -g -y
SKILL.md
Frontmatter
{
"name": "anybox-start-dev",
"description": "Start the Anybox local development environment by launching the agent server and desktop client in separate PowerShell windows. Use when Codex needs to boot this repository for manual testing or local verification, or when the user asks to start the server or client, run `bun run dev:server` in `packages\/anyboxagent`, or run `bun run dev` in `packages\/desktop`."
}
Anybox Start Dev
Use the bundled script to start the two long-running development processes required by this repository.
Workflow
- Run
scripts/start-dev.ps1. - Let the script open two new PowerShell windows.
- Keep both windows open for the rest of the verification or testing session.
The script starts exactly these commands:
- Server:
cd <repo>/packages/anyboxagent && bun run dev:server - Client:
cd <repo>/packages/desktop && bun run dev
Notes
- Do not replace the commands with alternatives unless the user explicitly changes the workflow.
- Start the two processes in separate windows; do not run one after the other in the same blocking shell.
- If either window exits immediately, inspect the visible error in that window and report it before retrying.
- The script resolves the repository root relative to the skill location, so keep this skill inside the project root at
.anybox/skills/anybox-start-dev.
Resource
scripts/start-dev.ps1: Open the server and client in separate PowerShell windows.
Version History
- 08dc189 Current 2026-07-05 18:54


