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 7 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 7 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 7 windows.
Version History
-
63ab275
Current 2026-08-13 15:01
要求使用 PowerShell 7 进行 Windows Shell 执行
- 08dc189 2026-07-05 18:54


