@hydra-acp/cli 0.1.96 → 0.1.98

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/index.d.ts CHANGED
@@ -3080,6 +3080,7 @@ declare class Session {
3080
3080
  artifact: SessionSynopsis;
3081
3081
  title?: string;
3082
3082
  tailK: number;
3083
+ tailFloor?: number;
3083
3084
  summarizedThroughEntry?: number;
3084
3085
  newAgentId?: string;
3085
3086
  }): Promise<void>;
@@ -3175,6 +3176,8 @@ declare class Session {
3175
3176
  private mergeAgentOptionIntoEnvelope;
3176
3177
  onUsageChange(handler: (usage: UsageSnapshot) => void): void;
3177
3178
  mergedAvailableCommands(): AdvertisedCommand[];
3179
+ private daemonTopLevelCommands;
3180
+ private aliasableBareVerbs;
3178
3181
  agentOnlyAdvertisedCommands(): AdvertisedCommand[];
3179
3182
  availableModes(): AdvertisedMode[];
3180
3183
  availableModels(): AdvertisedModel[];
@@ -3210,7 +3213,7 @@ declare class Session {
3210
3213
  private respawnAgent;
3211
3214
  private buildSwitchTranscript;
3212
3215
  seedFromImport(): Promise<void>;
3213
- seedFromFork(synopsis: SessionSynopsis): Promise<void>;
3216
+ seedFromFork(synopsis?: SessionSynopsis): Promise<void>;
3214
3217
  private broadcastAgentSwitch;
3215
3218
  broadcastPendingAgentSwap(targetAgentId: string | null): void;
3216
3219
  hasStreamBuffer(): boolean;
@@ -3859,6 +3862,7 @@ declare class SessionManager {
3859
3862
  agentId?: string;
3860
3863
  title?: string;
3861
3864
  mode?: "verbatim" | "synthesis";
3865
+ model?: string;
3862
3866
  }): Promise<{
3863
3867
  sessionId: string;
3864
3868
  forkedFromSessionId: string;