CLI Reference
list
List assets, collections, datasets, or episodes. All list commands are paginated (20 per page) with interactive [n]ext [p]rev [q]uit navigation.
List Assets
dreamlake list --episode space[@namespace][:episode] [--type <type>] [--prefix <prefix>]Note: Currently only supports video listing. Other asset types will be added.
| Flag | Type | Required | Description |
|---|---|---|---|
--episode | string | Yes | Target: space[@namespace][:episode] |
--type | string | No | Filter by type (currently: video) |
--prefix | string | No | Filter by path prefix (e.g. /camera/) |
dreamlake list --episode robotics@alice:run-042
dreamlake list --episode robotics@alice:run-042 --type videoList Collections
dreamlake list collection --project space[@namespace]| Flag | Type | Required | Description |
|---|---|---|---|
--project | string | Yes | Target: space[@namespace] |
Displays a table: Name, Files (member count), Tags, Description, Created.
dreamlake list collection --project robotics@aliceList Datasets
dreamlake list dataset --project space[@namespace]| Flag | Type | Required | Description |
|---|---|---|---|
--project | string | Yes | Target: space[@namespace] |
Displays a table: Name, Collections (count), Tags, Description, Created.
dreamlake list dataset --project robotics@aliceList Episodes
dreamlake list episode --project space[@namespace]| Flag | Type | Required | Description |
|---|---|---|---|
--project | string | Yes | Target: space[@namespace] |
Displays a table: Name, Path (node hierarchy path), Status, Tags, Description, Created.
dreamlake list episode --project robotics@alicePagination
All list commands display 20 items per page. When there are multiple pages, an interactive prompt appears:
Page 1/5 [n]ext [q]uit:n— next pagep— previous pageqor Enter — quit
Target Syntax
| Example | Space | Namespace |
|---|---|---|
robotics | robotics | (current user) |
robotics@alice | robotics | alice |
robotics@alice:run-042 | robotics | alice (episode: run-042) |