Skip to main content

Task 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 task pseudo CLI module currently exposes 7 commands.

Related SDK docs: Task

Commands At A Glance

ActionDescriptionRequired flags
createCreate a task--title
updateUpdate a task--id, --data
deleteDelete a task--id
listList tasksNone
getGet task details--id
assignAssign agent to task--id, --agent
executeExecute task with agent--id, --agent

create

Create a task

codebolt task create --title <string> [--description <string>]
NameFlagTypeRequiredDescription
title--titlestringYesTitle of the resource being created or updated.
description--descriptionstringNoLonger description text for the resource.

update

Update a task

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

delete

Delete a task

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

list

List tasks

codebolt task list

This command takes no parameters.

get

Get task details

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

assign

Assign agent to task

codebolt task assign --id <string> --agent <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
agent--agentstringYesAgent identifier used by the command.

execute

Execute task with agent

codebolt task execute --id <string> --agent <string>
NameFlagTypeRequiredDescription
id--idstringYesIdentifier of the target resource.
agent--agentstringYesAgent identifier used by the command.