@agent-native/core 0.84.56 → 0.84.57

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.
Files changed (95) hide show
  1. package/corpus/README.md +1 -1
  2. package/corpus/core/CHANGELOG.md +6 -0
  3. package/corpus/core/docs/content/locales/ar-SA/template-analytics.mdx +2 -0
  4. package/corpus/core/docs/content/locales/ar-SA/template-clips.mdx +2 -0
  5. package/corpus/core/docs/content/locales/de-DE/template-analytics.mdx +2 -0
  6. package/corpus/core/docs/content/locales/de-DE/template-clips.mdx +2 -0
  7. package/corpus/core/docs/content/locales/es-ES/template-analytics.mdx +2 -0
  8. package/corpus/core/docs/content/locales/es-ES/template-clips.mdx +2 -0
  9. package/corpus/core/docs/content/locales/fr-FR/template-analytics.mdx +2 -0
  10. package/corpus/core/docs/content/locales/fr-FR/template-clips.mdx +2 -0
  11. package/corpus/core/docs/content/locales/hi-IN/template-analytics.mdx +2 -0
  12. package/corpus/core/docs/content/locales/hi-IN/template-clips.mdx +2 -0
  13. package/corpus/core/docs/content/locales/ja-JP/template-analytics.mdx +2 -0
  14. package/corpus/core/docs/content/locales/ja-JP/template-clips.mdx +2 -0
  15. package/corpus/core/docs/content/locales/ko-KR/template-analytics.mdx +2 -0
  16. package/corpus/core/docs/content/locales/ko-KR/template-clips.mdx +2 -0
  17. package/corpus/core/docs/content/locales/pt-BR/template-analytics.mdx +2 -0
  18. package/corpus/core/docs/content/locales/pt-BR/template-clips.mdx +2 -0
  19. package/corpus/core/docs/content/locales/zh-CN/template-analytics.mdx +2 -0
  20. package/corpus/core/docs/content/locales/zh-CN/template-clips.mdx +2 -0
  21. package/corpus/core/docs/content/locales/zh-TW/template-analytics.mdx +2 -0
  22. package/corpus/core/docs/content/locales/zh-TW/template-clips.mdx +2 -0
  23. package/corpus/core/docs/content/template-analytics.mdx +2 -0
  24. package/corpus/core/docs/content/template-clips.mdx +22 -10
  25. package/corpus/core/docs/content/tracking.mdx +2 -0
  26. package/corpus/core/package.json +1 -1
  27. package/corpus/templates/analytics/.agents/skills/session-replay/SKILL.md +8 -0
  28. package/corpus/templates/analytics/AGENTS.md +5 -0
  29. package/corpus/templates/analytics/actions/create-session-replay-agent-link.ts +31 -0
  30. package/corpus/templates/analytics/app/i18n/zh-TW.ts +2 -0
  31. package/corpus/templates/analytics/app/i18n-data.ts +20 -0
  32. package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +65 -3
  33. package/corpus/templates/analytics/changelog/2026-07-02-session-replays-can-be-copied-as-temporary-private-links-for-agents.md +6 -0
  34. package/corpus/templates/analytics/server/handlers/session-replay.ts +78 -0
  35. package/corpus/templates/analytics/server/lib/session-replay-agent-context.ts +313 -0
  36. package/corpus/templates/analytics/server/lib/session-replay.ts +198 -3
  37. package/corpus/templates/analytics/server/routes/[...page].get.ts +104 -1
  38. package/corpus/templates/analytics/server/routes/api/session-replay/agent-context.json.get.ts +48 -0
  39. package/corpus/templates/analytics/server/routes/api/session-replay/agent-events.json.get.ts +63 -0
  40. package/corpus/templates/analytics/shared/session-replay-agent-access.ts +10 -0
  41. package/corpus/templates/clips/.agents/skills/video-sharing/SKILL.md +14 -8
  42. package/corpus/templates/clips/AGENTS.md +3 -2
  43. package/corpus/templates/clips/actions/create-recording-agent-link.ts +90 -0
  44. package/corpus/templates/clips/app/components/player/share-dialog.tsx +43 -46
  45. package/corpus/templates/clips/app/components/sharing/share-ui.tsx +5 -3
  46. package/corpus/templates/clips/app/i18n/ar-SA.ts +1 -1
  47. package/corpus/templates/clips/app/i18n/de-DE.ts +1 -1
  48. package/corpus/templates/clips/app/i18n/en-US.ts +1 -1
  49. package/corpus/templates/clips/app/i18n/es-ES.ts +1 -1
  50. package/corpus/templates/clips/app/i18n/fr-FR.ts +1 -1
  51. package/corpus/templates/clips/app/i18n/hi-IN.ts +1 -1
  52. package/corpus/templates/clips/app/i18n/ja-JP.ts +1 -1
  53. package/corpus/templates/clips/app/i18n/ko-KR.ts +1 -1
  54. package/corpus/templates/clips/app/i18n/pt-BR.ts +1 -1
  55. package/corpus/templates/clips/app/i18n/zh-CN.ts +1 -1
  56. package/corpus/templates/clips/app/i18n/zh-TW.ts +1 -1
  57. package/corpus/templates/clips/app/routes/share.$shareId.tsx +100 -46
  58. package/corpus/templates/clips/changelog/2026-07-02-private-recordings-can-be-shared-with-agents-through-temporary-links-without-making-them-public.md +6 -0
  59. package/corpus/templates/clips/server/lib/public-agent-context.ts +26 -13
  60. package/corpus/templates/clips/server/routes/api/agent-context.json.get.ts +2 -1
  61. package/corpus/templates/clips/server/routes/api/agent-frame.jpg.get.ts +2 -1
  62. package/corpus/templates/clips/server/routes/api/agent-transcript.json.get.ts +2 -1
  63. package/corpus/templates/clips/server/routes/api/public-recording.get.ts +7 -2
  64. package/corpus/templates/clips/shared/agent-context.ts +5 -0
  65. package/dist/collab/awareness.d.ts +2 -2
  66. package/dist/collab/awareness.d.ts.map +1 -1
  67. package/dist/collab/routes.d.ts +1 -1
  68. package/dist/file-upload/actions/upload-image.d.ts +2 -2
  69. package/dist/notifications/routes.d.ts +3 -3
  70. package/dist/observability/routes.d.ts +2 -2
  71. package/dist/resources/handlers.d.ts +1 -1
  72. package/docs/content/locales/ar-SA/template-analytics.mdx +2 -0
  73. package/docs/content/locales/ar-SA/template-clips.mdx +2 -0
  74. package/docs/content/locales/de-DE/template-analytics.mdx +2 -0
  75. package/docs/content/locales/de-DE/template-clips.mdx +2 -0
  76. package/docs/content/locales/es-ES/template-analytics.mdx +2 -0
  77. package/docs/content/locales/es-ES/template-clips.mdx +2 -0
  78. package/docs/content/locales/fr-FR/template-analytics.mdx +2 -0
  79. package/docs/content/locales/fr-FR/template-clips.mdx +2 -0
  80. package/docs/content/locales/hi-IN/template-analytics.mdx +2 -0
  81. package/docs/content/locales/hi-IN/template-clips.mdx +2 -0
  82. package/docs/content/locales/ja-JP/template-analytics.mdx +2 -0
  83. package/docs/content/locales/ja-JP/template-clips.mdx +2 -0
  84. package/docs/content/locales/ko-KR/template-analytics.mdx +2 -0
  85. package/docs/content/locales/ko-KR/template-clips.mdx +2 -0
  86. package/docs/content/locales/pt-BR/template-analytics.mdx +2 -0
  87. package/docs/content/locales/pt-BR/template-clips.mdx +2 -0
  88. package/docs/content/locales/zh-CN/template-analytics.mdx +2 -0
  89. package/docs/content/locales/zh-CN/template-clips.mdx +2 -0
  90. package/docs/content/locales/zh-TW/template-analytics.mdx +2 -0
  91. package/docs/content/locales/zh-TW/template-clips.mdx +2 -0
  92. package/docs/content/template-analytics.mdx +2 -0
  93. package/docs/content/template-clips.mdx +22 -10
  94. package/docs/content/tracking.mdx +2 -0
  95. package/package.json +1 -1
