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

# repos.delete()

> Permanently delete a repository.

Delete a repository and its history. This operation is irreversible.

**Required scope: `write`**

```python theme={null}
result = await mesa.repos.delete(repo="app")
print(result.success)
```

## Options

<ParamField path="repo" type="str" required>
  Repository name to delete.
</ParamField>

<ParamField path="org" type="str | None">
  Organization override.
</ParamField>

## Response

<ResponseField name="success" type="bool">
  Whether the operation succeeded.
</ResponseField>
