@aiiware/aii 0.4.4 → 0.5.0
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 +17 -0
- package/bin/aii +692 -612
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,6 +63,8 @@ In agent mode, use these commands:
|
|
|
63
63
|
/model <model> Switch LLM model
|
|
64
64
|
/provider <name> Switch LLM provider
|
|
65
65
|
/exit Exit the session
|
|
66
|
+
/init Generate AGENTS.md for your project
|
|
67
|
+
/memory View loaded project instructions
|
|
66
68
|
```
|
|
67
69
|
|
|
68
70
|
### Keyboard Shortcuts
|
|
@@ -162,6 +164,20 @@ Prevents "token limit exceeded" errors in long conversations with intelligent au
|
|
|
162
164
|
- `/context` - View detailed usage breakdown
|
|
163
165
|
- `/context clear` - Manually trigger summarization
|
|
164
166
|
|
|
167
|
+
## Project Instructions (v0.5.0)
|
|
168
|
+
|
|
169
|
+
Teach the agent your project's conventions with `AGENTS.md`:
|
|
170
|
+
|
|
171
|
+
```bash
|
|
172
|
+
# Generate AGENTS.md for your project
|
|
173
|
+
/init
|
|
174
|
+
|
|
175
|
+
# View loaded instructions
|
|
176
|
+
/memory
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
The `/init` command analyzes your project and generates an `AGENTS.md` file with detected commands, coding standards, and safety rules. The agent automatically loads these instructions at session start.
|
|
180
|
+
|
|
165
181
|
## System Commands
|
|
166
182
|
|
|
167
183
|
```bash
|
|
@@ -178,6 +194,7 @@ aii --version # Show version
|
|
|
178
194
|
- **Tool Execution**: Read, write, search, and run commands
|
|
179
195
|
- **Multiple Providers**: Claude, GPT, Gemini, DeepSeek
|
|
180
196
|
- **Prompt Templates**: Pre-built templates for common tasks
|
|
197
|
+
- **Project Instructions**: Teach the agent your conventions with AGENTS.md
|
|
181
198
|
- **Input History**: Navigate previous inputs with arrow keys
|
|
182
199
|
- **Cancellation**: Press Esc to cancel any request
|
|
183
200
|
|