@aiiware/aii 0.18.1 → 0.18.2
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 +15 -0
- package/bin/aii +549 -548
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,21 @@ aii run git commit -y
|
|
|
79
79
|
|
|
80
80
|
It reads your staged changes, writes a Conventional Commits message, and commits — one command.
|
|
81
81
|
|
|
82
|
+
Control the attribution footer (also on `aii run git pr`):
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
aii run git commit -y --no-signature # this run: no footer
|
|
86
|
+
aii run git commit -y --signature "Reviewed-by: TT" # this run: your own footer
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
```yaml
|
|
90
|
+
# ~/.aii/config.yaml — persistent preference
|
|
91
|
+
git:
|
|
92
|
+
commit_signature: none # default | none | any literal footer text
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Precedence: `--no-signature` > `--signature "<text>"` > config > default. The footer is appended by the CLI after generation (never model-written), so it is byte-identical on every run. The interactive `/commit` and `/review` skills are separate surfaces and keep their own footer.
|
|
96
|
+
|
|
82
97
|
### Start an interactive session
|
|
83
98
|
|
|
84
99
|
```bash
|