@linxiraos/zeta 1.0.8 → 1.0.9
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/CHANGELOG.md +13 -1
- package/dist/{CHANGELOG-7ndkqmj0.md → CHANGELOG-pkw4cwek.md} +13 -1
- package/dist/cli.js +5073 -5002
- package/dist/docs-index.generated.txt +2 -2
- package/dist/types/channels/channel.d.ts +20 -0
- package/dist/types/channels/feishu.d.ts +29 -0
- package/dist/types/channels/host.d.ts +43 -0
- package/dist/types/channels/index.d.ts +46 -0
- package/dist/types/channels/plan-approval.d.ts +31 -0
- package/dist/types/channels/plan-image.d.ts +6 -0
- package/dist/types/channels/session-router.d.ts +68 -0
- package/dist/types/channels/telegram.d.ts +27 -0
- package/dist/types/channels/wechat.d.ts +58 -0
- package/dist/types/channels/workspace-router.d.ts +27 -0
- package/dist/types/cli/grievances-cli.d.ts +1 -1
- package/dist/types/commands/install.d.ts +1 -1
- package/dist/types/commands/serve.d.ts +4 -0
- package/dist/types/commands/web-ui-launcher.d.ts +1 -1
- package/dist/types/config/settings-schema.d.ts +12 -2
- package/dist/types/config/web-config.d.ts +70 -0
- package/dist/types/i18n/index.d.ts +7 -2
- package/dist/types/plan-mode/approved-plan.d.ts +4 -0
- package/dist/types/sdk.d.ts +21 -0
- package/dist/types/server/web-gateway/agents.d.ts +27 -1
- package/dist/types/server/web-gateway/docs.d.ts +11 -0
- package/dist/types/server/web-gateway/models.d.ts +1 -0
- package/dist/types/server/web-gateway/open.d.ts +9 -0
- package/dist/types/server/web-gateway/settings.d.ts +8 -0
- package/dist/types/server/web-gateway/update.d.ts +14 -0
- package/dist/types/server/web-gateway/web-config.d.ts +12 -0
- package/dist/types/server/zeta-server.d.ts +9 -0
- package/dist/types/session/agent-session.d.ts +5 -0
- package/dist/types/session/irc-bridge.d.ts +2 -0
- package/dist/types/tools/builtin-names.d.ts +1 -1
- package/dist/types/tools/channel-send.d.ts +42 -0
- package/dist/types/tools/index.d.ts +12 -0
- package/dist/types/tools/report-tool-issue.d.ts +2 -1
- package/dist/types/tools/workspace-run.d.ts +38 -0
- package/package.json +14 -13
- package/src/channels/channel.ts +23 -0
- package/src/channels/feishu.ts +169 -0
- package/src/channels/host.ts +132 -0
- package/src/channels/index.ts +181 -0
- package/src/channels/plan-approval.ts +110 -0
- package/src/channels/plan-image.ts +72 -0
- package/src/channels/session-router.ts +219 -0
- package/src/channels/telegram.ts +130 -0
- package/src/channels/wechat.ts +419 -0
- package/src/channels/workspace-router.ts +144 -0
- package/src/cli/grievances-cli.ts +1 -1
- package/src/cli/update-cli.ts +4 -4
- package/src/commands/install.ts +1 -1
- package/src/commands/serve.ts +5 -0
- package/src/commands/web-ui-launcher.ts +13 -7
- package/src/config/settings-schema.ts +15 -2
- package/src/config/settings-zh.ts +6 -1
- package/src/config/web-config.ts +276 -0
- package/src/discovery/builtin.ts +1 -1
- package/src/i18n/index.ts +26 -3
- package/src/plan-mode/approved-plan.ts +1 -1
- package/src/prompts/tools/channel-send.md +14 -0
- package/src/prompts/tools/workspace-run.md +13 -0
- package/src/sdk.ts +14 -0
- package/src/server/web-gateway/agents.ts +45 -2
- package/src/server/web-gateway/docs.ts +33 -0
- package/src/server/web-gateway/models.ts +92 -0
- package/src/server/web-gateway/open.ts +97 -0
- package/src/server/web-gateway/settings.ts +22 -0
- package/src/server/web-gateway/update.ts +99 -0
- package/src/server/web-gateway/web-config.ts +43 -0
- package/src/server/web-gateway.ts +80 -1
- package/src/server/zeta-server.ts +267 -3
- package/src/session/agent-session.ts +14 -0
- package/src/session/irc-bridge.ts +3 -0
- package/src/tools/builtin-names.ts +2 -0
- package/src/tools/channel-send.ts +58 -0
- package/src/tools/index.ts +17 -0
- package/src/tools/report-tool-issue.ts +2 -1
- package/src/tools/workspace-run.ts +55 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## [1.0.
|
|
5
|
+
## [1.0.9] - 2026-08-19
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added remote `@plan <title>` support to IM channels: the coordinator enters plan mode, delivers the finished plan to the phone as an image (text fallback), and executes it on a numbered reply (1 preserve / 2 compact / 3 fresh / 4 cancel).
|
|
10
|
+
- Added `GET /api/docs/<path>` gateway endpoint serving the packaged Markdown corpus, plus an "About / Usage" docs tab in the web-ui settings panel (user guide, web-ui architecture, gateway API; language follows the UI).
|
|
11
|
+
- Surfaced plan content in the web gateway's `get_state` (`planContent`) so the web-ui renders the PlanApproval card and can approve via `plan_approve`.
|
|
12
|
+
- Added web-ui architecture/API docs and bilingual user guides, packaged with the product (`docs/web-ui/`, `docs/user-guide*.md`).
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Hardened `setup-system-deps` against hung apt mirror fetches (canonical archive mirror, kill-after timeouts, bounded retries) and capped the `install_methods` job timeout.
|
|
17
|
+
- Aligned the update-cli recovery hint with the Zeta install URL (`github.com/Linxira-OS/linxira-zeta`).
|
|
6
18
|
|
|
7
19
|
## [17.3.5] - 2026-08-16
|
|
8
20
|
|
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## [1.0.
|
|
5
|
+
## [1.0.9] - 2026-08-19
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added remote `@plan <title>` support to IM channels: the coordinator enters plan mode, delivers the finished plan to the phone as an image (text fallback), and executes it on a numbered reply (1 preserve / 2 compact / 3 fresh / 4 cancel).
|
|
10
|
+
- Added `GET /api/docs/<path>` gateway endpoint serving the packaged Markdown corpus, plus an "About / Usage" docs tab in the web-ui settings panel (user guide, web-ui architecture, gateway API; language follows the UI).
|
|
11
|
+
- Surfaced plan content in the web gateway's `get_state` (`planContent`) so the web-ui renders the PlanApproval card and can approve via `plan_approve`.
|
|
12
|
+
- Added web-ui architecture/API docs and bilingual user guides, packaged with the product (`docs/web-ui/`, `docs/user-guide*.md`).
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Hardened `setup-system-deps` against hung apt mirror fetches (canonical archive mirror, kill-after timeouts, bounded retries) and capped the `install_methods` job timeout.
|
|
17
|
+
- Aligned the update-cli recovery hint with the Zeta install URL (`github.com/Linxira-OS/linxira-zeta`).
|
|
6
18
|
|
|
7
19
|
## [17.3.5] - 2026-08-16
|
|
8
20
|
|