@hydra-acp/cli 0.1.97 → 0.1.99
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.js +278 -278
- package/dist/index.d.ts +4 -0
- package/dist/index.js +69 -69
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2001,6 +2001,7 @@ type AmendPromptResult = z.infer<typeof AmendPromptResult>;
|
|
|
2001
2001
|
interface SessionCapabilities {
|
|
2002
2002
|
attach?: Record<string, never>;
|
|
2003
2003
|
list?: Record<string, never>;
|
|
2004
|
+
resume?: Record<string, never>;
|
|
2004
2005
|
}
|
|
2005
2006
|
interface PromptCapabilities {
|
|
2006
2007
|
image?: boolean;
|
|
@@ -3176,6 +3177,8 @@ declare class Session {
|
|
|
3176
3177
|
private mergeAgentOptionIntoEnvelope;
|
|
3177
3178
|
onUsageChange(handler: (usage: UsageSnapshot) => void): void;
|
|
3178
3179
|
mergedAvailableCommands(): AdvertisedCommand[];
|
|
3180
|
+
private daemonTopLevelCommands;
|
|
3181
|
+
private aliasableBareVerbs;
|
|
3179
3182
|
agentOnlyAdvertisedCommands(): AdvertisedCommand[];
|
|
3180
3183
|
availableModes(): AdvertisedMode[];
|
|
3181
3184
|
availableModels(): AdvertisedModel[];
|
|
@@ -3860,6 +3863,7 @@ declare class SessionManager {
|
|
|
3860
3863
|
agentId?: string;
|
|
3861
3864
|
title?: string;
|
|
3862
3865
|
mode?: "verbatim" | "synthesis";
|
|
3866
|
+
model?: string;
|
|
3863
3867
|
}): Promise<{
|
|
3864
3868
|
sessionId: string;
|
|
3865
3869
|
forkedFromSessionId: string;
|