Skip to main content

Memory Ingestion 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 ingestion pseudo CLI module currently exposes 11 commands.

Related SDK docs: Memory Ingestion

Commands At A Glance

ActionDescriptionRequired flags
createCreate ingestion pipeline--config
getGet ingestion pipeline--id
listList ingestion pipelinesNone
updateUpdate ingestion pipeline--id, --updates
deleteDelete ingestion pipeline--id
executeExecute ingestion pipeline--params
validateValidate ingestion pipeline--pipeline
processor-specsGet processor specificationsNone
activateActivate ingestion pipeline--id
disableDisable ingestion pipeline--id
duplicateDuplicate ingestion pipeline--id

create

Create ingestion pipeline

codebolt ingestion create --config <json>
NameFlagTypeRequiredDescription
config--configjsonYesStructured configuration object for the target operation.

get

Get ingestion pipeline

codebolt ingestion get --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

list

List ingestion pipelines

codebolt ingestion list [--filters <json>]
NameFlagTypeRequiredDescription
filters--filtersjsonNoValue for the filters parameter.

update

Update ingestion pipeline

codebolt ingestion update --id <string> --updates <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
updates--updatesjsonYesValue for the updates parameter.

delete

Delete ingestion pipeline

codebolt ingestion delete --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

execute

Execute ingestion pipeline

codebolt ingestion execute --params <json>
NameFlagTypeRequiredDescription
params--paramsjsonYesStructured JSON payload passed through to the underlying SDK method.

validate

Validate ingestion pipeline

codebolt ingestion validate --pipeline <json>
NameFlagTypeRequiredDescription
pipeline--pipelinejsonYesValue for the pipeline parameter.

processor-specs

Get processor specifications

codebolt ingestion processor-specs

This command takes no parameters.

activate

Activate ingestion pipeline

codebolt ingestion activate --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

disable

Disable ingestion pipeline

codebolt ingestion disable --id <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.

duplicate

Duplicate ingestion pipeline

codebolt ingestion duplicate --id <string> [--new-id <string>] [--new-label <string>]
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
new-id--new-idstringNoValue for the new-id parameter.
new-label--new-labelstringNoValue for the new-label parameter.