@aiiware/aii 0.6.0 → 0.6.1
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 -0
- package/bin/aii +354 -332
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,6 +65,8 @@ In agent mode, use these commands:
|
|
|
65
65
|
/context View context window usage
|
|
66
66
|
/init Generate AGENTS.md for your project
|
|
67
67
|
/init --with-hooks Generate AGENTS.md + hooks.json template
|
|
68
|
+
/init help Show /init usage and options
|
|
69
|
+
/hooks help Show /hooks usage and options
|
|
68
70
|
/memory View loaded project instructions
|
|
69
71
|
/memory reload Hot-reload instructions without restart
|
|
70
72
|
/hooks View configured hooks
|
|
@@ -225,6 +227,9 @@ Extend agent behavior with custom scripts. Create `.aii/hooks.json` to run scrip
|
|
|
225
227
|
|
|
226
228
|
# View configured hooks
|
|
227
229
|
/hooks
|
|
230
|
+
|
|
231
|
+
# Show usage and options
|
|
232
|
+
/hooks help
|
|
228
233
|
```
|
|
229
234
|
|
|
230
235
|
Hooks let you add validation, logging, or approval gates. See the [hooks documentation](https://aiiware.com/docs/hooks) for details.
|