@akiojin/gwt 9.21.1 → 9.23.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 +7 -3
- package/README.md +8 -3
- package/package.json +3 -3
package/README.ja.md
CHANGED
|
@@ -26,7 +26,7 @@ Agent workspace を materialize するために worktree を使いますが、
|
|
|
26
26
|
- **Managed workflow skills** — discussion、Issue routing、planning、
|
|
27
27
|
TDD implementation、PR、architecture review、project search、agent 管理用の
|
|
28
28
|
bundled `gwt-*` skills を使えます。
|
|
29
|
-
- **Operator canvas** — Agent、Board、Issue、SPEC、Logs、
|
|
29
|
+
- **Operator canvas** — Agent、Board、Issue、SPEC、Logs、Profile、
|
|
30
30
|
File Tree、Branches、PR surface を mission-control 風 workspace に並べられます。
|
|
31
31
|
|
|
32
32
|
## インストール
|
|
@@ -148,10 +148,14 @@ hook は同期的な `gwt hook ...` dispatch にフォールバックし、複
|
|
|
148
148
|
- `Issue` / `SPEC` — semantic search、detail pane、Launch Agent handoff を備えた
|
|
149
149
|
cache-backed Knowledge Bridge
|
|
150
150
|
- `Logs` — project diagnostics と live log surface
|
|
151
|
-
- `
|
|
151
|
+
- `Profile` — environment/profile 管理
|
|
152
152
|
- `File Tree` — 実リポジトリの read-only tree
|
|
153
153
|
- `Branches` — branch 確認、filter、cleanup、Git detail
|
|
154
|
-
- `Settings` — application と agent
|
|
154
|
+
- `Settings` — application と agent の設定。`System` タブで Workspace summary
|
|
155
|
+
と Board 投稿本文の出力言語を `Auto / English / 日本語` から選択できます
|
|
156
|
+
(Auto は OS locale を参照し、`C` / `POSIX` や未設定時は English にフォール
|
|
157
|
+
バック)。設定はグローバルで `~/.gwt/config.toml` の `[ai].language` に保存
|
|
158
|
+
されます。UI 文言は引き続き英語固定です (SPEC-1933 NFR-005)。
|
|
155
159
|
- `PR` — pull-request workflow surface。詳細な一覧機能は cache-backed PR source の整備に依存します
|
|
156
160
|
|
|
157
161
|
`Agent` は coding agent セッション用の実プロセスウィンドウです。`Board` は
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Issues, SPECs, search, and Board context rather than from branch management.
|
|
|
29
29
|
- **Managed workflow skills** — use bundled `gwt-*` skills for discussion,
|
|
30
30
|
issue routing, planning, TDD implementation, PR work, architecture review,
|
|
31
31
|
project search, and agent-pane management.
|
|
32
|
-
- **Operator canvas** — arrange Agent, Board, Issue, SPEC, Logs,
|
|
32
|
+
- **Operator canvas** — arrange Agent, Board, Issue, SPEC, Logs, Profile,
|
|
33
33
|
File Tree, Branches, and PR surfaces in one mission-control style workspace.
|
|
34
34
|
|
|
35
35
|
## Install
|
|
@@ -150,10 +150,15 @@ Common windows include:
|
|
|
150
150
|
- `Issue` and `SPEC` — cache-backed Knowledge Bridge windows with semantic
|
|
151
151
|
search, detail panes, and Launch Agent handoff
|
|
152
152
|
- `Logs` — project diagnostics and live log surface
|
|
153
|
-
- `
|
|
153
|
+
- `Profile` — environment/profile management
|
|
154
154
|
- `File Tree` — live read-only repository tree
|
|
155
155
|
- `Branches` — branch inspection, filtering, cleanup, and Git details
|
|
156
|
-
- `Settings` — application and agent configuration
|
|
156
|
+
- `Settings` — application and agent configuration. The `System` tab lets
|
|
157
|
+
you choose the narrative output language (Auto / English / 日本語) used
|
|
158
|
+
for Workspace summaries and Board post bodies. `Auto` resolves against
|
|
159
|
+
the OS locale and falls back to English when the locale is `C` / `POSIX`
|
|
160
|
+
or unavailable. The setting is global and persisted under `[ai].language`
|
|
161
|
+
in `~/.gwt/config.toml`. UI labels stay English (see SPEC-1933 NFR-005).
|
|
157
162
|
- `PR` — pull-request workflow surface; detailed list support depends on the
|
|
158
163
|
cache-backed PR source as it lands
|
|
159
164
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akiojin/gwt",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.23.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/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",
|
|
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/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",
|
|
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__/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",
|
|
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",
|
|
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",
|