Skip to main content

Memory 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 memory pseudo CLI module currently exposes 12 commands.

Related SDK docs: Memory

Commands At A Glance

ActionDescriptionRequired flags
json-saveSave JSON memory--data
json-updateUpdate JSON memory--id, --data
json-deleteDelete JSON memory--id
json-listList JSON memoriesNone
todo-saveSave todo memory--title
todo-updateUpdate todo memory--id, --data
todo-deleteDelete todo memory--id
todo-listList todo memoriesNone
md-saveSave markdown memory--content
md-updateUpdate markdown memory--id, --content
md-deleteDelete markdown memory--id
md-listList markdown memoriesNone

json-save

Save JSON memory

codebolt memory json-save --data <json>
NameFlagTypeRequiredDescription
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

json-update

Update JSON memory

codebolt memory json-update --id <string> --data <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

json-delete

Delete JSON memory

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

json-list

List JSON memories

codebolt memory json-list

This command takes no parameters.

todo-save

Save todo memory

codebolt memory todo-save --title <string> [--priority <string>]
NameFlagTypeRequiredDescription
title--titlestringYesTitle of the resource being created or updated.
priority--prioritystringNoPriority value for todo or task-related operations.

todo-update

Update todo memory

codebolt memory todo-update --id <string> --data <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
data--datajsonYesStructured JSON payload passed through to the underlying SDK method.

todo-delete

Delete todo memory

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

todo-list

List todo memories

codebolt memory todo-list

This command takes no parameters.

md-save

Save markdown memory

codebolt memory md-save --content <string>
NameFlagTypeRequiredDescription
content--contentstringYesRaw content string passed to the SDK method.

md-update

Update markdown memory

codebolt memory md-update --id <string> --content <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
content--contentstringYesRaw content string passed to the SDK method.

md-delete

Delete markdown memory

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

md-list

List markdown memories

codebolt memory md-list

This command takes no parameters.