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

# Installing Omni agent skills

> Install Omni agent skills in Claude Code, Cursor, Cortex Code, and skills.sh-compatible agents.

<Tip>
  Looking to update an existing install? See [Updating Omni agent skills](/developers/agent-skills/update).
</Tip>

## Requirements

To use the Omni agent skills, you'll need to first install the Omni CLI. See the [CLI installation guide](/developers/cli/install) for more information.

## Claude Code

### Install the plugin

<Steps>
  <Step title="Add the marketplace plugin">
    Agent skills for Claude Code can be installed through the Claude Marketplace (recommended) or through a Git URL.

    Run **one** of the following:

    ```bash Marketplace (recommended) theme={null}
    /plugin marketplace add exploreomni/omni-agent-skills
    ```

    ```bash Git URL theme={null}
    /plugin marketplace add https://github.com/exploreomni/omni-agent-skills.git
    ```
  </Step>

  <Step title="Install the plugin">
    ```bash theme={null}
    /plugin install omni-analytics@omni-analytics
    ```
  </Step>
</Steps>

### Install integrations plugin

Optionally install the integrations plugin (Snowflake Semantic Views, etc.):

```bash theme={null}
/plugin install omni-integrations@omni-analytics
```

### Team deployment

To make this plugin available to your entire team automatically, add it to your project's `.claude/settings.json`:

```json theme={null}
{
  "extraKnownMarketplaces": {
    "omni-analytics": {
      "source": {
        "source": "github",
        "repo": "exploreomni/omni-agent-skills"
      }
    }
  },
  "enabledPlugins": ["omni-analytics@omni-analytics", "omni-integrations@omni-analytics"]
}
```

When team members trust the repository folder, Claude Code automatically installs the marketplace and plugin.

## Cursor

### Install the plugin

```text theme={null}
/add-plugin https://github.com/exploreomni/omni-agent-skills.git
```

This will also install [Cursor rule files](/developers/agent-skills/skills#cursor-rules).

### Install the integrations plugin

To also install the integrations plugin (Snowflake Semantic Views, etc.), use [Cursor's team marketplace import](https://cursor.com/docs/plugins) (**Dashboard > Settings > Plugins > Import**) with the repo URL `https://github.com/exploreomni/omni-agent-skills`. Both `omni-analytics` and `omni-integrations` will appear as separate installable plugins.

## Cortex Code

Cortex Code can load Omni skills directly as custom skill folders. For the CLI, copy one or more folders from this repo's `skills/` directory into project-local `.cortex/skills/` or user-level `~/.snowflake/cortex/skills/`. In Snowsight workspaces, you can upload the same skill folders directly.

### Install all skills in current project

```bash theme={null}
mkdir -p .cortex/skills
cp -R skills/* .cortex/skills/
```

### Install one skill

```bash theme={null}
mkdir -p .cortex/skills
cp -R skills/omni-query .cortex/skills/
```

### Install integrations skills

```bash theme={null}
mkdir -p .cortex/skills
cp -R skills/omni-integrations .cortex/skills/
```

## skills.sh-compatible agents

Use this path for agents that load skills through [skills.sh](https://skills.sh), including [OpenAI Codex](https://openai.com/codex/), [Gemini CLI](https://github.com/google-gemini/gemini-cli), [GitHub Copilot](https://github.com/features/copilot), and other compatible agent runtimes.

### Preview available skills

```bash theme={null}
npx skills add exploreomni/omni-agent-skills --list
```

### Install all skills

```bash theme={null}
npx skills add exploreomni/omni-agent-skills
```

### Install one skill

```bash theme={null}
npx skills add https://github.com/exploreomni/omni-agent-skills --skill omni-query
```

### Install integrations skills

```bash theme={null}
npx skills add https://github.com/exploreomni/omni-agent-skills --skill omni-integrations
```

### Install globally

```bash theme={null}
npx skills add exploreomni/omni-agent-skills --global
```

### Check for updates

```bash theme={null}
npx skills check
```

### Update installed skills

```bash theme={null}
npx skills update
```

## Next steps

<Info>
  To ensure agent skills are up-to-date, enable automatic updates, update them manually from your IDE, or reinstall the skills. Refer to the documentation for your IDE for information about enabling automatic updates.
</Info>
