Definition
Assembly: CloudNimble.ClaudeEssentials.dll Namespace: CloudNimble.ClaudeEssentials.Hooks.Tools.Inputs Inheritance: System.ObjectSyntax
Summary
Represents the input parameters for the Bash tool. The Bash tool executes shell commands in a persistent bash session.Remarks
This tool is for terminal operations like git, npm, docker, etc. If the output exceeds 30000 characters, it will be truncated.Constructors
.ctor
Syntax
.ctor Inherited
Inherited from
objectSyntax
Properties
Command
Gets or sets the command to execute.Syntax
Property Value
Type:string
DangerouslyDisableSandbox
Gets or sets whether to dangerously override sandbox mode and run commands without sandboxing.Syntax
Property Value
Type:System.Nullable<bool>
Description
Gets or sets a clear, concise description of what this command does in 5-10 words.Syntax
Property Value
Type:string?
Remarks
Should be in active voice. For example: “List files in current directory” or “Install package dependencies”.RunInBackground
Gets or sets whether to run this command in the background.Syntax
Property Value
Type:System.Nullable<bool>
Remarks
Whentrue, you can monitor the output using subsequent Bash tool calls.
You do not need to use ’&’ at the end of the command when using this parameter.
Timeout
Gets or sets the optional timeout in milliseconds.Syntax
Property Value
Type:System.Nullable<int>
Remarks
Maximum is 600000 (10 minutes). Default is 120000 (2 minutes).Methods
Equals Inherited Virtual
Inherited from
objectSyntax
Parameters
| Name | Type | Description |
|---|---|---|
obj | object? | - |
Returns
Type:bool
Equals Inherited
Inherited from
objectSyntax
Parameters
| Name | Type | Description |
|---|---|---|
objA | object? | - |
objB | object? | - |
Returns
Type:bool
GetHashCode Inherited Virtual
Inherited from
objectSyntax
Returns
Type:int
GetType Inherited
Inherited from
objectSyntax
Returns
Type:System.Type
MemberwiseClone Inherited
Inherited from
objectSyntax
Returns
Type:object
ReferenceEquals Inherited
Inherited from
objectSyntax
Parameters
| Name | Type | Description |
|---|---|---|
objA | object? | - |
objB | object? | - |
Returns
Type:bool
ToString Inherited Virtual
Inherited from
objectSyntax
Returns
Type:string?