ultrahope 0.1.3 → 0.1.4
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 +12 -0
- package/dist/git-ultrahope.js +506 -260
- package/dist/index.js +594 -221
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,18 @@ git diff main | ultrahope translate --target pr-intent
|
|
|
39
39
|
git diff --staged | ultrahope translate --target vcs-commit-message --models mistral/ministral-3b,xai/grok-code-fast-1
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
### Guide context for commit/message generation
|
|
43
|
+
|
|
44
|
+
`git ultrahope commit` と `ultrahope jj describe` では `--guide <text>` を使って、差分だけでは分からない生成意図を補足できます。
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
# git commit の生成補足
|
|
48
|
+
git add -A && git ultrahope commit --guide "GHSA-gq3j-xvxp-8hrf: override reason"
|
|
49
|
+
|
|
50
|
+
# jj describe の生成補足
|
|
51
|
+
jj ultrahope describe --guide "GHSA-gq3j-xvxp-8hrf: override reason"
|
|
52
|
+
```
|
|
53
|
+
|
|
42
54
|
#### Targets
|
|
43
55
|
|
|
44
56
|
- `vcs-commit-message` - Generate a commit message
|