@@ -131,6 +131,8 @@ API なので、テキストまたは静止画像のみを受け入れるモデ
131
131
  | `/api/agent-transcript.json?id=<recordingId>` | `startMs`、`endMs`、読み取り可能なタイムスタンプ、テキスト、およびオプションのソース ラベルを含むタイムスタンプ付きトランスクリプト セグメント |
132
132
  | `/api/agent-frame.jpg?id=<recordingId>&atMs=<ms>` | 元のビデオのタイムスタンプでビデオから抽出された JPEG フレーム |
133
133
 
134
+ Temporary private agent links are also supported: the Share dialog can mint a two-hour `agent_access` URL for any recording the viewer can access. Agents use that token with the share page and JSON APIs, and the clip does not become public.
135
+
134
136
  エンドポイントは、共有ページと同じパブリック/パスワード/有効期限ルールに従います。
135
137
  パスワードで保護されたクリップでは、パスワードが 1 回必要になります。成功した応答が返されます
136
138
  トークン化されたリンクは有効期間が短いため、ダウンストリーム エージェントはプレーンテキストを必要としません
@@ -147,6 +147,8 @@ CLI는 로컬 개발자 URL를 인쇄합니다. Google에 로그인한 다음 **
147
147
 
148
148
  **광범위한 커넥터 표면.** BigQuery, GA4, 제품 분석, CRM, 지원, 커뮤니티, GitHub/Jira, SEO 및 자사 `/track` 이벤트는 모두 에이전트가 호출할 수 있는 actions를 통해 제공됩니다.
