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

# anaconda repo system

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

## Usage

```bash theme={null}
anaconda repo system [OPTIONS]
```

<Warning>
  This command requires administrator privileges. Non-admin users will receive an error.
</Warning>

## Description

Performs system-level operations on the repository, such as blob cleanup and blob diagnostics. Requires the `admin` role.

## Options

<GTable cols="25% 25% 50%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Default</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`--cleanup-blobs [SHA1,...]`</GCell>

      <GCell />

      <GCell>Clean up blobs. Pass comma-separated SHA1 hashes to target specific blobs, or omit to clean up all.</GCell>
    </GRow>

    <GRow>
      <GCell>`--diagnose-blobs`</GCell>

      <GCell />

      <GCell>Run blob diagnostics (output saved to a file)</GCell>
    </GRow>

    <GRow>
      <GCell>`--channel-names <NAMES>`</GCell>

      <GCell />

      <GCell>Comma-separated list of channel names (required with `--diagnose-blobs`)</GCell>
    </GRow>

    <GRow>
      <GCell>`--file-name <FILE>`</GCell>

      <GCell />

      <GCell>Output file name for diagnostics</GCell>
    </GRow>

    <GRow>
      <GCell>`-h, --help`</GCell>

      <GCell />

      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

## Examples

**Run blob diagnostics**

```bash theme={null}
anaconda repo system --diagnose-blobs
```

**Clean up all blobs**

```bash theme={null}
anaconda repo system --cleanup-blobs
```
