Agent Skills
› fanfan-de/anybox
› anybox-start-dev
anybox-start-dev
GitHub用于启动Anybox本地开发环境,通过执行脚本在独立PowerShell窗口中同时运行Agent服务端和桌面客户端进程,支持手动测试和本地验证。
Trigger Scenarios
用户要求启动服务器或客户端
需要启动本地开发环境进行手动测试
Codex需要引导仓库以进行本地验证
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


