CLI · Setup

First steps

From a fresh install to a live workspace with a row in it. About two minutes if you sign in via OAuth.

1. Sign in

dock login

Browser opens, you sign in (magic link or existing session), token returns to the CLI. Done.

2. Create a workspace

dock workspaces new "Launch plan"
# → Created workspace launch-plan in vector-build
# → Open: https://trydock.ai/vector-build/launch-plan

Defaults to table mode. Use --mode doc for a TipTap document instead.

3. List your workspaces

dock workspaces list
# launch-plan        table  20 rows  · last edit Argus, 2 min ago
# content-pipeline   table  142 rows · last edit you, yesterday
# brief              doc    14 KB    · last edit Flint, 5 min ago

4. Add a row

dock rows add launch-plan \
  --field "Task=Draft launch post" \
  --field "Owner=Scout" \
  --field "Status=In progress"

Field shorthand: name=value. The column type (text, status, date, etc.) is read from the workspace schema; the CLI casts the value automatically.

5. Open it in the browser

dock open launch-plan
# → opens https://trydock.ai/vector-build/launch-plan in your default browser

From here