@akiojin/gwt 9.24.1 → 9.25.0

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.ja.md CHANGED
@@ -200,6 +200,14 @@ Managed hooks は user hook を保持しながら、Agent state、workflow guard
200
200
  Board reminders、discussion/plan/build Stop checks、coordination-event summaries
201
201
  を追加します。
202
202
 
203
+ gwt から起動された Agent に live GUI / browser backend がある場合、managed hook
204
+ は local hook-forward bridge も有効にします。この bridge は、その session に
205
+ gwt が注入した loopback endpoint と bearer token だけへ hook event を POST し、
206
+ 既存の live event stream 経由で frontend client へ fan-out します。gwt 外から
207
+ 起動した session には転送先が注入されないため、`gwt hook forward` は silent
208
+ no-op のままです。古い転送先、接続拒否、validation error、delivery timeout は
209
+ fail-open の診断情報として扱われ、Agent の tool call を block しません。
210
+
203
211
  ## ワークスペース基盤
204
212
 
205
213
  Agent session の隔離と再現性のため、gwt は各プロジェクトをワークスペース
package/README.md CHANGED
@@ -205,6 +205,14 @@ Managed hooks preserve user hooks while adding gwt runtime behavior for agent
205
205
  state, workflow guardrails, Board reminders, discussion/plan/build Stop checks,
206
206
  and coordination-event summaries.
207
207
 
208
+ When an agent is launched by gwt with a live GUI/browser backend, managed hooks
209
+ also enable the local hook-forward bridge. The bridge posts hook events only to
210
+ the loopback endpoint and bearer token that gwt injects for that session, then
211
+ fans them out through the existing live event stream. Sessions started outside
212
+ gwt do not receive that target and `gwt hook forward` remains a silent no-op;
213
+ stale targets, refused connections, validation errors, and delivery timeouts are
214
+ fail-open diagnostics and do not block agent tool calls.
215
+
208
216
  ## Workspace Foundation
209
217
 
210
218
  For isolation and repeatable agent sessions, gwt can manage each project as a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akiojin/gwt",
3
- "version": "9.24.1",
3
+ "version": "9.25.0",
4
4
  "description": "Desktop GUI for Git worktree management and coding agent launch",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,9 +12,9 @@
12
12
  "dev": "cargo run -p gwt --bin gwt",
13
13
  "build": "cargo build --release -p gwt --bin gwt --bin gwtd",
14
14
  "test": "cargo test -p gwt-core -p gwt --all-features",
15
- "test:frontend-bundle": "node --check crates/gwt/web/app.js && node --check crates/gwt/web/branch-cleanup-modal.js && node --check crates/gwt/web/migration-modal.js && node --check crates/gwt/web/board-surface.js && node --check crates/gwt/web/workspace-kanban-surface.js && node --check crates/gwt/web/theme-manager.js && node --check crates/gwt/web/theme-toggle.js && node --check crates/gwt/web/hotkey.js && node --check crates/gwt/web/operator-shell.js && node --check crates/gwt/web/focus-trap.js && node --check crates/gwt/web/window-docking.js && node --check crates/gwt/web/update-cta.js && node --check crates/gwt/web/terminal-context-menu.js",
15
+ "test:frontend-bundle": "node --check crates/gwt/web/app.js && node --check crates/gwt/web/branch-cleanup-modal.js && node --check crates/gwt/web/migration-modal.js && node --check crates/gwt/web/board-surface.js && node --check crates/gwt/web/workspace-kanban-surface.js && node --check crates/gwt/web/theme-manager.js && node --check crates/gwt/web/theme-toggle.js && node --check crates/gwt/web/hotkey.js && node --check crates/gwt/web/operator-shell.js && node --check crates/gwt/web/focus-trap.js && node --check crates/gwt/web/window-docking.js && node --check crates/gwt/web/update-cta.js && node --check crates/gwt/web/terminal-context-menu.js && node --check crates/gwt/web/custom-agent-env-editor.js",
16
16
  "test:frontend-smoke": "node --test crates/gwt/web/__tests__/branch-cleanup.smoke.test.mjs crates/gwt/web/__tests__/migration-modal.smoke.test.mjs",
17
- "test:frontend-unit": "node --test crates/gwt/web/__tests__/contrast.test.mjs crates/gwt/web/__tests__/theme-manager.test.mjs crates/gwt/web/__tests__/theme-segmented.test.mjs crates/gwt/web/__tests__/hotkey.test.mjs crates/gwt/web/__tests__/operator-chrome-structure.test.mjs crates/gwt/web/__tests__/operator-shell-runtime.test.mjs crates/gwt/web/__tests__/operator-shell-hover-reveal.test.mjs crates/gwt/web/__tests__/board-surface.test.mjs crates/gwt/web/__tests__/focus-trap.test.mjs crates/gwt/web/__tests__/kanban-structure.test.mjs crates/gwt/web/__tests__/kanban-dnd.test.mjs crates/gwt/web/__tests__/kanban-drawer.test.mjs crates/gwt/web/__tests__/update-button.test.mjs crates/gwt/web/__tests__/window-docking.test.mjs crates/gwt/web/__tests__/terminal-context-menu.test.mjs",
17
+ "test:frontend-unit": "node --test crates/gwt/web/__tests__/contrast.test.mjs crates/gwt/web/__tests__/theme-manager.test.mjs crates/gwt/web/__tests__/theme-segmented.test.mjs crates/gwt/web/__tests__/hotkey.test.mjs crates/gwt/web/__tests__/index-settings-panel.test.mjs crates/gwt/web/__tests__/index-status-controller.test.mjs crates/gwt/web/__tests__/operator-chrome-structure.test.mjs crates/gwt/web/__tests__/operator-shell-runtime.test.mjs crates/gwt/web/__tests__/operator-shell-hover-reveal.test.mjs crates/gwt/web/__tests__/board-surface.test.mjs crates/gwt/web/__tests__/focus-trap.test.mjs crates/gwt/web/__tests__/kanban-structure.test.mjs crates/gwt/web/__tests__/kanban-dnd.test.mjs crates/gwt/web/__tests__/kanban-drawer.test.mjs crates/gwt/web/__tests__/workspace-kanban-surface.test.mjs crates/gwt/web/__tests__/update-button.test.mjs crates/gwt/web/__tests__/window-docking.test.mjs crates/gwt/web/__tests__/terminal-context-menu.test.mjs crates/gwt/web/__tests__/terminal-viewport-reflow.test.mjs crates/gwt/web/__tests__/custom-agent-env-editor.test.mjs crates/gwt/web/__tests__/settings-system-tab.test.mjs",
18
18
  "test:visual": "playwright test --config crates/gwt/playwright/playwright.config.ts",
19
19
  "test:release-assets": "node scripts/test_release_assets.cjs",
20
20
  "test:release-flow": "bash scripts/check-release-flow.sh",
@@ -47,8 +47,8 @@
47
47
  },
48
48
  "packageManager": "pnpm@10.29.2",
49
49
  "devDependencies": {
50
- "@commitlint/cli": "^20.5.0",
51
- "@commitlint/config-conventional": "^20.5.0",
50
+ "@commitlint/cli": "^21.0.0",
51
+ "@commitlint/config-conventional": "^21.0.0",
52
52
  "@playwright/test": "^1.49.1",
53
53
  "linkedom": "^0.18.12"
54
54
  }