fix(coding-agent): clarify session ID docs closes #3390
This commit is contained in:
@@ -225,8 +225,8 @@ ${chalk.bold("Options:")}
|
||||
--print, -p Non-interactive mode: process prompt and exit
|
||||
--continue, -c Continue previous session
|
||||
--resume, -r Select a session to resume
|
||||
--session <path> Use specific session file
|
||||
--fork <path> Fork specific session file or partial UUID into a new session
|
||||
--session <path|id> Use specific session file or partial UUID
|
||||
--fork <path|id> Fork specific session file or partial UUID into a new session
|
||||
--session-dir <dir> Directory for session storage and lookup
|
||||
--no-session Don't save session (ephemeral)
|
||||
--models <patterns> Comma-separated model patterns for Ctrl+P cycling
|
||||
|
||||
@@ -1879,6 +1879,9 @@ export class InteractiveMode {
|
||||
this.pendingWorkingMessage = message;
|
||||
}
|
||||
},
|
||||
setWorkingIndicator: () => {
|
||||
// Working indicator customization not implemented in interactive mode yet.
|
||||
},
|
||||
setHiddenThinkingLabel: (label) => this.setHiddenThinkingLabel(label),
|
||||
setWidget: (key, content, options) => this.setExtensionWidget(key, content, options),
|
||||
setFooter: (factory) => this.setExtensionFooter(factory),
|
||||
|
||||
@@ -172,6 +172,10 @@ export async function runRpcMode(runtimeHost: AgentSessionRuntime): Promise<neve
|
||||
// Working message not supported in RPC mode - requires TUI loader access
|
||||
},
|
||||
|
||||
setWorkingIndicator(): void {
|
||||
// Working indicator customization not supported in RPC mode - requires TUI loader access
|
||||
},
|
||||
|
||||
setHiddenThinkingLabel(_label?: string): void {
|
||||
// Hidden thinking label not supported in RPC mode - requires TUI message rendering access
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user