@tangle-network/agent-app 0.43.1 → 0.43.3
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 +3 -1
- package/dist/assistant/index.d.ts +1 -1
- package/dist/assistant/index.js +2 -1
- package/dist/assistant/index.js.map +1 -1
- package/dist/chunk-65P3HJY3.js +166 -0
- package/dist/chunk-65P3HJY3.js.map +1 -0
- package/dist/{chunk-FNFCDSEB.js → chunk-CIQ3GHZW.js} +2 -1
- package/dist/chunk-CIQ3GHZW.js.map +1 -0
- package/dist/{chunk-7DPQ5VWR.js → chunk-VKHB7VP4.js} +389 -430
- package/dist/chunk-VKHB7VP4.js.map +1 -0
- package/dist/composer/index.js.map +1 -1
- package/dist/design-canvas-react/index.js +4 -4
- package/dist/index.js +12 -12
- package/dist/sandbox/index.js +1 -1
- package/dist/sandbox-terminal-BIIC__CP.d.ts +46 -0
- package/dist/teams-react/index.js +3 -3
- package/dist/web-react/index.d.ts +18 -102
- package/dist/web-react/index.js +5 -5
- package/dist/web-react/terminal.d.ts +49 -0
- package/dist/web-react/terminal.js +95 -0
- package/dist/web-react/terminal.js.map +1 -0
- package/package.json +6 -1
- package/dist/chunk-7DPQ5VWR.js.map +0 -1
- package/dist/chunk-FNFCDSEB.js.map +0 -1
package/README.md
CHANGED
|
@@ -121,7 +121,9 @@ Each is an independent entry point — import only what you use.
|
|
|
121
121
|
| [`/crypto`](src/crypto) | AES-GCM field encryption: `encryptAesGcm`, `decryptAesGcm`, `createFieldCrypto`. Key supplied by the caller. |
|
|
122
122
|
| [`/missions`](src/missions) | Durable multi-step mission orchestration over a `MissionStorePort` seam: guarded status/step machine, idempotent plan engine with budget/approval gates, `:::mission` parser, the client-safe live-event reducer, and the canonical `StepAgentActivity` per-step delegated-run lane. |
|
|
123
123
|
| [`/trace`](src/trace) | Flow observability: `buildFlowTrace` + ASCII `renderWaterfall`/`renderHistogram`; the mission trace bridge (`createMissionTraceContext`, `childSpanContext`, `traceEnv`) whose ids/env a delegated run inherits; and delegation→FlowSpan converters (`delegationActivityToFlowSpans`, `loopTraceEventsToFlowSpans`, `composeMissionFlowTrace`). |
|
|
124
|
-
| [`/web-react`](src/web-react) |
|
|
124
|
+
| [`/web-react`](src/web-react) | Router-safe React chat components: `ChatComposer`, `ModelPicker`, `EffortPicker`, `ChatMessages`, `RunDrillIn`, plus observability surfaces — `MissionActivityLane`, `AgentActivityPanel`, `FlowWaterfall`. This path must not import sandbox-only UI. |
|
|
125
|
+
| [`/composer`](src/composer) | Sandbox-first `AgentComposer` and profile/model/sandbox-runner controls re-exported from `@tangle-network/sandbox-ui/chat`. Use when the chat owns a sandbox profile or needs the full sandbox composer. |
|
|
126
|
+
| `/web-react/terminal` | Sandbox terminal React components, including `WorkspaceTerminalPanel`. Import this explicit path only for container/terminal views. |
|
|
125
127
|
| [`/web`](src/web) | Request-boundary utilities: `parseJsonObjectBody`, `requireString`, `extractRequestContext`, `checkRateLimit`, `addSecurityHeaders`. |
|
|
126
128
|
| [`/stream`](src/stream) | SSE normalization and turn identity: `normalizeToolEvent`, `resolveChatTurn`, `encodeEvent`, message-part merging. |
|
|
127
129
|
| [`/redact`](src/redact) | `redactForIngestion` — PII redaction before content leaves the boundary. |
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
import { ToolDetailRenderers, ChatUiMessage } from '../web-react/index.js';
|
|
4
|
-
import '@tangle-network/sandbox-ui/chat';
|
|
5
4
|
import '../agent-activity-C8ZG0F0M.js';
|
|
6
5
|
import '../flow-types-Cb_AblZs.js';
|
|
6
|
+
import '../sandbox-terminal-BIIC__CP.js';
|
|
7
7
|
import '../model-catalog-BEAEVDaa.js';
|
|
8
8
|
import '../harness/index.js';
|
|
9
9
|
import '@tangle-network/agent-interface';
|