Create, update, list, and manage tasks. Tasks represent units of work with a title,
description, status, priority, tags, metadata, and relationship links.
Usage
gest task <COMMAND> [OPTIONS]
Subcommands
| Command | Description |
|---|
create | Create a new task |
list | List tasks with optional filters |
show | Display a task's full details |
update | Update a task's fields |
tag | Add tags to a task |
untag | Remove tags from a task |
link | Create a relationship between entities |
meta | Read or write metadata fields |
note | Manage notes on a task |
task create
Create a new task with optional metadata, tags, and status.
gest task create [OPTIONS] <TITLE>
Arguments
| Argument | Description |
|---|
<TITLE> | Task title |
Options
| Flag | Description |
|---|
--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
gest task create "Implement login page"
gest task create "Fix memory leak" -d "OOM after 24h uptime" --tags "bug,critical"
gest task create "Write migration" -p 0 --assigned-to agent --phase 1
task list
List tasks, optionally filtered by status or tag.
Options
| Flag | Description |
|---|
-a, --all | Include resolved (done/cancelled) tasks |
-j, --json | Output task list as JSON |
-s, --status <STATUS> | Filter by status: open, in-progress, done, or cancelled |
--tag <TAG> | Filter by tag |
Examples
gest task list
gest task list --all
gest task list -s in-progress
gest task list --json
task show
Display a task's full details, description, and links.
gest task show [OPTIONS] <ID>
Arguments
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
Options
| Flag | Description |
|---|
-j, --json | Output task details as JSON |
Examples
gest task show abc123
gest task show ab
gest task show abc123 --json
task update
Update a task's title, description, status, tags, or metadata.
gest task update [OPTIONS] <ID>
Arguments
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
Options
| Flag | Description |
|---|
--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
gest task update abc123 -s done
gest task update abc123 -t "New title" -d "Updated description"
gest task update abc123 -m estimate=3h -m complexity=high
task tag
Add tags to a task, deduplicating with any existing tags.
gest task tag <ID> [TAGS]...
Arguments
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
[TAGS]... | Tags to add (space-separated) |
Examples
gest task tag abc123 bug critical
task untag
Remove tags from a task.
gest task untag <ID> [TAGS]...
Arguments
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
[TAGS]... | Tags to remove (space-separated) |
Examples
gest task untag abc123 critical
task link
Create a relationship between a task and another task or artifact.
gest task link [OPTIONS] <ID> <REL> <TARGET_ID>
Arguments
| Argument | Description |
|---|
<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
| Flag | Description |
|---|
--artifact | Target is an artifact instead of a task (no reciprocal link is created) |
Examples
gest task link abc123 blocks def456
gest task link abc123 relates-to art789 --artifact
Read or write task metadata fields. Metadata uses dot-delimited key paths for nested values.
Retrieve a single metadata value.
gest task meta get <ID> <PATH>
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
<PATH> | Dot-delimited key path (e.g. outer.inner) |
Set a metadata value. Strings, numbers, and booleans are auto-detected.
gest task meta set <ID> <PATH> <VALUE>
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
<PATH> | Dot-delimited key path (e.g. outer.inner) |
<VALUE> | Value to set |
Examples
gest task meta set abc123 estimate "3 hours"
gest task meta get abc123 estimate
task note
Manage notes on a task. Notes are timestamped, attributed entries for recording decisions,
progress updates, and observations — analogous to comments on a GitHub issue.
note add
Add a note to a task. Author defaults to git config user.name / user.email.
gest task note add [OPTIONS] <ID>
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
| Flag | Description |
|---|
-b, --body <BODY> | Note body text (opens $EDITOR if omitted and stdin is a terminal) |
--agent <NAME> | Agent name for attribution (mutually exclusive with git-derived authorship) |
note list
List all notes on a task.
gest task note list [OPTIONS] <ID>
| Argument | Description |
|---|
<ID> | Task ID or unique prefix |
| Flag | Description |
|---|
--json | Output as JSON |
note show
Show a single note with full attribution and rendered markdown body.
gest task note show [OPTIONS] <TASK_ID> <NOTE_ID>
| Argument | Description |
|---|
<TASK_ID> | Task ID or unique prefix |
<NOTE_ID> | Note ID or unique prefix |
| Flag | Description |
|---|
--json | Output as JSON |
note update
Update a note's body.
gest task note update [OPTIONS] <TASK_ID> <NOTE_ID>
| Argument | Description |
|---|
<TASK_ID> | Task ID or unique prefix |
<NOTE_ID> | Note ID or unique prefix |
| Flag | Description |
|---|
-b, --body <BODY> | New body text (opens $EDITOR pre-filled if omitted and stdin is a terminal) |
note delete
Delete a note from a task.
gest task note delete <TASK_ID> <NOTE_ID>
| Argument | Description |
|---|
<TASK_ID> | Task ID or unique prefix |
<NOTE_ID> | Note ID or unique prefix |
Examples
gest task note add abc123 --body "Found the root cause in the parser"
gest task note add abc123 --agent claude --body "Completed code review, no issues found"
gest task note list abc123
gest task note show abc123 nfkbqmrx
gest task note update abc123 nfkbqmrx --body "Updated analysis"
gest task note delete abc123 nfkbqmrx