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
| Action | Description | Required flags |
|---|---|---|
send | Send a chat message | --message |
ask | Send message and wait for reply | --message |
confirm | Send confirmation request | --message |
notify | Send notification event | --message, --type |
history | Get chat history | --thread |
send
Send a chat message
codebolt chat send --message <string>
| Name | Flag | Type | Required | Description |
|---|---|---|---|---|
message | --message | string | Yes | Human-readable message text sent to the SDK method. |
ask
Send message and wait for reply
codebolt chat ask --message <string>
| Name | Flag | Type | Required | Description |
|---|---|---|---|---|
message | --message | string | Yes | Human-readable message text sent to the SDK method. |
confirm
Send confirmation request
codebolt chat confirm --message <string> [--buttons <json>]
| Name | Flag | Type | Required | Description |
|---|---|---|---|---|
message | --message | string | Yes | Human-readable message text sent to the SDK method. |
buttons | --buttons | json | No | JSON array describing confirmation button options. |
notify
Send notification event
codebolt chat notify --message <string> --type <string>
| Name | Flag | Type | Required | Description |
|---|---|---|---|---|
message | --message | string | Yes | Human-readable message text sent to the SDK method. |
type | --type | string | Yes | Type discriminator used by the underlying SDK method. |
history
Get chat history
codebolt chat history --thread <string>
| Name | Flag | Type | Required | Description |
|---|---|---|---|---|
thread | --thread | string | Yes | Thread identifier for chat history operations. |