Skip to content

gest task

Create, update, list, and manage tasks. Tasks represent units of work with a title, description, status, priority, tags, metadata, and relationship links.

Usage

text
gest task <COMMAND> [OPTIONS]

Subcommands

CommandDescription
createCreate a new task
listList tasks with optional filters
showDisplay a task's full details
updateUpdate a task's fields
tagAdd tags to a task
untagRemove tags from a task
linkCreate a relationship between entities
metaRead or write metadata fields

task create

Create a new task with optional metadata, tags, and status.

text
gest task create [OPTIONS] <TITLE>

Arguments

ArgumentDescription
<TITLE>Task title

Options

FlagDescription
--assigned-to <ASSIGNED_TO>Actor assigned to this task
-d, --description <DESCRIPTION>Description text (opens $EDITOR if omitted and stdin is a terminal)
-m, --metadata <METADATA>Key=value metadata pair (repeatable, e.g. -m key=value)
--phase <PHASE>Execution phase for parallel grouping
-p, --priority <PRIORITY>Priority level (0-4, where 0 is highest)
-s, --status <STATUS>Initial status: open, in-progress, done, or cancelled (default: open)
--tags <TAGS>Comma-separated list of tags

Examples

sh
# Create a simple task
gest task create "Implement login page"

# Create a task with description and tags
gest task create "Fix memory leak" -d "OOM after 24h uptime" --tags "bug,critical"

# Create a high-priority task assigned to an agent
gest task create "Write migration" -p 0 --assigned-to agent --phase 1

task list

List tasks, optionally filtered by status or tag.

text
gest task list [OPTIONS]

Options

FlagDescription
-a, --allInclude resolved (done/cancelled) tasks
-j, --jsonOutput task list as JSON
-s, --status <STATUS>Filter by status: open, in-progress, done, or cancelled
--tag <TAG>Filter by tag

Examples

sh
# List active tasks
gest task list

# List all tasks including resolved
gest task list --all

# Filter by status
gest task list -s in-progress

# JSON output for scripting
gest task list --json

task show

Display a task's full details, description, and links.

text
gest task show [OPTIONS] <ID>

Arguments

ArgumentDescription
<ID>Task ID or unique prefix

Options

FlagDescription
-j, --jsonOutput task details as JSON

Examples

sh
# Show task by full ID
gest task show abc123

# Show task by prefix
gest task show ab

# JSON output
gest task show abc123 --json

task update

Update a task's title, description, status, tags, or metadata.

text
gest task update [OPTIONS] <ID>

Arguments

ArgumentDescription
<ID>Task ID or unique prefix

Options

FlagDescription
--assigned-to <ASSIGNED_TO>Actor assigned to this task
-d, --description <DESCRIPTION>New description text
-m, --metadata <METADATA>Key=value metadata pair, merged with existing (repeatable)
--phase <PHASE>Execution phase for parallel grouping
-p, --priority <PRIORITY>Priority level (0-4, where 0 is highest)
-s, --status <STATUS>New status (done/cancelled auto-resolves; open/in-progress un-resolves)
--tags <TAGS>Replace all tags with this comma-separated list
-t, --title <TITLE>New title

Examples

sh
# Mark a task as done
gest task update abc123 -s done

# Update title and description
gest task update abc123 -t "New title" -d "Updated description"

# Add metadata
gest task update abc123 -m estimate=3h -m complexity=high

task tag

Add tags to a task, deduplicating with any existing tags.

text
gest task tag <ID> [TAGS]...

Arguments

ArgumentDescription
<ID>Task ID or unique prefix
[TAGS]...Tags to add (space-separated)

Examples

sh
gest task tag abc123 bug critical

task untag

Remove tags from a task.

text
gest task untag <ID> [TAGS]...

Arguments

ArgumentDescription
<ID>Task ID or unique prefix
[TAGS]...Tags to remove (space-separated)

Examples

sh
gest task untag abc123 critical

Create a relationship between a task and another task or artifact.

text
gest task link [OPTIONS] <ID> <REL> <TARGET_ID>

Arguments

ArgumentDescription
<ID>Source task ID or unique prefix
<REL>Relationship type: blocked-by, blocks, child-of, parent-of, relates-to
<TARGET_ID>Target task or artifact ID or unique prefix

Options

FlagDescription
--artifactTarget is an artifact instead of a task (no reciprocal link is created)

Examples

sh
# Task blocks another task
gest task link abc123 blocks def456

# Task relates to an artifact
gest task link abc123 relates-to art789 --artifact

task meta

Read or write task metadata fields. Metadata uses dot-delimited key paths for nested values.

text
gest task meta <COMMAND>

meta get

Retrieve a single metadata value.

text
gest task meta get <ID> <PATH>
ArgumentDescription
<ID>Task ID or unique prefix
<PATH>Dot-delimited key path (e.g. outer.inner)

meta set

Set a metadata value. Strings, numbers, and booleans are auto-detected.

text
gest task meta set <ID> <PATH> <VALUE>
ArgumentDescription
<ID>Task ID or unique prefix
<PATH>Dot-delimited key path (e.g. outer.inner)
<VALUE>Value to set

Examples

sh
# Set a metadata field
gest task meta set abc123 estimate "3 hours"

# Read it back
gest task meta get abc123 estimate

Released under the MIT License.