ultrahope 0.1.7 → 0.1.8
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 +5 -5
- package/dist/git-ultrahope.js +1556 -383
- package/dist/index.js +1609 -459
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -67,21 +67,21 @@ If you answer `y`, Ultrahope runs `git add -A` and continues with staged changes
|
|
|
67
67
|
If you answer `n` (or leave the default), it exits with the existing staged-changes error.
|
|
68
68
|
In `--no-interactive` mode, no prompt is shown and it exits immediately when no staged changes exist.
|
|
69
69
|
|
|
70
|
-
In interactive mode for `git ultrahope commit`, `ultrahope jj describe`, and `ultrahope translate --target vcs-commit-message`, use `r` to
|
|
70
|
+
In interactive mode for `git ultrahope commit`, `ultrahope jj describe`, and `ultrahope translate --target vcs-commit-message`, use `r` to refine the generated results with additional instructions.
|
|
71
71
|
|
|
72
72
|
#### Difference Between `guide` And Refine Instructions
|
|
73
73
|
|
|
74
74
|
- `--guide`:
|
|
75
75
|
- Supplemental intent outside the diff (for example: ticket ID, background, change intent)
|
|
76
|
-
- `
|
|
77
|
-
- Review generated results and enter inline instructions for the next
|
|
76
|
+
- `r refine`:
|
|
77
|
+
- Review generated results and enter inline instructions for the next refinement pass
|
|
78
78
|
- Examples: "more formal", "shorter"
|
|
79
79
|
- Press `Enter` with empty input to clear the previous refine instructions
|
|
80
80
|
- If specified multiple times, the last one overwrites previous values
|
|
81
|
-
- `
|
|
81
|
+
- `r` applies refinement instructions (`refine`)
|
|
82
82
|
- At request time, refine instructions are merged into `guide` and sent to the API:
|
|
83
83
|
- `--guide` only: `guide = "<guide>"`
|
|
84
|
-
- `
|
|
84
|
+
- `r refine` only: `guide = "<refine>"`
|
|
85
85
|
- both: `guide = "<guide>\n\nRefinement: <refine>"`
|
|
86
86
|
|
|
87
87
|
#### Targets
|