CLI quickstart
The standalone eidos CLI works directly with .eidos files. It does not
need Eidos Lite or a background service.
1. Install
Section titled “1. Install”curl -fsSL https://download.eidos.space/cli/install.sh | shirm https://download.eidos.space/cli/install.ps1 | iexRestart the terminal if eidos is not immediately on PATH, then run
eidos --help.
2. Create a file with a table
Section titled “2. Create a file with a table”eidos create example.eidos \ --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.
3. Open the local editor
Section titled “3. Open the local editor”eidos serve example.eidos --openThe server listens on 127.0.0.1 by default, opens the shared Eidos File UI,
and writes committed edits directly to example.eidos. To use another device
on a trusted private network, run eidos serve example.eidos --lan and open
the paired URL printed in the terminal. Stop it with Ctrl +
C.
Continue with the CLI and automation guide. When you need a stable,
read-only hosted URL, follow the Eidos Publish preview guide.
For a live editor that stays connected to the file on your computer, use
eidos serve.