149
149
 
150
+ **Session replay agent handoff.** Session recordings stay private, but the session detail page can mint a temporary **Copy for agent** link. The two-hour `agent_access` URL lets an external agent read replay summaries, timelines, and bounded event details without exposing blob/provider URLs or making the recording public.
151
+
150
152
  ### 에이전트와 협력하기
151
153
 
152
154
  에이전트는 항상 귀하가 무엇을 보고 있는지 알고 있습니다. 현재 화면 상태는 모든 메시지에 `<current-screen>` 블록으로 삽입됩니다. 여기에는 활성 보기, 열려 있는 대시보드 또는 분석, 선택한 필터가 포함됩니다.
@@ -131,6 +131,8 @@ API, 텍스트나 정지 이미지만 허용하는 모델도 여전히 무엇을
131
131
  | `/api/agent-transcript.json?id=<recordingId>` | `startMs`, `endMs`, 읽을 수 있는 타임스탬프, 텍스트 및 선택적 소스 라벨이 포함된 타임스탬프 기록 세그먼트 |
132
132
  | `/api/agent-frame.jpg?id=<recordingId>&atMs=<ms>` | 원본 비디오 타임스탬프의 비디오에서 추출된 JPEG 프레임 |
133
133
 
134
+ Temporary private agent links are also supported: the Share dialog can mint a two-hour `agent_access` URL for any recording the viewer can access. Agents use that token with the share page and JSON APIs, and the clip does not become public.
135
+
134
136
  엔드포인트는 공유 페이지와 동일한 공개/비밀번호/만료 규칙을 따릅니다.
135
137
  비밀번호로 보호된 클립에는 비밀번호가 한 번만 필요합니다. 성공적인 응답 반환
136
138
  다운스트림 에이전트에 일반 텍스트가 필요하지 않도록 단기 토큰화된 링크
@@ -147,6 +147,8 @@ O CLI imprime o dev local URL. Faça login com o Google e abra a página **Fonte
147
147
 
148
148
  **Superfície de conector ampla.** BigQuery, GA4, análise de produto, CRM, suporte, comunidade, GitHub/Jira, SEO e eventos `/track` primários, todos vêm por meio do actions que o agente pode ligar.
149
149
 
150
+ **Session replay agent handoff.** Session recordings stay private, but the session detail page can mint a temporary **Copy for agent** link. The two-hour `agent_access` URL lets an external agent read replay summaries, timelines, and bounded event details without exposing blob/provider URLs or making the recording public.
151
+
150
152
  ### Trabalhando com o agente
151
153
 
152
154
  O agente sempre sabe o que você está vendo. O estado atual da tela é injetado em cada mensagem como um bloco `<current-screen>` — ele contém a visualização ativa, o painel ou análise aberta e quaisquer filtros selecionados.
@@ -131,6 +131,8 @@ agente.
131
131
  | `/api/agent-transcript.json?id=<recordingId>` | Segmentos de transcrição com carimbo de data e hora com `startMs`, `endMs`, carimbos de data e hora legíveis, texto e rótulos de origem opcionais |
132
132
  | `/api/agent-frame.jpg?id=<recordingId>&atMs=<ms>` | Um quadro JPEG extraído do vídeo em um carimbo de data/hora do vídeo original |
