@byok-sdk/client 0.4.2 → 0.6.0
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 +18 -0
- package/dist/bin/byok-agent.js +204 -11
- package/dist/bin/byok-agent.js.map +1 -1
- package/dist/bin/byok-approval-mcp.js.map +1 -1
- package/dist/bin/config.d.ts +3 -1
- package/dist/bin/format.d.ts +2 -1
- package/dist/bin/official-release.d.ts +1 -0
- package/dist/bin/version.d.ts +2 -0
- package/dist/daemon/connection-manager.d.ts +2 -0
- package/dist/daemon/control-protocol.d.ts +3 -0
- package/dist/daemon/create-daemon.d.ts +14 -2
- package/dist/daemon/presence-publisher.d.ts +7 -1
- package/dist/daemon/progress-batcher.d.ts +13 -0
- package/dist/daemon/task-runner.d.ts +22 -0
- package/dist/daemon/ws-transport.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +178 -11
- package/dist/index.js.map +1 -1
- package/dist/release-identity.d.ts +15 -0
- package/package.json +4 -4
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** Local Agent application-release identity. It is observability data, never a protocol or capability gate. */
|
|
2
|
+
export interface LocalAgentReleaseIdentity {
|
|
3
|
+
/** Canonical strict SemVer owned by the final Local Agent distribution. */
|
|
4
|
+
version: string;
|
|
5
|
+
/** Optional bounded build/content identity owned by the same distribution. */
|
|
6
|
+
buildId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const LOCAL_AGENT_RELEASE_VERSION_MAX_LENGTH = 128;
|
|
9
|
+
export declare const LOCAL_AGENT_RELEASE_BUILD_ID_MAX_LENGTH = 128;
|
|
10
|
+
/**
|
|
11
|
+
* Validates, copies, and freezes a release identity at a composition boundary.
|
|
12
|
+
* No normalization is performed: non-canonical input is rejected instead of
|
|
13
|
+
* being rewritten into another authority.
|
|
14
|
+
*/
|
|
15
|
+
export declare function resolveLocalAgentReleaseIdentity(input: LocalAgentReleaseIdentity | undefined): Readonly<LocalAgentReleaseIdentity>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byok-sdk/client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "BYOK SDK client daemon: runs on the end user's machine, pairs with a SaaS server, and drives a local coding-agent runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@earendil-works/pi-coding-agent": "0.84.1",
|
|
59
|
-
"@byok-sdk/core": "0.
|
|
60
|
-
"@byok-sdk/protocol": "0.
|
|
59
|
+
"@byok-sdk/core": "0.6.0",
|
|
60
|
+
"@byok-sdk/protocol": "0.6.0",
|
|
61
61
|
"ws": "^8.21.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/ws": "^8.18.1",
|
|
65
|
-
"@byok-sdk/server": "0.
|
|
65
|
+
"@byok-sdk/server": "0.6.0",
|
|
66
66
|
"@hono/node-server": "^2.0.10"
|
|
67
67
|
}
|
|
68
68
|
}
|