Skip to content

cu export tasks

cu export tasks

Export tasks to file

Synopsis

Export tasks to CSV, JSON, or Markdown format.

Examples: # Export all tasks from a list to CSV cu export tasks --list mylist --format csv --file tasks.csv

# Export tasks with specific status to JSON cu export tasks --list mylist --status open --format json > open-tasks.json

# -o selects the format here, the same as everywhere else in cu cu export tasks --list mylist -o json

# Generate a Markdown report of high priority tasks cu export tasks --priority high --format markdown --file report.md

cu export tasks [flags]

Options

      --assignee string   Filter by assignee
  -F, --file string       Write to a file instead of stdout
  -f, --format string     Export format (csv, json, markdown) (default "csv")
  -h, --help              help for tasks
  -l, --list string       List ID to export tasks from
      --priority string   Filter by priority
  -s, --space string      Space ID to export tasks from
      --status string     Filter by status

Options inherited from parent commands

      --config string   config file (default is $HOME/.config/cu/config.yaml)
      --debug           enable debug mode
  -o, --output string   output format (table|json|yaml|csv) (default "table")

SEE ALSO

Auto generated by spf13/cobra on 29-Aug-2026