@akiojin/gwt 6.21.0 → 6.22.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 +8 -1
- package/README.md +8 -1
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -220,7 +220,12 @@ gwt は PATH 上のエージェントを検出し、ランチャーに表示し
|
|
|
220
220
|
"permissionSkipArgs": ["--yes"],
|
|
221
221
|
"env": {
|
|
222
222
|
"OPENAI_API_KEY": "sk-..."
|
|
223
|
-
}
|
|
223
|
+
},
|
|
224
|
+
"models": [
|
|
225
|
+
{ "id": "gpt-4o", "label": "GPT-4o" },
|
|
226
|
+
{ "id": "claude-3-opus", "label": "Claude 3 Opus" }
|
|
227
|
+
],
|
|
228
|
+
"versionCommand": "aider --version"
|
|
224
229
|
}
|
|
225
230
|
]
|
|
226
231
|
}
|
|
@@ -231,6 +236,8 @@ gwt は PATH 上のエージェントを検出し、ランチャーに表示し
|
|
|
231
236
|
- `type` は `path` / `bunx` / `command` を指定します。
|
|
232
237
|
- `modeArgs` で実行モード別の引数を定義します(Normal/Continue/Resume)。
|
|
233
238
|
- `env` はエージェントごとの環境変数(任意)です。
|
|
239
|
+
- `models` は任意です。定義するとモデル選択ステップが表示されます。
|
|
240
|
+
- `versionCommand` は任意です。定義するとバージョン検出に使用されます。
|
|
234
241
|
|
|
235
242
|
## 高度なワークフロー
|
|
236
243
|
|
package/README.md
CHANGED
|
@@ -220,7 +220,12 @@ Minimal example:
|
|
|
220
220
|
"permissionSkipArgs": ["--yes"],
|
|
221
221
|
"env": {
|
|
222
222
|
"OPENAI_API_KEY": "sk-..."
|
|
223
|
-
}
|
|
223
|
+
},
|
|
224
|
+
"models": [
|
|
225
|
+
{ "id": "gpt-4o", "label": "GPT-4o" },
|
|
226
|
+
{ "id": "claude-3-opus", "label": "Claude 3 Opus" }
|
|
227
|
+
],
|
|
228
|
+
"versionCommand": "aider --version"
|
|
224
229
|
}
|
|
225
230
|
]
|
|
226
231
|
}
|
|
@@ -231,6 +236,8 @@ Notes:
|
|
|
231
236
|
- `type` supports `path`, `bunx`, or `command`.
|
|
232
237
|
- `modeArgs` defines args per execution mode (Normal/Continue/Resume).
|
|
233
238
|
- `env` is optional per-agent environment variables.
|
|
239
|
+
- `models` is optional. If defined, model selection step will be shown for this agent.
|
|
240
|
+
- `versionCommand` is optional. If defined, version detection will use this command instead of skipping version selection.
|
|
234
241
|
|
|
235
242
|
## Advanced Workflows
|
|
236
243
|
|