@hermespilot/link 0.8.1-beta.3 → 0.8.1

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/dist/cli/index.js CHANGED
@@ -55,7 +55,7 @@ import {
55
55
  stopDaemonProcess,
56
56
  summarizeUsageProbeEnsure,
57
57
  translate
58
- } from "../chunk-IJSMGOPK.js";
58
+ } from "../chunk-UI43QFRT.js";
59
59
 
60
60
  // src/cli/index.ts
61
61
  import { Command } from "commander";
@@ -175,12 +175,20 @@ interface LinkInputRequest {
175
175
  payload: unknown;
176
176
  };
177
177
  }
178
+ interface LinkMessagePresentation {
179
+ type: "message" | "lifecycle_marker";
180
+ kind?: "model_switch" | "personality_changed" | "personality_cleared";
181
+ model?: string;
182
+ provider?: string;
183
+ }
178
184
  interface LinkMessage {
179
185
  id: string;
180
186
  schema_version: 1;
181
187
  conversation_id: string;
182
188
  role: "user" | "assistant" | "tool" | "system";
183
189
  status: "queued" | "completed" | "streaming" | "failed" | "cancelled";
190
+ visibility?: "visible" | "internal";
191
+ presentation?: LinkMessagePresentation;
184
192
  run_id?: string;
185
193
  client_message_id?: string;
186
194
  created_at: string;
@@ -690,6 +698,8 @@ declare class ConversationService {
690
698
  scope: 'conversation';
691
699
  runtime: ConversationRuntimeMetadata;
692
700
  last_event_seq: number;
701
+ marker_message?: LinkMessage;
702
+ marker_event_seq?: number;
693
703
  }>;
694
704
  setConversationProfile(conversationId: string, profileName: string): Promise<{
695
705
  conversation_id: string;
package/dist/http/app.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createApp
3
- } from "../chunk-IJSMGOPK.js";
3
+ } from "../chunk-UI43QFRT.js";
4
4
  export {
5
5
  createApp
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hermespilot/link",
3
- "version": "0.8.1-beta.3",
3
+ "version": "0.8.1",
4
4
  "private": false,
5
5
  "description": "Hermes Link companion service and CLI for connecting hermes-agent through HermesPilot",
6
6
  "license": "MIT",