osagent 0.2.85 → 0.2.87
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/dist/README.md +14 -0
- package/dist/cli.js +24959 -16250
- package/dist/locales/en.js +887 -890
- package/dist/locales/zh.js +851 -851
- package/dist/package.json +2 -2
- package/package.json +1 -1
package/dist/README.md
CHANGED
|
@@ -172,12 +172,14 @@ osagent --dangerously
|
|
|
172
172
|
Once in the interactive mode, you can use these commands:
|
|
173
173
|
|
|
174
174
|
#### General
|
|
175
|
+
|
|
175
176
|
- `/help` - Show available commands
|
|
176
177
|
- `/about` - Show version and system info
|
|
177
178
|
- `/settings` - View and edit settings
|
|
178
179
|
- `/quit` or `/q` - Exit osagent
|
|
179
180
|
|
|
180
181
|
#### Model & AI
|
|
182
|
+
|
|
181
183
|
- `/model` - Switch AI model (opens model selector)
|
|
182
184
|
- `/model list` - List available models for current provider
|
|
183
185
|
- `/model info` - Show current model details
|
|
@@ -187,6 +189,7 @@ Once in the interactive mode, you can use these commands:
|
|
|
187
189
|
- `/consult` - Manage consultation mode (AI asks clarifying questions)
|
|
188
190
|
|
|
189
191
|
#### Conversation
|
|
192
|
+
|
|
190
193
|
- `/continue` - Resume the most recent conversation
|
|
191
194
|
- `/continue list` - List recent sessions to resume
|
|
192
195
|
- `/reset` - Clear conversation and start fresh
|
|
@@ -195,10 +198,12 @@ Once in the interactive mode, you can use these commands:
|
|
|
195
198
|
- `/chat resume <tag>` - Resume from checkpoint
|
|
196
199
|
|
|
197
200
|
#### Safety & Permissions
|
|
201
|
+
|
|
198
202
|
- `/dangerously` or `/yolo` - Toggle auto-accept mode for tool executions
|
|
199
203
|
- `/permissions` - View and manage tool permissions
|
|
200
204
|
|
|
201
205
|
#### System
|
|
206
|
+
|
|
202
207
|
- `/doctor` - Check system health and updates
|
|
203
208
|
- `/doctor update` - Auto-update to latest version
|
|
204
209
|
- `/doctor init` - Initialize `~/.osagent/` directory structure
|
|
@@ -209,6 +214,7 @@ Once in the interactive mode, you can use these commands:
|
|
|
209
214
|
- `/context` or `/ctx` - View context window usage and token stats
|
|
210
215
|
|
|
211
216
|
#### Utilities
|
|
217
|
+
|
|
212
218
|
- `/copy` - Copy last response to clipboard
|
|
213
219
|
- `/memory` - View and edit project memory
|
|
214
220
|
- `/tools` - List available tools
|
|
@@ -217,6 +223,7 @@ Once in the interactive mode, you can use these commands:
|
|
|
217
223
|
### Status Bar
|
|
218
224
|
|
|
219
225
|
While osagent works, you'll see a real-time status bar showing:
|
|
226
|
+
|
|
220
227
|
- Current activity with spinner
|
|
221
228
|
- Token usage (input ↑ / output ↓)
|
|
222
229
|
- Elapsed time
|
|
@@ -317,22 +324,26 @@ osagent /init
|
|
|
317
324
|
## Supported Models
|
|
318
325
|
|
|
319
326
|
### Cloud Models (Ollama Cloud)
|
|
327
|
+
|
|
320
328
|
- `qwen3-coder:480b-cloud` - Most powerful (256K context)
|
|
321
329
|
- `kimi-k2.5:cloud` - High-performance coding model (131K context)
|
|
322
330
|
- `qwen3-coder:30b` - Efficient (30B params, 3.3B active)
|
|
323
331
|
|
|
324
332
|
### GROQ (Fast Inference)
|
|
333
|
+
|
|
325
334
|
- `moonshotai/kimi-k2-instruct-0905` - Best coding model (256K context, ~200 tok/s)
|
|
326
335
|
- `moonshotai/kimi-k2-instruct` - Kimi K2 (256K context)
|
|
327
336
|
- `llama-3.3-70b-versatile` - Versatile general coding
|
|
328
337
|
- `llama-3.1-8b-instant` - Ultra-fast for simple tasks
|
|
329
338
|
|
|
330
339
|
### Anthropic
|
|
340
|
+
|
|
331
341
|
- `claude-opus-4-5-20251101` - Most powerful
|
|
332
342
|
- `claude-sonnet-4-5-20250929` - Best balance (recommended)
|
|
333
343
|
- `claude-haiku-4-5-20251001` - Fastest
|
|
334
344
|
|
|
335
345
|
### Local Models (Ollama)
|
|
346
|
+
|
|
336
347
|
- `qwen2.5-coder:32b` - Best local coding model (~20GB VRAM)
|
|
337
348
|
- `qwen2.5-coder:14b` - Great balance (~10GB VRAM)
|
|
338
349
|
- `qwen2.5-coder:7b` - Good for limited VRAM (~5GB)
|
|
@@ -382,6 +393,7 @@ packages/
|
|
|
382
393
|
## Keyboard Shortcuts
|
|
383
394
|
|
|
384
395
|
### General
|
|
396
|
+
|
|
385
397
|
- `Ctrl+C` - Cancel current operation / Exit (press twice)
|
|
386
398
|
- `Ctrl+D` - Exit
|
|
387
399
|
- `Escape` - Cancel operation / Clear input
|
|
@@ -390,10 +402,12 @@ packages/
|
|
|
390
402
|
- `?` - Show shortcuts help
|
|
391
403
|
|
|
392
404
|
### During Operations
|
|
405
|
+
|
|
393
406
|
- `Ctrl+O` - Expand/collapse output
|
|
394
407
|
- `Ctrl+Y` - Toggle todo list visibility
|
|
395
408
|
|
|
396
409
|
### Text Editing
|
|
410
|
+
|
|
397
411
|
- `Ctrl+L` - Clear screen
|
|
398
412
|
- `Ctrl+A` - Move to start of line
|
|
399
413
|
- `Ctrl+E` - Move to end of line
|