133
133
 
134
+ Temporary private agent links are also supported: the Share dialog can mint a two-hour `agent_access` URL for any recording the viewer can access. Agents use that token with the share page and JSON APIs, and the clip does not become public.
135
+
134
136
  Os endpoints seguem as mesmas regras de público/senha/expiração da página de compartilhamento.
135
137
  Clipes protegidos por senha exigem a senha uma vez; retorno de respostas bem-sucedidas
136
138
  links tokenizados de curta duração para que os agentes downstream não precisem do texto simples
@@ -147,6 +147,8 @@ CLI 打印本地开发 URL。使用 Google 登录,然后打开 **数据源**
147
147
 
148
148
  **广泛的连接器表面。** BigQuery、GA4、产品分析、CRM、支持、社区、GitHub/Jira、SEO 和第一方 `/track` 事件均来自代理可以调用的 actions。
149
149
 
150
+ **Session replay agent handoff.** Session recordings stay private, but the session detail page can mint a temporary **Copy for agent** link. The two-hour `agent_access` URL lets an external agent read replay summaries, timelines, and bounded event details without exposing blob/provider URLs or making the recording public.
151
+
150
152
  ### 与代理合作
151
153
 
152
154
  代理始终知道您在看什么。当前屏幕状态作为 `<current-screen>` 块注入到每条消息中 - 它包含活动视图、打开的仪表板或分析以及任何选定的过滤器。
@@ -131,6 +131,8 @@ APIs,因此仅接受文本或静态图像的模型仍然可以理解内容
131
131
  | `/api/agent-transcript.json?id=<recordingId>` | 带有 `startMs`、`endMs`、可读时间戳、文本和可选源标签的时间戳转录片段 |
132
132
  | `/api/agent-frame.jpg?id=<recordingId>&atMs=<ms>` | 以原始视频时间戳从视频中提取的 JPEG 帧 |
133
133
 
134
+ Temporary private agent links are also supported: the Share dialog can mint a two-hour `agent_access` URL for any recording the viewer can access. Agents use that token with the share page and JSON APIs, and the clip does not become public.
135
+
134
136
  端点遵循与共享页面相同的公共/密码/过期规则。
135
137
  受密码保护的剪辑需要密码一次;成功响应返回
136
138
  短暂的标记化链接,因此下游代理不需要明文
@@ -147,6 +147,8 @@ CLI 列印本機開發 URL。使用 Google 登入,然後開啟 **資料來源*
147
147
 
148
148
  **廣泛的連線器表面。** BigQuery、GA4、產品分析、CRM、支援、社群、GitHub/Jira、SEO 和第一方 `/track` 事件均來自代理可以呼叫的 actions。
149
149
 
150
+ **Session replay agent handoff.** Session recordings stay private, but the session detail page can mint a temporary **Copy for agent** link. The two-hour `agent_access` URL lets an external agent read replay summaries, timelines, and bounded event details without exposing blob/provider URLs or making the recording public.
151
+
150
152
  ### 與代理合作
151
153
 
152
154
  代理始終知道您在看什麼。目前螢幕狀態作為 `<current-screen>` 塊注入到每條訊息中 - 它包含活動檢視、開啟的儀表板或分析以及任何選定的過濾器。
@@ -131,6 +131,8 @@ APIs,因此僅接受文字或靜態圖片的模型仍然可以理解內容
131
131
  | `/api/agent-transcript.json?id=<recordingId>` | 帶有 `startMs`、`endMs`、可讀時間戳、文字和可選來源標籤的時間戳轉錄片段 |
132
132
  | `/api/agent-frame.jpg?id=<recordingId>&atMs=<ms>` | 以原始影片時間戳從影片中擷取的 JPEG 幀 |
133
133
 
134
+ Temporary private agent links are also supported: the Share dialog can mint a two-hour `agent_access` URL for any recording the viewer can access. Agents use that token with the share page and JSON APIs, and the clip does not become public.
135
+
134
136
  端點遵循與共用頁面相同的公開/密碼/過期規則。
135
137
  受密碼保護的剪輯需要密碼一次;成功回應返回
136
138
  短暫的標記化連結,因此下游代理不需要明文
@@ -152,6 +152,8 @@ The CLI prints the local dev URL. Sign in with Google, then open the **Data Sour
152
152
 
