@uxnan/shared 0.0.6-alpha.20260716 → 0.0.7-alpha.20260719
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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|

|
|
4
4
|

|
|
5
5
|

|
|
6
|
-

|
|
7
7
|
|
|
8
8
|
Shared JSON-RPC and E2EE contracts for the [Uxnan](../README.md) ecosystem — the
|
|
9
9
|
single source of truth every component agrees on. Consumed as a local workspace
|
|
@@ -90,8 +90,9 @@ and [`src/jsonrpc/notifications.ts`](src/jsonrpc/notifications.ts)
|
|
|
90
90
|
§1.2 / §1.4. Per `AGENTS.md` → *Spec drift control*, any change here MUST be
|
|
91
91
|
reflected in the spec in the same change set.
|
|
92
92
|
|
|
93
|
-
##
|
|
93
|
+
## Published
|
|
94
94
|
|
|
95
|
-
`@uxnan/shared` is published to npm
|
|
96
|
-
then pin `"@uxnan/shared": "^0.x"`
|
|
97
|
-
|
|
95
|
+
`@uxnan/shared` is published to npm; `uxnan-bridge` and `uxnan-relay`
|
|
96
|
+
then pin `"@uxnan/shared": "^0.x"` — the release workflow replaces the
|
|
97
|
+
`"*"` workspace spec with the exact published version at build time.
|
|
98
|
+
See `bridge/FOR-DEV.md` → *Packaging*.
|
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Source: architecture/02a-system-architecture.md §5.8.2 (adapters).
|
|
5
5
|
*/
|
|
6
|
-
export type AgentId = 'codex' | 'opencode' | 'claude-code' | 'gemini-cli'
|
|
6
|
+
export type AgentId = 'codex' | 'opencode' | 'claude-code' | 'gemini-cli'
|
|
7
|
+
/** Antigravity — Google's `agy` CLI, the successor to the deprecated Gemini CLI. */
|
|
8
|
+
| 'antigravity-cli' | 'pi-agent'
|
|
7
9
|
/** Zero — open-source Go coding agent, driven over the Agent Client Protocol. */
|
|
8
10
|
| 'zero'
|
|
9
11
|
/** Grok — xAI's coding CLI, driven over the Agent Client Protocol (`grok agent stdio`). */
|
|
@@ -45,6 +45,18 @@ export interface ContentBlockParams {
|
|
|
45
45
|
turnId: string;
|
|
46
46
|
messageId: string;
|
|
47
47
|
content: unknown;
|
|
48
|
+
/**
|
|
49
|
+
* `true` when the block arrived from a **parallel/background** activity (e.g.
|
|
50
|
+
* a Claude Code subagent's tool run) while the assistant's main text was
|
|
51
|
+
* still streaming. The client must then insert the block BEFORE the
|
|
52
|
+
* currently-open text run instead of appending it after — appending would
|
|
53
|
+
* sever the run and render the sentence split mid-word by an activity card.
|
|
54
|
+
* Absent/false for the sequential case (the block lands at a real text-run
|
|
55
|
+
* boundary and is appended in arrival order). Mirrors how the bridge itself
|
|
56
|
+
* orders the block inside the persisted `Message.segments`, so the live view
|
|
57
|
+
* and a later `turn/list` re-sync render the identical interleave.
|
|
58
|
+
*/
|
|
59
|
+
beforeText?: boolean;
|
|
48
60
|
}
|
|
49
61
|
/**
|
|
50
62
|
* Token usage for a completed turn, as reported by the agent's CLI.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uxnan/shared",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7-alpha.20260719",
|
|
4
4
|
"description": "Shared JSON-RPC and E2EE contracts for the Uxnan ecosystem (bridge, relay, mobile).",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"author": "Luis Donaldo Gamas Vazquez",
|