gut-cli 0.1.10 → 0.1.11
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.md +21 -0
- package/dist/index.js +413 -223
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,6 +34,7 @@ npm install -g gut-cli
|
|
|
34
34
|
| `gut summary` | Generate work summary (daily/weekly reports) |
|
|
35
35
|
| `gut config` | Manage configuration (language, etc.) |
|
|
36
36
|
| `gut lang` | Set or show output language |
|
|
37
|
+
| `gut init` | Initialize .gut/ templates in your project |
|
|
37
38
|
|
|
38
39
|
### `gut commit`
|
|
39
40
|
|
|
@@ -368,6 +369,26 @@ gut config get lang
|
|
|
368
369
|
1. Local: `.gut/config.json` (per-repository)
|
|
369
370
|
2. Global: `~/.config/gut/config.json`
|
|
370
371
|
|
|
372
|
+
### `gut init`
|
|
373
|
+
|
|
374
|
+
Initialize `.gut/` templates in your project for customization.
|
|
375
|
+
|
|
376
|
+
```bash
|
|
377
|
+
# Copy all templates to .gut/ (translates if language is not English)
|
|
378
|
+
gut init
|
|
379
|
+
|
|
380
|
+
# Force overwrite existing templates
|
|
381
|
+
gut init --force
|
|
382
|
+
|
|
383
|
+
# Skip translation (copy English templates as-is)
|
|
384
|
+
gut init --no-translate
|
|
385
|
+
|
|
386
|
+
# Use specific provider for translation
|
|
387
|
+
gut init --provider openai
|
|
388
|
+
```
|
|
389
|
+
|
|
390
|
+
Templates are automatically translated to your configured language (set via `gut lang`).
|
|
391
|
+
|
|
371
392
|
### `gut cleanup`
|
|
372
393
|
|
|
373
394
|
Delete merged branches safely.
|