@aiiware/aii 0.6.1 → 0.6.3
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 +18 -9
- package/bin/aii +366 -353
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,6 +72,8 @@ In agent mode, use these commands:
|
|
|
72
72
|
/hooks View configured hooks
|
|
73
73
|
/hooks reload Hot-reload hooks without restart
|
|
74
74
|
/skills List available skills
|
|
75
|
+
/skills help Show skills management commands
|
|
76
|
+
/skills reload Re-discover skills without restarting
|
|
75
77
|
/commit Generate commit message and commit
|
|
76
78
|
/exit Exit the session
|
|
77
79
|
```
|
|
@@ -240,6 +242,14 @@ Skills are reusable agent prompts that extend Aii with specialized capabilities.
|
|
|
240
242
|
|
|
241
243
|
### Invoking Skills
|
|
242
244
|
|
|
245
|
+
**Natural language** -- just describe what you want, and the agent detects the right skill:
|
|
246
|
+
|
|
247
|
+
```text
|
|
248
|
+
> explain what's an LLM
|
|
249
|
+
> commit my changes
|
|
250
|
+
> review the latest PR
|
|
251
|
+
```
|
|
252
|
+
|
|
243
253
|
**Slash commands** (explicit):
|
|
244
254
|
|
|
245
255
|
```bash
|
|
@@ -248,12 +258,12 @@ Skills are reusable agent prompts that extend Aii with specialized capabilities.
|
|
|
248
258
|
/review-pr 123 # Review a pull request
|
|
249
259
|
```
|
|
250
260
|
|
|
251
|
-
|
|
261
|
+
### Managing Skills
|
|
252
262
|
|
|
253
|
-
```
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
263
|
+
```bash
|
|
264
|
+
/skills # List all skills (built-in, project, user)
|
|
265
|
+
/skills help # Show all skills management commands
|
|
266
|
+
/skills reload # Re-discover skills without restarting
|
|
257
267
|
```
|
|
258
268
|
|
|
259
269
|
### Built-in Skills
|
|
@@ -276,9 +286,8 @@ Install skills from GitHub repositories:
|
|
|
276
286
|
/skills install https://github.com/aiiware/skills/tree/main/code-review
|
|
277
287
|
/skills install https://github.com/aiiware/skills/tree/main/refactor --user
|
|
278
288
|
|
|
279
|
-
#
|
|
280
|
-
/skills uninstall code-review
|
|
281
|
-
/skills # List all skills
|
|
289
|
+
# Uninstall
|
|
290
|
+
/skills uninstall code-review
|
|
282
291
|
```
|
|
283
292
|
|
|
284
293
|
**Shorthand format**: `owner/repo/skill-name` resolves to `github.com/owner/repo/skill-name/SKILL.md`
|
|
@@ -319,7 +328,7 @@ aii --version # Show version
|
|
|
319
328
|
- **Multiple Providers**: Claude, GPT, Gemini, DeepSeek
|
|
320
329
|
- **Prompt Templates**: Pre-built templates for common tasks
|
|
321
330
|
- **Project Instructions**: Teach the agent your conventions with AGENTS.md
|
|
322
|
-
- **Skills System**: Extend with reusable agent skills
|
|
331
|
+
- **Skills System**: Extend with reusable agent skills, invokable via slash commands or natural language
|
|
323
332
|
- **Input History**: Navigate previous inputs with arrow keys
|
|
324
333
|
- **Cancellation**: Press Esc to cancel any request
|
|
325
334
|
|