153
153
  **Broad connector surface.** BigQuery, GA4, product analytics, CRM, support, community, GitHub/Jira, SEO, and first-party `/track` events all come through actions the agent can call.
154
154
 
155
+ **Session replay agent handoff.** Session recordings stay private, but the session detail page can mint a temporary **Copy for agent** link. The two-hour `agent_access` URL lets an external agent read replay summaries, timelines, and bounded event details without exposing blob/provider URLs or making the recording public.
156
+
155
157
  ### Working with the agent
156
158
 
157
159
  The agent always knows what you're looking at. The current screen state is injected into every message as a `<current-screen>` block — it contains the active view, the open dashboard or analysis, and any selected filters.
@@ -17,7 +17,7 @@ A capture-everything app: screen recordings, meeting notes from your calendar, a
17
17
  />
18
18
  </WireframeBlock>
19
19
 
20
- Think along the lines of Loom + Granola + Wispr Flow rolled into one app — but the agent is a first-class editor across every surface, and the recordings, meetings, and dictations are yours, not a SaaS vendor's. Clips also makes shared recordings agent-readable: paste a normal Clips share link into an agent and it can "hear" the transcript as text and "see" timestamped screen frames as images — no raw video needed. Frame-viewing works in any image-capable agent (ChatGPT, Claude Code, Cursor, Codex); text-only web chats still get the full transcript and can take a frame you upload.
20
+ Think along the lines of Loom + Granola + Wispr Flow rolled into one app — but the agent is a first-class editor across every surface, and the recordings, meetings, and dictations are yours, not a SaaS vendor's. Clips also makes shared recordings agent-readable: paste a public Clips share link or a temporary **Copy for agent** link into an agent and it can "hear" the transcript as text and "see" timestamped screen frames as images — no raw video needed. Frame-viewing works in any image-capable agent (ChatGPT, Claude Code, Cursor, Codex); text-only web chats still get the full transcript and can take a frame you upload.
21
21
 
22
22
  <Diagram id="doc-block-pqnd4p" title="Capture, transcribe, reuse" summary={"Three capture types land in one library; the agent transcribes, titles, and summarizes, then every transcript is searchable and shareable."}>
23
23
 
@@ -87,7 +87,7 @@ Think along the lines of Loom + Granola + Wispr Flow rolled into one app — but
87
87
  - **Capture browser logs with the Chrome extension.** Browser recordings can
88
88
  attach redacted console logs and fetch/XHR metadata, which is helpful for
89
89
  product bugs and browser-only repros.
90
- - **Paste Clips links into agents** so they can discover the agent-readable context: metadata, transcript segments, recommended frames, and timestamped frame images without receiving the raw video file.
90
+ - **Paste Clips links into agents** so they can discover the agent-readable context: metadata, transcript segments, recommended frames, and timestamped frame images without receiving the raw video file. Private clips use a temporary scoped link instead of changing visibility.
91
91
  - **Smart library views.** Group by project, filter by speaker, auto-tag based on content.
92
92
  - **Edit the transcript through chat.** "Fix the mis-transcribed word at 1:42." "Pull three quotes for a blog post." The agent edits the transcript and the UI updates live.
93
93
 
@@ -158,10 +158,14 @@ directly to anonymous users.
158
158
 
159
159
  ## Agent-readable clips
160
160
 
161
- Paste a normal public Clips share link into an agent. The share page advertises
162
- a compact agent context URL, and that context points to the transcript and frame
163
- APIs, so models that only accept text or still images can still understand what
164
- happened in the recording.
161
+ Paste a public Clips share link into an agent, or use **Share → Copy** in the
162
+ **Share with agents** row to mint a temporary private agent link. Private,
163
+ organization, and passworded clips do not need to become public: the copied URL
164
+ carries a recording-scoped `agent_access` token that expires after two hours.
165
+
166
+ The share page advertises a compact agent context URL, and that context points
167
+ to the transcript and frame APIs, so models that only accept text or still
168
+ images can still understand what happened in the recording.
165
169
 
166
170
  Any agent that can fetch an image URL into its vision — ChatGPT, Claude Code,
167
171
  Cursor, Codex, and MCP-connected agents — reads the transcript and sees the
@@ -175,7 +179,8 @@ agent.
175
179
  | `/api/agent-transcript.json?id=<recordingId>` | Timestamped transcript segments with `startMs`, `endMs`, readable timestamps, text, and optional source labels |
