BranchCommand class

The /branch command — creates a fork (branch) of the current conversation.

Copies all main-conversation messages from the current transcript into a new session file, updates session IDs, preserves content-replacement records, generates a unique fork name, and (when the resume callback is available) switches the user into the forked session.

Inheritance

Constructors

BranchCommand({required String getSessionId(), required String getCwd(), required String getTranscriptPath(), Future<void> onResume(String sessionId, String forkPath, String mode)?})

Properties

aliases → List<String>
Alternative names for the command.
no setterinherited
argumentHint → String?
Hint text for arguments.
no setteroverride
description → String
User-visible description.
no setteroverride
displayName → String
Human-facing display name.
no setterinherited
getCwd → String Function()
Callback to get the current working directory.
final
getSessionId → String Function()
Callback to get the current session ID.
final
getTranscriptPath → String Function()
Callback to get the current transcript path.
final
hashCode → int
The hash code for this object.
no setterinherited
immediate → bool
Whether to execute immediately without waiting for stop point.
no setterinherited
isEnabled → bool
Whether this command is enabled (feature flags, etc).
no setterinherited
isHidden → bool
Whether this command is hidden from help/typeahead.
no setterinherited
name → String
Command name (without the / prefix).
no setteroverride
onResume → Future<void> Function(String sessionId, String forkPath, String mode)?
Callback to resume into a different session. Signature: (sessionId, forkPath, mode) => Future<void>.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
source → CommandSource
Where this command was loaded from.
no setterinherited
supportsNonInteractive → bool
Whether this command can run in non-interactive mode.
no setteroverride
type → CommandType
Execution type.
no setterinherited
whenToUse → String?
When to use this command (for skills discovery).
no setterinherited

Methods

execute(String args, ToolUseContext context) → Future<CommandResult>
Execute the command.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited