docs: add monorepo development workflow documentation

- Update root dev script to build packages before watching
- Add --no-dts flag to package dev scripts to avoid DTS race conditions
- Document monorepo development workflow in README

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Naiyuan Qing 2026-02-13 09:21:47 +08:00
parent c728a80a9b
commit e87e39f13b
5 changed files with 19 additions and 4 deletions

View file

@ -53,6 +53,21 @@ pnpm dev:all # Start both Gateway and Web app
The Desktop app runs a standalone Hub with embedded Agent Engine - no Gateway required for local use.
### Monorepo Development
| Command | Purpose |
|---------|---------|
| `pnpm dev` | Full dev mode — watches `core`, `types`, `utils` packages |
| `pnpm dev:desktop` | Desktop only — skip package watching |
**When modifying packages:**
1. Edit code in `packages/core`, `packages/types`, or `packages/utils`
2. Terminal shows `[core] ESM ⚡️ Build success` (~100ms)
3. Restart Desktop to apply changes (Ctrl+C, then `pnpm dev`)
> **Why restart?** Electron main process does not support hot reload — this is an Electron limitation, not ours.
### Credentials
```bash