@aiiware/aii 0.25.0 → 0.25.1

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 CHANGED
@@ -9,7 +9,7 @@ An autonomous AI assistant that lives in your terminal. Ask it anything — it r
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.19.3 · <strong>Node.js:</strong> >= 20
12
+ <strong>npm:</strong> <code>@aiiware/aii</code> · <strong>Version:</strong> 0.25.0 · <strong>Node.js:</strong> >= 20
13
13
  </p>
14
14
 
15
15
  ---
@@ -36,7 +36,7 @@ Installs Node.js and the Aii CLI — no Docker required to get started. (Prefer
36
36
 
37
37
  ```bash
38
38
  aii cloud login
39
- aii "what can you do?"
39
+ aii --inference cloud "what can you do?"
40
40
  ```
41
41
 
42
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.
@@ -47,7 +47,7 @@ Prefer no daily limit and full local control? Point Aii at your own provider key
47
47
 
48
48
  ```bash
49
49
  aii config apikey anthropic <your-key>
50
- aii "refactor this module and run the tests"
50
+ aii --inference server "refactor this module and run the tests"
51
51
  ```
52
52
 
53
53
  Supported providers include Anthropic, OpenAI, Google, and more. No key yet? Just run `aii "…"` and the setup wizard walks you through provider, model, and key. This is the home for heavy, sustained use.
@@ -86,6 +86,27 @@ 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
90
+
91
+ ```bash
92
+ aii cloud login
93
+ aii --remote-control --inference server
94
+ ```
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.
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.
99
+
100
+ ```bash
101
+ aii resume <session-id> --remote-control
102
+ ```
103
+
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.
105
+
106
+ 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
+
108
+ The pre-GA `--remote`, `--local` and `aii cloud connect` entry points have been removed. Use the single launcher above; the old spellings are not aliases.
109
+
89
110
  ### Switch models on the fly
90
111
 
91
112
  ```bash
@@ -442,7 +463,9 @@ Project slash commands live one markdown file per command under `.aii/commands/`
442
463
  | `aii <query>` | Single-shot query |
443
464
  | `aii run git commit [-y]` | AI-powered git commit |
444
465
  | `aii loop [query] [--flags]` | Autonomous agent loop |
445
- | `aii cloud <action>` | Aii Cloud connect this machine, dispatch from the web (BYOC) |
466
+ | `aii --remote-control` | Enable CloudWeb continuation and new web conversations |
467
+ | `aii resume <session-id>` | Restore an exact saved conversation in its original workspace |
468
+ | `aii cloud <action>` | Cloud sign-in, status and workspace management |
446
469
  | `aii config <action>` | Configuration management |
447
470
  | `aii mcp <action>` | MCP server management |
448
471
  | `aii telegram <action>` | Telegram bot management |
@@ -463,6 +486,8 @@ Run `aii help` for the full command list.
463
486
  | Flag | Description |
464
487
  |------|-------------|
465
488
  | `--model <name>` | Override model (e.g., `deepseek/deepseek-chat`) |
489
+ | `--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 |
466
491
  | `--auto` | Auto-approve tool prompts (the write fence, sensitive-path reads and project deny rules still apply) |
467
492
  | `-y`, `--yes` | Auto-confirm shell prompts (does **not** authorise installs — see `--trust-source`) |
468
493
  | `--trust-source` | Authorise installing third-party code (skills, plugins, personas) non-interactively |