@chanlerdev/scorel 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/dist/index.js +373 -64
- package/dist/index.js.map +4 -4
- package/docs/CHANGELOG.md +41 -0
- package/docs/ROADMAP.md +5 -0
- package/docs/SHIP.md +9 -5
- package/docs/spec/ship/S0064-gui-product-intent-and-boundary.md +1 -1
- package/docs/spec/ship/S0073-provider-model-profile-contract.md +8 -1
- package/docs/spec/ship/S0103-daemon-lifecycle-and-settings-resilience.md +61 -0
- package/docs/spec/ship/S0104-tool-result-artifacts.md +64 -0
- package/docs/spec/ship/S0105-cli-update-and-gui-release.md +128 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,12 +20,37 @@ pnpm install
|
|
|
20
20
|
pnpm scorel
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
查看版本、手动更新 CLI:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
scorel --version
|
|
27
|
+
scorel update
|
|
28
|
+
# alias
|
|
29
|
+
scorel upgrade
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
后台 Host 会每小时检查一次 npm 上的 `@chanlerdev/scorel`。发现新版本后,只有在没有 active work,或者 active work 已经连续三小时没有进展时,才会执行同一套 npm 更新;更新成功后 Host 会短暂停止,下一次 CLI / GUI / WebUI 入口启动时使用新版本。
|
|
33
|
+
|
|
23
34
|
启动桌面 GUI,本机会启动 embedded Host:
|
|
24
35
|
|
|
25
36
|
```bash
|
|
26
37
|
pnpm gui
|
|
27
38
|
```
|
|
28
39
|
|
|
40
|
+
打包 macOS GUI:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pnpm --filter @scorel/app-gui dist:mac
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
GUI 跟随正常 release 节奏发布到同一个 GitHub Release。Release assets 包含 dmg / zip、`latest-mac.yml` 和 blockmap 文件;packaged GUI 通过 `electron-updater` 读取这些 metadata 做增量更新。
|
|
47
|
+
|
|
48
|
+
当前没有 Apple Developer signing/notarization 时,macOS 首次打开下载的 app 可能被 Gatekeeper 拦截。确认来源可信后,可以移除 quarantine 标记:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
xattr -dr com.apple.quarantine /Applications/Scorel.app
|
|
52
|
+
```
|
|
53
|
+
|
|
29
54
|
启动本机 Host:
|
|
30
55
|
|
|
31
56
|
```bash
|
|
@@ -403,6 +428,8 @@ GUI 更偏本地桌面工作台,WebUI 更偏 hosted/remote control。二者都
|
|
|
403
428
|
- memory settings。
|
|
404
429
|
- IM settings,包括 Telegram enable、env/direct token、allowed chats、QQ App ID / App Secret、WeChat outbound webhook 和 inbound callback。
|
|
405
430
|
- Relay device pairing 和 remote project 选择。
|
|
431
|
+
- packaged GUI auto-update。
|
|
432
|
+
- macOS menu bar status menu with Show, Settings, Check for Updates, Host status, and Quit.
|
|
406
433
|
|
|
407
434
|
## Status
|
|
408
435
|
|
|
@@ -425,6 +452,8 @@ GUI 更偏本地桌面工作台,WebUI 更偏 hosted/remote control。二者都
|
|
|
425
452
|
- built-in QQ Bot IM extension。
|
|
426
453
|
- WeChat outbound webhook 和 official-account style plaintext callback。
|
|
427
454
|
- GUI IM settings。
|
|
455
|
+
- CLI update/upgrade。
|
|
456
|
+
- GUI release assets with incremental update metadata。
|
|
428
457
|
|
|
429
458
|
计划中的方向:
|
|
430
459
|
|