@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/CHANGELOG.md +2269 -0
- package/README.md +4 -3
- package/dist/node/{createInteractiveRuntime-GD7gJ7ig.d.ts → createInteractiveRuntime-DSLwJcwG.d.ts} +304 -80
- package/dist/node/createInteractiveRuntime-DSLwJcwG.d.ts.map +1 -0
- package/dist/node/{createInteractiveRuntime-CKt44Pva.d.cts → createInteractiveRuntime-DoZCRxLM.d.cts} +304 -80
- package/dist/node/createInteractiveRuntime-DoZCRxLM.d.cts.map +1 -0
- package/dist/node/index.cjs +13 -13
- package/dist/node/index.d.cts +274 -11
- package/dist/node/index.d.cts.map +1 -1
- package/dist/node/index.d.ts +274 -11
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +24 -24
- package/dist/node/index.js.map +1 -1
- package/dist/node/interactive-Bo3KGaHV.cjs +122 -0
- package/dist/node/interactive-DhtkQoUk.js +123 -0
- package/dist/node/interactive-DhtkQoUk.js.map +1 -0
- package/dist/node/testing/index.cjs +2 -2
- package/dist/node/testing/index.d.cts +1 -1
- package/dist/node/testing/index.d.ts +1 -1
- package/dist/node/testing/index.js +2 -2
- package/package.json +24 -19
- package/dist/node/createInteractiveRuntime-CKt44Pva.d.cts.map +0 -1
- package/dist/node/createInteractiveRuntime-GD7gJ7ig.d.ts.map +0 -1
- package/dist/node/interactive-BpTvVVtf.cjs +0 -122
- package/dist/node/interactive-Bqe03GGe.js +0 -123
- package/dist/node/interactive-Bqe03GGe.js.map +0 -1
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
|
|
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
|
|
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
|
|
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)
|