176
180
  | `/api/agent-frame.jpg?id=<recordingId>&atMs=<ms>` | A JPEG frame extracted from the video at an original-video timestamp |
177
181
 
178
- The endpoints follow the same public/password/expiry rules as the share page.
182
+ The endpoints follow the same public/password/expiry rules as the share page,
183
+ or accept the scoped `agent_access` token from a temporary agent link.
179
184
  Password-protected clips require the password once; successful responses return
180
185
  short-lived tokenized links so downstream agents do not need the plaintext
181
186
  password.
@@ -194,13 +199,20 @@ only returns a playable Slack `video` block for ready, public clips without a
194
199
  password, expiry hit, archive marker, or trash marker. Other clips still get the
195
200
  normal share-page title/thumbnail metadata and require opening Clips.
196
201
 
197
- <Endpoint id="doc-block-6q76u0" title="Agent context entry point" method="GET" path="/api/agent-context.json" summary="Compact, agent-readable description of a shared clip" auth="Same public / password / expiry rules as the share page" params={[
202
+ <Endpoint id="doc-block-6q76u0" title="Agent context entry point" method="GET" path="/api/agent-context.json" summary="Compact, agent-readable description of a shared clip" auth="Same public / password / expiry rules as the share page, or a scoped agent_access token" params={[
198
203
  {
199
204
  "name": "id",
200
205
  "in": "query",
201
206
  "type": "string",
202
207
  "required": true,
203
208
  "description": "Recording id"
209
+ },
210
+ {
211
+ "name": "agent_access",
212
+ "in": "query",
213
+ "type": "string",
214
+ "required": false,
215
+ "description": "Temporary token from Copy for agent links"
204
216
  }
205
217
  ]} responses={[
206
218
  {
@@ -209,7 +221,7 @@ normal share-page title/thumbnail metadata and require opening Clips.
209
221
  }
210
222
  ]}>
211
223
 
212
- Returns clip metadata, transcript status, chapters, CTAs, recommended frames, and links to the transcript and frame APIs. Advertised by the public share page so a text- or image-only agent can understand a recording without ingesting raw video.
224
+ Returns clip metadata, transcript status, chapters, CTAs, recommended frames, and links to the transcript and frame APIs. Advertised by public share pages and temporary private agent links so a text- or image-only agent can understand a recording without ingesting raw video.
213
225
 
214
226
  </Endpoint>
215
227
 
@@ -358,7 +370,7 @@ tray app at `http://localhost:8094`.
358
370
 
359
371
  **Non-destructive editing.** Trim, split, filler-word removal, silence removal, and stitching stay in `edits_json` so original media remains intact.
360
372
 
361
- **Agent-readable share links.** Public share links expose transcript and frame APIs so agents can understand recordings without ingesting raw video.
373
+ **Agent-readable share links.** Public share links and temporary private agent links expose transcript and frame APIs so agents can understand recordings without ingesting raw video.
362
374
 
363
375
  **Slack playable unfurls.** Public share links can render a Slack `video` block
364
376
  that points at the existing `/embed/:id` player. This is a workspace Slack app
@@ -237,6 +237,8 @@ Privacy defaults are intentionally conservative but still useful for playback:
237
237
 
238
238
  The Analytics template stores replay metadata in SQL (`session_recordings`) and stores chunks through private blob refs (`session_replay_chunks`). Browsers and agents never receive provider URLs. Playback goes through scoped server routes and the default agent tools return summaries or bounded replay events, not raw chunk table access.
239
239
 
240
+ When you need to hand a private recording to an external agent, use the session detail page's **Copy for agent** control. It mints a two-hour, recording-scoped `agent_access` link, SSRs a small discovery payload on `/sessions/:recordingId`, and exposes only the agent context/events JSON APIs. The recording's visibility does not change.
241
+
240
242
  For local development only, Analytics can fall back to capped SQL inline chunks when private blob storage is unavailable. Production deployments should configure private or encrypted blob storage rather than relying on Postgres for replay payloads.
241
243
 
242
244
  ## Advanced: custom providers & internals {#advanced}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.84.56",
3
+ "version": "0.84.57",
4
4
  "description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
5
5
  "homepage": "https://github.com/BuilderIO/agent-native#readme",
6
6
  "bugs": {