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

# linear:credentials:create

> Save a Linear Personal API key under the user config.

Save a Linear Personal API key so commands that interact with Linear, such as [`issue:pull`](/cli/commands/issue-pull) and [`issue:push`](/cli/commands/issue-push), can authenticate. The key is written as block-style YAML to `~/.talos/credentials/linear.yml` under the `default` profile.

Create a Personal API key at [linear.app/settings/api](https://linear.app/settings/api).

## Usage

```bash theme={null}
talos linear:credentials:create [options]
```

## Examples

Run with no flags to be prompted for the key (input is hidden):

```bash theme={null}
talos linear:credentials:create
```

Provide the key non-interactively:

```bash theme={null}
talos linear:credentials:create --token=lin_api_xxxxxxxxxxxxxxxx
```

## Options

| Option     | Description                                                       | Default             |
| ---------- | ----------------------------------------------------------------- | ------------------- |
| `--token`  | Linear Personal API key to store.                                 | Prompted if omitted |
| `--silent` | Suppress the instructional message and the saved-to confirmation. | `false`             |
