Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions docs/reference/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,39 @@ Shows all available integrations, which one is currently installed, and whether
When multiple integrations are installed, the list marks the default integration separately from the other installed integrations.
The list also shows whether each built-in integration is declared multi-install safe.

## Search Available Integrations

```bash
specify integration search [query]
```

| Option | Description |
| ------------ | ------------------------------------ |
| `--tag` | Filter by tag |
| `--author` | Filter by author |

Searches all active catalogs for integrations matching the query. Without a query, lists all available integrations.

## Integration Info

```bash
specify integration info <integration_id>
```

Shows catalog information for an integration, including its description, author, repository, and tags.

## Scaffold a New Integration

```bash
specify integration scaffold [options] <integration_id>
```

| Option | Description |
| -------- | ----------------------------------------------------- |
| `--type` | The type of integration to scaffold (default: `markdown`) |

Creates a minimal integration stub for the given integration ID.

## Install an Integration

```bash
Expand Down