@akiojin/gwt 6.25.0 → 6.27.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 +27 -4
- package/README.md +27 -4
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -86,9 +86,12 @@ cargo run -p gwt-cli
|
|
|
86
86
|
git clone https://github.com/akiojin/gwt.git
|
|
87
87
|
cd gwt
|
|
88
88
|
|
|
89
|
-
#
|
|
89
|
+
# リリースバイナリをビルド(デフォルト: gwt-cli)
|
|
90
90
|
cargo build --release
|
|
91
91
|
|
|
92
|
+
# ワークスペース全体をビルド(Web/wasm含む)
|
|
93
|
+
cargo build --workspace
|
|
94
|
+
|
|
92
95
|
# バイナリは target/release/gwt にあります
|
|
93
96
|
./target/release/gwt
|
|
94
97
|
```
|
|
@@ -128,6 +131,12 @@ gwt remove feature/old-feature
|
|
|
128
131
|
|
|
129
132
|
# 孤立したワークツリーをクリーンアップ
|
|
130
133
|
gwt clean
|
|
134
|
+
|
|
135
|
+
# ログを表示
|
|
136
|
+
gwt logs --limit 100
|
|
137
|
+
|
|
138
|
+
# ログをフォロー
|
|
139
|
+
gwt logs --follow
|
|
131
140
|
```
|
|
132
141
|
|
|
133
142
|
ツールは以下のオプションを持つ対話型インターフェースを提供します:
|
|
@@ -145,7 +154,7 @@ gwt clean
|
|
|
145
154
|
|-----|------|
|
|
146
155
|
| `Enter` | 既存エージェントペインにフォーカス / 非表示ペインを表示 / ウィザードを開く |
|
|
147
156
|
| `d` | エージェントペインを削除(確認あり) |
|
|
148
|
-
| `v` |
|
|
157
|
+
| `v` | GitViewを開く(選択中ブランチのgit状態詳細) |
|
|
149
158
|
| `Space` | ブランチの選択/選択解除 |
|
|
150
159
|
| `Up/Down` | ブランチ間を移動 |
|
|
151
160
|
| `PageUp/PageDown` | ページ移動 |
|
|
@@ -167,6 +176,20 @@ gwt clean
|
|
|
167
176
|
| `Esc` | フィルターモードを終了 |
|
|
168
177
|
| 入力 | ブランチ名でフィルター |
|
|
169
178
|
|
|
179
|
+
### GitView画面
|
|
180
|
+
|
|
181
|
+
GitView画面は、選択中ブランチの詳細なgit状態(ファイル一覧、直近コミット)を表示します。
|
|
182
|
+
|
|
183
|
+
| キー | 動作 |
|
|
184
|
+
|-----|------|
|
|
185
|
+
| `Up/Down` | ファイル・コミット間を移動 |
|
|
186
|
+
| `Space` | ファイルのdiffまたはコミット詳細を展開/折りたたみ |
|
|
187
|
+
| `Enter` | PRリンクをブラウザで開く(ヘッダーにフォーカス時) |
|
|
188
|
+
| `v` / `Esc` | ブランチリストに戻る |
|
|
189
|
+
|
|
190
|
+
マウス:
|
|
191
|
+
- ヘッダーのPRリンクをクリックするとブラウザで開きます。
|
|
192
|
+
|
|
170
193
|
## ステータスアイコンの凡例
|
|
171
194
|
|
|
172
195
|
| アイコン | 色 | 意味 |
|
|
@@ -355,8 +378,8 @@ gwt
|
|
|
355
378
|
├── crates/
|
|
356
379
|
│ ├── gwt-cli/ # CLIエントリポイントとTUI(Ratatui)
|
|
357
380
|
│ ├── gwt-core/ # コアライブラリ(ワークツリー管理)
|
|
358
|
-
│ ├── gwt-web/ # Web
|
|
359
|
-
│ └── gwt-frontend/ # Web
|
|
381
|
+
│ ├── gwt-web/ # Webサーバー(Axum)
|
|
382
|
+
│ └── gwt-frontend/ # Webフロントエンド(Leptos CSR)
|
|
360
383
|
├── package.json # npm配布用ラッパー
|
|
361
384
|
├── bin/gwt.js # バイナリラッパースクリプト
|
|
362
385
|
├── scripts/postinstall.js # バイナリダウンロードスクリプト
|
package/README.md
CHANGED
|
@@ -86,9 +86,12 @@ cargo run -p gwt-cli
|
|
|
86
86
|
git clone https://github.com/akiojin/gwt.git
|
|
87
87
|
cd gwt
|
|
88
88
|
|
|
89
|
-
# Build release binary
|
|
89
|
+
# Build release binary (default: gwt-cli)
|
|
90
90
|
cargo build --release
|
|
91
91
|
|
|
92
|
+
# Build all workspace crates (including web/wasm)
|
|
93
|
+
cargo build --workspace
|
|
94
|
+
|
|
92
95
|
# The binary is at target/release/gwt
|
|
93
96
|
./target/release/gwt
|
|
94
97
|
```
|
|
@@ -128,6 +131,12 @@ gwt remove feature/old-feature
|
|
|
128
131
|
|
|
129
132
|
# Cleanup orphaned worktrees
|
|
130
133
|
gwt clean
|
|
134
|
+
|
|
135
|
+
# Show logs
|
|
136
|
+
gwt logs --limit 100
|
|
137
|
+
|
|
138
|
+
# Follow logs
|
|
139
|
+
gwt logs --follow
|
|
131
140
|
```
|
|
132
141
|
|
|
133
142
|
The tool presents an interactive interface with the following options:
|
|
@@ -145,7 +154,7 @@ The tool presents an interactive interface with the following options:
|
|
|
145
154
|
|-----|--------|
|
|
146
155
|
| `Enter` | Focus existing agent pane / Show hidden pane / Open wizard |
|
|
147
156
|
| `d` | Delete agent pane (with confirmation) |
|
|
148
|
-
| `v` |
|
|
157
|
+
| `v` | Open GitView (git status details for selected branch) |
|
|
149
158
|
| `Space` | Select/Deselect branch |
|
|
150
159
|
| `Up/Down` | Navigate branches |
|
|
151
160
|
| `PageUp/PageDown` | Page navigation |
|
|
@@ -167,6 +176,20 @@ Mouse:
|
|
|
167
176
|
| `Esc` | Exit filter mode |
|
|
168
177
|
| Type | Filter branches by name |
|
|
169
178
|
|
|
179
|
+
### GitView Screen
|
|
180
|
+
|
|
181
|
+
The GitView screen shows detailed git status for a branch, including files and recent commits.
|
|
182
|
+
|
|
183
|
+
| Key | Action |
|
|
184
|
+
|-----|--------|
|
|
185
|
+
| `Up/Down` | Navigate files and commits |
|
|
186
|
+
| `Space` | Expand/collapse file diff or commit details |
|
|
187
|
+
| `Enter` | Open PR link in browser (when focused on header) |
|
|
188
|
+
| `v` / `Esc` | Return to branch list |
|
|
189
|
+
|
|
190
|
+
Mouse:
|
|
191
|
+
- Click on the PR link in the header to open it in your browser.
|
|
192
|
+
|
|
170
193
|
## Status Icons Legend
|
|
171
194
|
|
|
172
195
|
| Icon | Color | Meaning |
|
|
@@ -355,8 +378,8 @@ gwt
|
|
|
355
378
|
├── crates/
|
|
356
379
|
│ ├── gwt-cli/ # CLI entry point and TUI (Ratatui)
|
|
357
380
|
│ ├── gwt-core/ # Core library (worktree management)
|
|
358
|
-
│ ├── gwt-web/ # Web server (
|
|
359
|
-
│ └── gwt-frontend/ # Web frontend (
|
|
381
|
+
│ ├── gwt-web/ # Web server (Axum)
|
|
382
|
+
│ └── gwt-frontend/ # Web frontend (Leptos CSR)
|
|
360
383
|
├── package.json # npm distribution wrapper
|
|
361
384
|
├── bin/gwt.js # Binary wrapper script
|
|
362
385
|
├── scripts/postinstall.js # Binary download script
|