Skip to main content

Persistent 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 pmemory pseudo CLI module currently exposes 6 commands.

Related SDK docs: Persistent Memory

Commands At A Glance

ActionDescriptionRequired flags
createCreate persistent memory--params
getGet persistent memory--id
listList persistent memoriesNone
updateUpdate persistent memory--id, --params
deleteDelete persistent memory--id
retrieveExecute retrieval on persistent memory--id, --intent

create

Create persistent memory

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

get

Get persistent memory

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

list

List persistent memories

codebolt pmemory list

This command takes no parameters.

update

Update persistent memory

codebolt pmemory update --id <string> --params <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
params--paramsjsonYesStructured JSON payload passed through to the underlying SDK method.

delete

Delete persistent memory

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

retrieve

Execute retrieval on persistent memory

codebolt pmemory retrieve --id <string> --intent <json>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
intent--intentjsonYesStructured intent object for retrieval or planning operations.