mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* Add packaged desktop auto-update * Handle counted beta nightly update versions * Refresh desktop auto-update branch for main * Serialize desktop updater operations * Refresh auto-update branch for packaged paths
3.7 KiB
3.7 KiB
tools/AGENTS.md
Follow the root AGENTS.md first. This file only records module-level boundaries for tools/.
Active tools
tools/devprovides@open-design/tools-devand thetools-devbin. It is the only currently active local development lifecycle control plane.pnpm tools-devmanages daemon -> web -> desktop.pnpm tools-dev run webruns foreground daemon + web for the Playwright webServer flow.pnpm tools-dev inspect desktop ...inspects the desktop runtime through sidecar IPC.tools/packprovides@open-design/tools-packand thetools-packbin. The active slice is packaged artifact build/install/start/stop/logs/uninstall/cleanup/list/reset plus beta release artifact preparation for mac and Windows lanes, plus a Linux AppImage lane with optional containerized builds.tools/prprovides@open-design/tools-prand thetools-prbin. It is the maintainer PR-duty control plane: a thinghwrapper that encodes this repo's review-lane derivation, forbidden-surface flags, per-lane checklists, and validation-command suggestions. It must not perform side effects (approve / request changes / merge / close / push); those stay in explicitghcalls the maintainer runs.tools/serveprovides@open-design/tools-serveand thetools-servebin. It owns local fixture services such astools-serve start updater.
Packaging scope
- Keep
tools-packfocused on packaging/runtime control and release artifact preparation. Runtime updater product integration remains a later phase. - Pack-specific Electron builder resources belong under
tools/pack/resources/; do not reference app/docs/download assets directly from pack logic. - Namespace controls packaged data/log/runtime/cache paths. Ports are transient transport details and must not participate in path decisions.
- There is no root
pnpm buildaggregate. Use package-scoped builds for source packages andpnpm tools-pack ...for packaged artifact build/install/release flows.
Orchestration boundary
- Tool tests live in each tool's
tests/directory, sibling tosrc/; keepsrc/source-only and do not add new*.test.tsor*.test.tsxfiles undersrc/. - Orchestration layers must consume primitives from
@open-design/sidecar-proto,@open-design/sidecar, and@open-design/platform. - Do not hand-build
--od-stamp-*args, process-scan regexes, runtime tokens, process roles, or duplicate namespace/source args intools/dev, futuretools/pack, or packaged launchers. - Port flags are authoritative inputs:
--daemon-portand--web-port. Internal env vars areOD_PORTandOD_WEB_PORT; do not introduceNEXT_PORT.
Common tools commands
pnpm --filter @open-design/tools-dev typecheck
pnpm --filter @open-design/tools-dev build
pnpm --filter @open-design/tools-pack typecheck
pnpm --filter @open-design/tools-pack build
pnpm --filter @open-design/tools-pr typecheck
pnpm --filter @open-design/tools-pr build
pnpm --filter @open-design/tools-serve typecheck
pnpm --filter @open-design/tools-serve build
pnpm tools-dev status --json
pnpm tools-dev logs --json
pnpm tools-dev check
pnpm tools-pack mac build --to all
pnpm tools-pack mac install
pnpm tools-pack mac cleanup
pnpm tools-pack win build --to nsis
pnpm tools-pack win install
pnpm tools-pack win inspect --expr "document.title"
pnpm tools-pack win cleanup
pnpm tools-pack linux build --to appimage
pnpm tools-pack linux install
pnpm tools-pack linux install --headless
pnpm tools-pack linux start --headless
pnpm tools-pack linux stop --headless
pnpm tools-pack linux build --containerized
pnpm tools-pr list
pnpm tools-pr list --bucket=merge-ready,approved-blocked
pnpm tools-pr view <num>
pnpm tools-pr view <num> --json
pnpm tools-serve start updater