# atmos vendor config delete

Delete a raw value from `vendor.yaml` using an arbitrary dot-notation path, preserving
the rest of the file's comments, anchors, and formatting. There is no flat/component-name
alias for `delete` — use this command directly.

## Usage

```shell
atmos vendor config delete <path> [--file <manifest>]
```

The `del` and `unset` aliases are also accepted.

## Examples

```shell
atmos vendor config delete spec.sources[0].tags
```

## Arguments

- **`<path>` (required)**
  Dot-notation path into the vendor manifest to delete (e.g. 
  `spec.sources[0].tags`
  ).

## Flags

- **`--file` (string, default `./vendor.yaml`)**
  The vendor manifest file to edit.
