> ## Documentation Index
> Fetch the complete documentation index at: https://docs.standardcomputers.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Standard Files: Index, Move, and Manage Your Files

> Add, index, move, and remove files in the Standard System. Files are tracked in the files Standard and feed the on-board AI with background summaries.

From the outside, a Standard system works like a typical cloud drive or local file system: drag and drop or click to add files, and they are recorded in the `files` standard and saved to the selected location. When a file is added, changed, or deleted, the file standard updates and generates a background summary. These summaries feed the LLM, which performs a self-training process weekly on Sundays at 10 PM (configurable).

<Note>
  When files are added, changed, or deleted, the `files` Standard is updated automatically and a background summary is generated for the on-board AI.
</Note>

## CLI Commands

Use the following commands to manage files in your Standard System from the CLI.

Update the files standard to reflect the current state of your file system:

```bash theme={null}
files index
```

Create a new folder at the specified path:

```bash theme={null}
files folders "PATH"
```

Move a file or folder from one location to another:

```bash theme={null}
files move "SOURCE PATH" "DESTINATION PATH"
```

Replace a file at the destination with the file from the source path:

```bash theme={null}
files replace "SOURCE PATH" "DESTINATION PATH"
```

Retrieve a file at the specified path:

```bash theme={null}
files get "PATH"
```

Remove a file or folder at the specified path:

```bash theme={null}
files remove "PATH"
```
