Skip to main content

Chat 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 chat pseudo CLI module currently exposes 5 commands.

Related SDK docs: Chat

Commands At A Glance

ActionDescriptionRequired flags
sendSend a chat message--message
askSend message and wait for reply--message
confirmSend confirmation request--message
notifySend notification event--message, --type
historyGet chat history--thread

send

Send a chat message

codebolt chat send --message <string>
NameFlagTypeRequiredDescription
message--messagestringYesHuman-readable message text sent to the SDK method.

ask

Send message and wait for reply

codebolt chat ask --message <string>
NameFlagTypeRequiredDescription
message--messagestringYesHuman-readable message text sent to the SDK method.

confirm

Send confirmation request

codebolt chat confirm --message <string> [--buttons <json>]
NameFlagTypeRequiredDescription
message--messagestringYesHuman-readable message text sent to the SDK method.
buttons--buttonsjsonNoJSON array describing confirmation button options.

notify

Send notification event

codebolt chat notify --message <string> --type <string>
NameFlagTypeRequiredDescription
message--messagestringYesHuman-readable message text sent to the SDK method.
type--typestringYesType discriminator used by the underlying SDK method.

history

Get chat history

codebolt chat history --thread <string>
NameFlagTypeRequiredDescription
thread--threadstringYesThread identifier for chat history operations.