Agent Skills
› fanfan-de/anybox
› anybox-start-dev
anybox-start-dev
GitHub通过运行 PowerShell 脚本启动 Anybox 本地开发环境,分别在独立窗口中启动 Agent 服务器和桌面客户端。适用于需要手动测试、本地验证或用户明确要求启动服务时。
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


