On this page

The [Tigris agent plugins](https://github.com/tigrisdata/tigris-agents-plugins) give AI coding agents direct access to Tigris operations — managing buckets, objects, access keys, IAM policies, and migrations — without leaving your editor.

The `tigris-storage` plugin is available in the [Claude Community Plugins](https://github.com/anthropics/claude-plugins-community) marketplace.

## Available skills

The plugin provides five specialized skills:

- **tigris-authentication** — CLI installation, OAuth/credential login, configuration management
- **tigris-buckets** — bucket creation, configuration, deletion, CORS, migrations, TTL, snapshots, forks
- **tigris-objects** — upload, download, list, move, delete, and presign objects
- **tigris-access-keys** — create, list, assign roles, delete access keys
- **tigris-iam** — manage IAM policies, users, invitations, and permissions

## Install in Claude Code

Add the community plugins marketplace and install the Tigris Storage plugin:

```bash
claude plugin marketplace add anthropics/claude-plugins-community

claude plugin install tigris-storage@claude-community
```

Or install from the Tigris marketplace directly:

```bash
claude plugin marketplace add tigrisdata/tigris-agents-plugins

claude plugin install tigris-storage@tigris-agents-plugins
```

You can also install manually by cloning the repo and copying the skill folders to `~/.claude/skills/`:

```bash
git clone https://github.com/tigrisdata/tigris-agents-plugins.git

cp -r tigris-agents-plugins/skills/* ~/.claude/skills/
```

## Install in Cursor

Navigate to **Settings > Rules > Add Rule > Remote Rule (GitHub)** and enter:

```text
tigrisdata/tigris-agents-plugins
```

Or install manually by copying the skill folders to `~/.cursor/skills/`:

```bash
git clone https://github.com/tigrisdata/tigris-agents-plugins.git

cp -r tigris-agents-plugins/skills/* ~/.cursor/skills/
```

### Cursor rules

The plugin also includes two context-aware rules that enforce Tigris SDK best practices and security guardrails for TypeScript and JavaScript projects. These are installed automatically when you add the remote rule.

## Subagent

The plugins include a `tigris-storage-agent` subagent that handles multi-step workflows like:

- Setting up a new project with Tigris storage
- Migrating from AWS S3 or other providers
- Creating dev sandbox environments
- Running security audits on bucket configurations
- Configuring production deployments

## Prerequisites

The plugins use the [Tigris CLI](/content/docs/cli/index.html) under the hood. Make sure you have it installed and authenticated:

```bash
npm install -g @tigrisdata/cli

tigris login
```
