@robota-sdk/agent-cli 3.0.0-beta.15 → 3.0.0-beta.17
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 +10 -3
- package/dist/node/bin.cjs +467 -315
- package/dist/node/bin.js +1 -1
- package/dist/node/{chunk-B423R5N3.js → chunk-4WB3L3RU.js} +465 -313
- package/dist/node/index.cjs +467 -315
- package/dist/node/index.js +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -75,9 +75,14 @@ robota -r <session-id> # Resume session by ID
|
|
|
75
75
|
robota --model <model> # Model override (e.g., claude-sonnet-4-6)
|
|
76
76
|
robota --permission-mode <mode> # plan | default | acceptEdits | bypassPermissions
|
|
77
77
|
robota --max-turns <n> # Limit agentic turns per interaction
|
|
78
|
+
robota --reset # Delete user settings and exit
|
|
78
79
|
robota --version # Show version
|
|
79
80
|
```
|
|
80
81
|
|
|
82
|
+
## First-Run Setup
|
|
83
|
+
|
|
84
|
+
When no settings file exists, the CLI prompts for an Anthropic API key (input masked with asterisks) and creates `~/.robota/settings.json`. Use `robota --reset` to return to first-run state.
|
|
85
|
+
|
|
81
86
|
## Built-in Tools
|
|
82
87
|
|
|
83
88
|
The CLI provides 6 tools that the AI agent can invoke:
|
|
@@ -177,9 +182,11 @@ Configure in `.robota/settings.json` or `.robota/settings.local.json`:
|
|
|
177
182
|
| `/help` | Show help |
|
|
178
183
|
| `/clear` | Clear conversation history |
|
|
179
184
|
| `/mode [mode]` | Show or change permission mode |
|
|
180
|
-
| `/
|
|
181
|
-
| `/
|
|
182
|
-
| `/
|
|
185
|
+
| `/model [model]`| Select AI model (confirmation + restart) |
|
|
186
|
+
| `/compact [instructions]` | Compress context window |
|
|
187
|
+
| `/cost` | Show session info |
|
|
188
|
+
| `/context` | Context window details |
|
|
189
|
+
| `/permissions` | Show permission rules |
|
|
183
190
|
| `/exit` | Exit CLI |
|
|
184
191
|
|
|
185
192
|
## Configuration
|