iosm-cli 0.2.9 → 0.2.10

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.
@@ -127,6 +127,11 @@ These commands run inside interactive mode (`iosm`), not as top-level CLI subcom
127
127
  - baseline repository scan + standard agent pass
128
128
  - outputs exactly 3 implementation options with recommendation
129
129
  - lets user choose option `1/2/3`, then `Start with Swarm` or `Continue without Swarm`
130
+ - `/ultrathink [-q N|--iterations N] [query]` — deep read-only iterative analysis:
131
+ - runs root-agent analysis in strict read-only tool mode for `N` iterations (default `5`, max `12`)
132
+ - carries compact checkpoint state between iterations (facts, rejected hypotheses, open questions, next checks)
133
+ - auto-injects a grounding retry when early passes return no tool evidence, forcing live workspace probes
134
+ - if query is omitted, reuses latest meaningful user request from session context
130
135
  - `/swarm` — canonical gated execution runtime:
131
136
  - `/swarm run <task> [--max-parallel N] [--budget-usd X]`
132
137
  - `/swarm from-singular <run-id> --option <1|2|3> [--max-parallel N] [--budget-usd X]`
@@ -56,6 +56,7 @@ iosm --continue
56
56
  | `/semantic` | Open semantic search manager (`setup/auto-index/status/index/rebuild/query`) | `/semantic` |
57
57
  | `/contract` | Interactive engineering contract editor (field-by-field, auto JSON build) | `/contract` |
58
58
  | `/singular` | Feature feasibility analyzer with implementation options and recommendation | `/singular add account dashboard` |
59
+ | `/ultrathink` | Deep multi-iteration read-only analysis mode with self-check checkpoints | `/ultrathink -q 7 investigate auth regression` |
59
60
  | `/swarm` | Recommended multi-agent orchestration runtime for complex/risky tasks (`run`, `from-singular`, `watch`, `retry`, `resume`) | `/swarm run refactor auth module --max-parallel 3` |
60
61
  | `/memory` | Interactive memory manager (`add/edit/remove/scope/path`) | `/memory` |
61
62
  | `/settings` | View/modify settings | `/settings` |
@@ -109,6 +110,9 @@ In `/semantic setup`, the headers step is optional: press `Enter` on empty input
109
110
  `/memory` opens an interactive manager. `/memory <text>` saves a note to `memory.md` and reloads session context. Use `/memory edit <index> <text>` for direct updates.
110
111
  `/contract` edits contract fields interactively (`goal`, scope, constraints, quality gates, DoD, risks, etc.), then writes JSON automatically.
111
112
  `/singular <request>` runs a two-pass feasibility analysis (baseline scan + standard agent pass), builds concrete implementation options, then prompts `Start with Swarm` / `Continue without Swarm` / `Cancel`.
113
+ `/ultrathink [-q N|--iterations N] [query]` runs `N` root-agent analysis passes in strict read-only mode (`N` defaults to `5`, max `12`), carries a compact checkpoint between passes, and emits concise per-iteration summaries with a final synthesis.
114
+ `/ultrathink` without query reuses the latest meaningful user request from session context.
115
+ If early passes produce no tool evidence, ultrathink injects an internal grounding retry so the agent probes the workspace with read-only tools before continuing.
112
116
  `/swarm` enforces `Scopes -> Touches -> Locks -> Gates -> Done`. If effective contract is missing, it blocks execution and opens a bootstrap menu (auto-draft, guided Q&A, or manual `/contract` editor).
113
117
  `/orchestrate --parallel` defaults `--max-parallel` to `--agents` when omitted and auto-selects `meta` workers when profiles are not explicitly set (outside read-only host contexts).
114
118
  For orchestrate assignments, `delegate_parallel_hint` is carried into child task calls; high hints should trigger nested delegate fan-out or explicit `DELEGATION_IMPOSSIBLE`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iosm-cli",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "Standalone IOSM CLI with agent tooling, session management, and IOSM artifact orchestration",
5
5
  "type": "module",
6
6
  "iosmConfig": {