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 \ --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.
3. Open the local editor
Section titled “3. Open the local editor”eidos serve example.eidos --openThe 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.