@yaklabs-ai/plugin-protocol 0.8.4 → 0.8.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
@@ -11,7 +11,7 @@ flow.
11
11
  ```json
12
12
  {
13
13
  "dependencies": {
14
- "@kay/plugin-protocol": "npm:@yaklabs-ai/plugin-protocol@^0.8.4"
14
+ "@kay/plugin-protocol": "npm:@yaklabs-ai/plugin-protocol@^0.8.5"
15
15
  }
16
16
  }
17
17
  ```
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "package": "@yaklabs-ai/plugin-protocol",
4
- "version": "0.8.4",
4
+ "version": "0.8.5",
5
5
  "target": "npm",
6
6
  "firstPartyLicense": "MIT",
7
7
  "bundled": [],
package/dist/index.d.ts CHANGED
@@ -1923,8 +1923,16 @@ export declare const KAY_PLUGIN_PROTOCOL_VERSION: "kay.plugin.v1";
1923
1923
  * plugin that calls it, or declares `notificationRules`, declares `^0.8.4`: a
1924
1924
  * host still advertising 0.8.3 (signals only, landed separately) refuses it at
1925
1925
  * load instead of failing at the call.
1926
+ *
1927
+ * 0.8.5 republishes `@yaklabs-ai/plugin-sdk` to include the `./jev` and
1928
+ * `./signals` entrypoints: the workspace package has exported them since 0.8.1
1929
+ * (`jev`) and 0.8.3 (`signals`), but `scripts/build-publishable-packages.mjs`'s
1930
+ * hand-maintained `entrypoints` allowlist had omitted both. This packages
1931
+ * EXISTING apis; the type contract does not change. It still takes the patch
1932
+ * slot: nothing a `^0.8.1`/`^0.8.3` plugin already compiles against changes
1933
+ * shape, and the fix is which bytes reach npm, not what the contract promises.
1926
1934
  */
1927
- export declare const KAY_PLUGIN_SDK_VERSION: "0.8.4";
1935
+ export declare const KAY_PLUGIN_SDK_VERSION: "0.8.5";
1928
1936
 
1929
1937
  export declare const KAY_PLUGIN_TARGET_NAMES: readonly ["kay.agent", "kay.app", "kay.ui"];
1930
1938
 
package/dist/index.js CHANGED
@@ -115,7 +115,7 @@ import { z as z2 } from "zod";
115
115
  import { z } from "zod";
116
116
  var KAY_PLUGIN_PROTOCOL_VERSION = "kay.plugin.v1";
117
117
  var KAY_PLUGIN_PROTOCOL_PACKAGE_NAME = "@kay/plugin-protocol";
118
- var KAY_PLUGIN_SDK_VERSION = "0.8.4";
118
+ var KAY_PLUGIN_SDK_VERSION = "0.8.5";
119
119
  var KAY_PLUGIN_TARGET_NAMES = [
120
120
  "kay.agent",
121
121
  "kay.app",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yaklabs-ai/plugin-protocol",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "The Kay plugin manifest schema (`kay.plugin.v1`) — parse and validate a kay-plugin.json.",
5
5
  "author": "YakLabs",
6
6
  "type": "module",