Skip to main content

Side Execution Pseudo CLI

Generated from packages/codeboltjs/src/tools/pseudo-cli/commands.ts. Edit the registry or rerun node scripts/generate-pseudo-cli-docs.js instead of updating this file by hand.

The side-exec pseudo CLI module currently exposes 5 commands.

Related SDK docs: Side Execution

Commands At A Glance

ActionDescriptionRequired flags
start-blockStart side execution with action block--path
start-codeStart side execution with inline code--code
stopStop side execution--id
list-blocksList available action blocksNone
statusGet side execution status--id

start-block

Start side execution with action block

codebolt side-exec start-block --path <string> [--params <json>] [--timeout <number>]
NameFlagTypeRequiredDescription
path--pathstringYesFilesystem or workspace path used by the command.
params--paramsjsonNoStructured JSON payload passed through to the underlying SDK method.
timeout--timeoutnumberNoValue for the timeout parameter.

start-code

Start side execution with inline code

codebolt side-exec start-code --code <string> [--params <json>] [--timeout <number>]
NameFlagTypeRequiredDescription
code--codestringYesValue for the code parameter.
params--paramsjsonNoStructured JSON payload passed through to the underlying SDK method.
timeout--timeoutnumberNoValue for the timeout parameter.

stop

Stop side execution

codebolt side-exec stop --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

list-blocks

List available action blocks

codebolt side-exec list-blocks

This command takes no parameters.

status

Get side execution status

codebolt side-exec status --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.