@yolk-sdk/agent 0.1.0-canary.31 → 0.1.0-canary.32

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
@@ -1,6 +1,6 @@
1
1
  # @yolk-sdk/agent
2
2
 
3
- Domain-free agent protocol, loop, runtime, client, compaction, tools, providers, OAuth, React, skillset, and voice primitives.
3
+ Domain-free agent protocol, loop, runtime, client, compaction, tools, React, providers, OAuth, skillset, and voice primitives.
4
4
 
5
5
  Root export is intentionally tiny. Import feature APIs from explicit subpaths.
6
6
 
@@ -331,7 +331,7 @@ aborts, and implementation bugs outside typed tool execution.
331
331
 
332
332
  ## Host responsibilities
333
333
 
334
- - Choose models/providers and map provider streams into protocol events.
334
+ - Choose models/providers and provide an LLM provider layer, using SDK provider subpaths or host adapters.
335
335
  - Persist sessions, transcripts, and append logs.
336
336
  - Persist/return one `ToolResultMessage` for every host tool call, including `isError` failures.
337
337
  - Persist terminal provider failures and clear active run ids where applicable.
@@ -16,8 +16,8 @@ type MergedSkillset = {
16
16
  declare const mergeSkillsets: (sources: ReadonlyArray<SkillsetSource>) => Effect.Effect<{
17
17
  skills: {
18
18
  readonly name: string;
19
- readonly description: string;
20
19
  readonly content: string;
20
+ readonly description: string;
21
21
  readonly location: string;
22
22
  readonly source?: string | undefined;
23
23
  }[];
@@ -25,8 +25,8 @@ declare const mergeSkillsets: (sources: ReadonlyArray<SkillsetSource>) => Effect
25
25
  readonly name: string;
26
26
  readonly hints: readonly string[];
27
27
  readonly template: string;
28
- readonly description?: string | undefined;
29
28
  readonly source?: string | undefined;
29
+ readonly description?: string | undefined;
30
30
  readonly arguments?: readonly {
31
31
  readonly required: boolean;
32
32
  readonly name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolk-sdk/agent",
3
- "version": "0.1.0-canary.31",
3
+ "version": "0.1.0-canary.32",
4
4
  "description": "Protocol, loop, runtime, client, compaction, tools, React, providers, OAuth, skillset, and voice primitives for building Yolk agents.",
5
5
  "license": "MIT",
6
6
  "type": "module",