stitchkit 0.68.4 → 0.68.5

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
@@ -76,6 +76,7 @@ Browser code imports browser-safe entrypoints:
76
76
  import { defineContract, createClient, createHttpClient } from 'stitchkit'
77
77
  import { createSocketIOClient } from 'stitchkit'
78
78
  import { createCursorQuery, createCacheBridge } from 'stitchkit/react'
79
+ import { AgentRunSchema, AgentRuntimeEventSchema } from 'stitchkit/agent-runtime/browser'
79
80
  import { parseSSE } from 'stitchkit'
80
81
  ```
81
82
 
@@ -95,7 +96,9 @@ application, AI-SDK-backed agent-runtime and peer-free remote-proxy code live
95
96
  behind `stitchkit/server`, `stitchkit/tools`, `stitchkit/application`,
96
97
  `stitchkit/agent-runtime` and `stitchkit/remote` respectively. Optional provider
97
98
  adapters are isolated further; importing `stitchkit/application` never resolves
98
- grammY or OpenTelemetry.
99
+ grammY or OpenTelemetry. Browser code that shares agent records imports
100
+ `stitchkit/agent-runtime/browser`; it contains the canonical schemas and event
101
+ cursor but no execution, persistence or sink graph.
99
102
 
100
103
  ## Managed application kernel
101
104