@aiiware/aii 0.19.5 → 0.19.6
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 +2 -2
- package/bin/aii +534 -532
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -240,7 +240,7 @@ While a goal is **active**, the agent sees the objective every turn and auto-con
|
|
|
240
240
|
|
|
241
241
|
| Command | What It Does |
|
|
242
242
|
|---------|-------------|
|
|
243
|
-
| `/goal <objective>` | Set the goal — flags: `--verify "cmd"` (repeatable), `--budget`, `--auto-turns` (`0` or `unlimited`; default: unlimited — a goal runs until achieved), `--max-time`, `--max-tokens`, `--no-proof`, `--auto` |
|
|
243
|
+
| `/goal <objective>` | Set the goal — flags: `--verify "cmd"` (repeatable), `--budget`, `--auto-turns` (`0` or `unlimited`; default: unlimited — a goal runs until achieved), `--max-time`, `--max-tokens`, `--no-proof`, `--no-auto`/`--auto-approve`, `--auto` |
|
|
244
244
|
| `/goal` | Status view — objective, status, verify, limits, usage |
|
|
245
245
|
| `/goal draft <description>` | The model proposes a strong goal contract; you edit + submit |
|
|
246
246
|
| `/goal edit <text and/or flags>` | Revise in place |
|
|
@@ -248,7 +248,7 @@ While a goal is **active**, the agent sees the objective every turn and auto-con
|
|
|
248
248
|
|
|
249
249
|
**Verified completion** — with `--verify` armed, `GOAL COMPLETE` only counts when every command exits 0; failures keep the goal active and feed back to the agent, so "done" means *provably* done. Even without `--verify`, a bare completion isn't taken at face value: the agent gets one nudge to show proof, self-contradicting evidence is rejected, and an uncapped goal (the default) **never ends on an unverified claim** (opt out with `--no-proof` or `goal.proof_expected: false` in config).
|
|
250
250
|
|
|
251
|
-
Guardrails: a goal **runs until achieved** by default — cap it with `--auto-turns <n>` or a durable `goal.auto_turns` in config; anti-spin pauses a goal that stops doing work, limit stops hand off with measured progress/remaining/next, typing always wins the turn, Esc pauses, and the `◎ Goal` status-bar segment keeps the state in view. Goals survive restarts via `aii agent --continue`.
|
|
251
|
+
Guardrails: a goal **runs until achieved** by default and its own turns **auto-approve tools** (workspace-fenced; your typed turns keep prompting — opt out with `--no-auto` or `goal.auto_approve: false` in config) — cap it with `--auto-turns <n>` or a durable `goal.auto_turns` in config; anti-spin pauses a goal that stops doing work, limit stops hand off with measured progress/remaining/next, typing always wins the turn, Esc pauses, and the `◎ Goal` status-bar segment keeps the state in view. Goals survive restarts via `aii agent --continue`.
|
|
252
252
|
|
|
253
253
|
`/goal` vs `/loop`: a loop grinds a fixed prompt with fresh context each iteration; a goal keeps one **conversation** converging on an outcome. Starting a loop auto-pauses an active goal.
|
|
254
254
|
|