Skip to content

CLI quickstart

The standalone eidos CLI works directly with .eidos files. It does not need Eidos Lite or a background service.

Terminal window
curl -fsSL https://download.eidos.space/cli/install.sh | sh

Restart the terminal if eidos is not immediately on PATH, then run eidos --help.

Terminal window
eidos create example.eidos \
--title "Example" \
--table Tasks \
--label-field Title \
--fields '[{"name":"Title","type":"text"},{"name":"Status","type":"select"}]'

The CLI makes this initial table the File default and creates its first Grid view. Fields allow empty values unless an advanced schema operation says otherwise.

Terminal window
eidos serve example.eidos --open

The server listens on 127.0.0.1, opens the shared Eidos File UI, and writes committed edits directly to example.eidos. Stop it with Ctrl +

C.

Continue with the CLI and automation guide.