Skip to main content

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

Related SDK docs: Todo

Commands At A Glance

ActionDescriptionRequired flags
addAdd a todo item--title
updateUpdate a todo item--id
listList todo itemsNone
incompleteGet incomplete todosNone
exportExport todosNone
importImport todos--data

add

Add a todo item

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

update

Update a todo item

codebolt todo update --id <string> [--status <string>] [--title <string>]
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
status--statusstringNoStatus value to apply to the target resource.
title--titlestringNoTitle of the resource being created or updated.

list

List todo items

codebolt todo list

This command takes no parameters.

incomplete

Get incomplete todos

codebolt todo incomplete

This command takes no parameters.

export

Export todos

codebolt todo export [--format <string>]
NameFlagTypeRequiredDescription
format--formatstringNoSerialization or import/export format.

import

Import todos

codebolt todo import --data <string> [--format <string>]
NameFlagTypeRequiredDescription
data--datastringYesStructured JSON payload passed through to the underlying SDK method.
format--formatstringNoSerialization or import/export format.