@akiojin/gwt 9.9.0 → 9.10.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 +11 -11
- package/README.md +11 -11
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -12,7 +12,7 @@ gwt は Git worktree の管理と、`Claude Code` / `Codex` / `Gemini` /
|
|
|
12
12
|
|
|
13
13
|
- GUI 向けの主配布物: `gwt-macos-universal.dmg`
|
|
14
14
|
- マウントした DMG から `GWT.app` を開くとネイティブ GUI をそのまま起動できます
|
|
15
|
-
- `PATH` に `
|
|
15
|
+
- `PATH` に `gwtd` CLI を入れたい場合は install script を使います
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
curl -fsSL https://raw.githubusercontent.com/akiojin/gwt/main/installers/macos/install.sh | bash
|
|
@@ -70,17 +70,17 @@ gwt
|
|
|
70
70
|
`http://127.0.0.1:<port>/` のような URL を出力します。ネイティブアプリの起動中は、
|
|
71
71
|
同じ URL を通常のブラウザでも開けます。
|
|
72
72
|
|
|
73
|
-
CLI
|
|
73
|
+
CLI サブコマンドは `gwtd` で処理され、GUI は起動しません。
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
gwtd issue spec 1784 --section plan
|
|
77
|
+
gwtd pr current
|
|
78
|
+
gwtd board show
|
|
79
|
+
gwtd hook workflow-policy
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
managed hook と runtime
|
|
83
|
-
|
|
82
|
+
managed hook と runtime 委譲は `gwtd` を使います。利用者が別の daemon
|
|
83
|
+
プロセスを手動起動する必要はありません。
|
|
84
84
|
|
|
85
85
|
## 基本フロー
|
|
86
86
|
|
|
@@ -134,13 +134,13 @@ Docker 起動では引き続きコンテナ内のシェルを使います。
|
|
|
134
134
|
- SPEC 全体を読む:
|
|
135
135
|
|
|
136
136
|
```bash
|
|
137
|
-
|
|
137
|
+
gwtd issue spec <number>
|
|
138
138
|
```
|
|
139
139
|
|
|
140
140
|
- セクション単位で読む:
|
|
141
141
|
|
|
142
142
|
```bash
|
|
143
|
-
|
|
143
|
+
gwtd issue spec <number> --section spec|plan|tasks
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
## ログ
|
|
@@ -223,7 +223,7 @@ cargo fmt
|
|
|
223
223
|
## SPEC
|
|
224
224
|
|
|
225
225
|
詳細仕様は `gwt-spec` ラベル付き GitHub Issue にあります。ローカルキャッシュ経由で
|
|
226
|
-
`
|
|
226
|
+
`gwtd issue spec <n>` を使って確認できます。
|
|
227
227
|
|
|
228
228
|
## ライセンス
|
|
229
229
|
|
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ Download the release asset for your platform from
|
|
|
14
14
|
|
|
15
15
|
- GUI-first installer: `gwt-macos-universal.dmg`
|
|
16
16
|
- Open `GWT.app` from the mounted DMG for the native desktop launch surface
|
|
17
|
-
- Use the install script when you want the `
|
|
17
|
+
- Use the install script when you want the `gwtd` CLI in your `PATH`
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
curl -fsSL https://raw.githubusercontent.com/akiojin/gwt/main/installers/macos/install.sh | bash
|
|
@@ -71,17 +71,17 @@ directory. The app also starts a local HTTP/WebSocket server for the WebView
|
|
|
71
71
|
surface and prints a URL such as `http://127.0.0.1:<port>/` to stderr. You can
|
|
72
72
|
open that URL in a regular browser while the native app is running.
|
|
73
73
|
|
|
74
|
-
CLI subcommands run
|
|
74
|
+
CLI subcommands run through `gwtd` without opening a GUI window:
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
77
|
+
gwtd issue spec 1784 --section plan
|
|
78
|
+
gwtd pr current
|
|
79
|
+
gwtd board show
|
|
80
|
+
gwtd hook workflow-policy
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
Managed hooks and runtime delegation
|
|
84
|
-
|
|
83
|
+
Managed hooks and runtime delegation use `gwtd`. There is no separate daemon
|
|
84
|
+
process to start by hand.
|
|
85
85
|
|
|
86
86
|
## Main Workflow
|
|
87
87
|
|
|
@@ -137,13 +137,13 @@ selection. `Ctrl+C` stays mapped to the running terminal process.
|
|
|
137
137
|
- Read a SPEC:
|
|
138
138
|
|
|
139
139
|
```bash
|
|
140
|
-
|
|
140
|
+
gwtd issue spec <number>
|
|
141
141
|
```
|
|
142
142
|
|
|
143
143
|
- Read one section:
|
|
144
144
|
|
|
145
145
|
```bash
|
|
146
|
-
|
|
146
|
+
gwtd issue spec <number> --section spec|plan|tasks
|
|
147
147
|
```
|
|
148
148
|
|
|
149
149
|
## Logs
|
|
@@ -226,7 +226,7 @@ cargo fmt
|
|
|
226
226
|
## Specs
|
|
227
227
|
|
|
228
228
|
Detailed requirements live in GitHub Issues labeled `gwt-spec`. Use
|
|
229
|
-
`
|
|
229
|
+
`gwtd issue spec <n>` to inspect them locally through the cache-backed CLI.
|
|
230
230
|
|
|
231
231
|
## License
|
|
232
232
|
|