@robota-sdk/agent-framework 3.0.0-beta.81 → 3.0.0-beta.83

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
@@ -7,7 +7,7 @@ lives in `src/transport-host/`; terminal `PrintTerminal` and `promptInput` are l
7
7
 
8
8
  Programmatic SDK for building AI agents with Robota. Provides `InteractiveSession` as the central client-facing API, `createQuery()` for one-shot use, `createAgentRuntime()` as a composition factory for headless and multi-session consumers, session management, SDK-owned command/common APIs, permissions, hooks, streaming, context loading, bounded prompt file references, and context reference inventory.
9
9
 
10
- This is the **assembly layer** of the Robota ecosystem — it composes lower-level packages (`agent-core`, `agent-tools`, `agent-session`, `agent-provider`) into a cohesive SDK.
10
+ This is the **assembly layer** of the Robota ecosystem — it composes lower-level packages (`agent-core`, `agent-tools`, `agent-session`, `agent-provider-*`) into a cohesive SDK.
11
11
 
12
12
  ## Installation
13
13
 
@@ -104,7 +104,8 @@ import type { IRuntimeHostOptions, IRuntimeHostHandle } from '@robota-sdk/agent-
104
104
  // `session` holds the resolved session options; `transportRegistry` is the loopback WS sidecar.
105
105
  declare const options: IRuntimeHostOptions;
106
106
  const host: IRuntimeHostHandle = await startRuntimeHost(options);
107
- // host.session — the live runtime session every presentation drives
107
+ // host.session — a SessionSlot: the live session every presentation drives, stable across a switch
108
+ // host.session.current — the session it currently forwards to
108
109
  // await host.shutdown() — bounded transport teardown + session shutdown
109
110
  ```
110
111
 
@@ -155,7 +156,7 @@ agent-framework (assembly layer)
155
156
  agent-session (Session, neutral session ports, explicit Node host adapters)
156
157
  agent-file-authority (stable bounded project byte reads over retained native handles)
157
158
  agent-tools (tool infrastructure + 9 built-in tools)
158
- agent-provider (consolidated AI providers: /anthropic, /openai, /gemini, …)
159
+ agent-provider-* (per-vendor AI providers: -anthropic, -openai, -gemini, …)
159
160
  agent-core (Robota engine, providers, permissions, hooks)
160
161
 
161
162
  agent-cli (TUI layer — bridges InteractiveSession events to React/Ink state)