@aiiware/aii 0.25.1 → 0.25.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.
Files changed (4) hide show
  1. package/README.md +21 -13
  2. package/bin/aii +1083 -1082
  3. package/bin/aii-host-worker.mjs +475 -480
  4. package/package.json +1 -1
package/README.md CHANGED
@@ -39,7 +39,7 @@ aii cloud login
39
39
  aii --inference cloud "what can you do?"
40
40
  ```
41
41
 
42
- Sign in with Google or GitHub and your first answer lands in seconds — free on Aii Cloud (a daily free budget, no card required). Point it at a project and it reads your files, runs the tools it needs, and gets to work.
42
+ Sign in with Google or GitHub and your first answer lands in seconds — free on AiiCloud (a daily free budget, no card required). Point it at a project and it reads your files, runs the tools it needs, and gets to work.
43
43
 
44
44
  ### Go unlimited — your own key, your own budget
45
45
 
@@ -86,22 +86,24 @@ aii
86
86
 
87
87
  You get a rich terminal UI with streaming responses, syntax highlighting, diff previews, and autocomplete for slash commands.
88
88
 
89
- ### Continue from CloudWeb
89
+ ### Continue in AiiCloud
90
90
 
91
91
  ```bash
92
92
  aii cloud login
93
93
  aii --remote-control --inference server
94
94
  ```
95
95
 
96
- Open the printed CloudWeb link to continue the same conversation and respond to tool approvals. The running Aii process also makes its declared workspaces available for new web conversations. It must remain running on your computer or VPS.
96
+ Open the printed AiiCloud link to continue the same conversation and respond to tool approvals. The running Aii process also makes its declared workspaces available for new web conversations. It must remain running on your computer or VPS.
97
97
 
98
- `--remote-control` controls browser access. `--inference server` uses your configured aii-server, whether local or remote; `--inference cloud` uses the Cloud Gateway. Signing in for remote control does not change your inference preference. Omit `--inference` to use your saved preference, or the original conversation's settings when resuming.
98
+ `--remote-control` controls browser access. `--inference server` uses your configured Aii Server, whether local or remote; `--inference cloud` uses AiiCloud inference. Signing in for remote control does not change your inference preference. Omit `--inference` to use your saved preference, or the original conversation's settings when resuming.
99
99
 
100
100
  ```bash
101
- aii resume <session-id> --remote-control
101
+ aii sessions list
102
+ aii sessions info <full-id>
103
+ aii resume <full-id> --remote-control
102
104
  ```
103
105
 
104
- Run this from the original workspace on the original machine to restore its saved context and CloudWeb conversation. Resume requires an intact, safely stopped saved session; interrupted work with an uncertain outcome is not automatically replayed. `/remote off` disables remote control during a session; `/remote on` enables it again. Enabling control does not copy earlier private messages into CloudWeb. Cloud inference keeps its ordinary configured history independently of remote control.
106
+ Run this from the original workspace on the original machine to restore its saved context and AiiCloud conversation. Resume requires an intact, safely stopped saved session; interrupted work with an uncertain outcome is not automatically replayed. `/remote off` disables remote control during a session; `/remote on` enables it again. Enabling control does not copy earlier private messages into AiiCloud. Cloud inference keeps its ordinary configured history independently of remote control.
105
107
 
106
108
  Manage directories offered for new web conversations with `aii cloud workspace list`, `add <path>` or `remove <label|path>`, then restart the hosting Aii process to apply the change.
107
109
 
@@ -388,15 +390,21 @@ aii mcp add my-server npx my-mcp # Add custom server
388
390
 
389
391
  MCP servers connect in the background during session start. If a server drops, `/mcp reconnect <server>` restores it without restarting your session.
390
392
 
391
- ### Server Sessions
393
+ ### Saved Conversations
392
394
 
393
- Conversations persist across restarts and channels:
395
+ List conversations saved on this computer, including sessions controlled through AiiCloud. Listing works offline and shows full IDs, workspaces, inference backends, and recovery status without displaying prompts.
394
396
 
395
397
  ```bash
396
- aii sessions list # Browse recent sessions
397
- aii sessions resume <id> # Pick up where you left off
398
+ aii sessions list # Browse saved conversations on this computer
399
+ aii sessions info <full-id> # Check status and resume instructions
400
+ aii resume <full-id> # Run from the saved workspace
401
+ aii resume <full-id> --remote-control # Enable control from AiiCloud
398
402
  ```
399
403
 
404
+ Inside a conversation, `/sessions` and `/sessions info <full-id>` show the same saved catalog. An open session must finish or close before another process can resume it. Hosted conversations continue in AiiCloud with their computer connected; unresolved execution requires recovery before resuming.
405
+
406
+ For conversations managed by the separate Aii Server Session API, use `aii sessions server list` or `aii sessions server resume <id>`. These commands use your configured Aii Server regardless of your inference preference.
407
+
400
408
  ---
401
409
 
402
410
  ## Configuration
@@ -463,9 +471,9 @@ Project slash commands live one markdown file per command under `.aii/commands/`
463
471
  | `aii <query>` | Single-shot query |
464
472
  | `aii run git commit [-y]` | AI-powered git commit |
465
473
  | `aii loop [query] [--flags]` | Autonomous agent loop |
466
- | `aii --remote-control` | Enable CloudWeb continuation and new web conversations |
474
+ | `aii --remote-control` | Enable AiiCloud continuation and new web conversations |
467
475
  | `aii resume <session-id>` | Restore an exact saved conversation in its original workspace |
468
- | `aii cloud <action>` | Cloud sign-in, status and workspace management |
476
+ | `aii cloud <action>` | AiiCloud sign-in, status and workspace management |
469
477
  | `aii config <action>` | Configuration management |
470
478
  | `aii mcp <action>` | MCP server management |
471
479
  | `aii telegram <action>` | Telegram bot management |
@@ -487,7 +495,7 @@ Run `aii help` for the full command list.
487
495
  |------|-------------|
488
496
  | `--model <name>` | Override model (e.g., `deepseek/deepseek-chat`) |
489
497
  | `--inference cloud\|server` | Select inference for this invocation; independent of remote control |
490
- | `--remote-control` | Enable CloudWeb access to an interactive conversation and host new web conversations |
498
+ | `--remote-control` | Enable AiiCloud access to an interactive conversation and host new web conversations |
491
499
  | `--auto` | Auto-approve tool prompts (the write fence, sensitive-path reads and project deny rules still apply) |
492
500
  | `-y`, `--yes` | Auto-confirm shell prompts (does **not** authorise installs — see `--trust-source`) |
493
501
  | `--trust-source` | Authorise installing third-party code (skills, plugins, personas) non-interactively |