Skip to main content
Looking to update an existing install? See Updating Omni agent skills.

Requirements

To use the Omni agent skills, you’ll need to first install the Omni CLI. See the CLI installation guide for more information.

Claude Code

Install the plugin

1

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:
Marketplace (recommended)
/plugin marketplace add exploreomni/omni-agent-skills
Git URL
/plugin marketplace add https://github.com/exploreomni/omni-agent-skills.git
2

Install the plugin

/plugin install omni-analytics@omni-analytics

Install integrations plugin

Optionally install the integrations plugin (Snowflake Semantic Views, etc.):
/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:
{
  "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

/add-plugin https://github.com/exploreomni/omni-agent-skills.git
This will also install Cursor rule files.

Install the integrations plugin

To also install the integrations plugin (Snowflake Semantic Views, etc.), use Cursor’s team marketplace import (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

mkdir -p .cortex/skills
cp -R skills/* .cortex/skills/

Install one skill

mkdir -p .cortex/skills
cp -R skills/omni-query .cortex/skills/

Install integrations skills

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, including OpenAI Codex, Gemini CLI, GitHub Copilot, and other compatible agent runtimes.

Preview available skills

npx skills add exploreomni/omni-agent-skills --list

Install all skills

npx skills add exploreomni/omni-agent-skills

Install one skill

npx skills add https://github.com/exploreomni/omni-agent-skills --skill omni-query

Install integrations skills

npx skills add https://github.com/exploreomni/omni-agent-skills --skill omni-integrations

Install globally

npx skills add exploreomni/omni-agent-skills --global

Check for updates

npx skills check

Update installed skills

npx skills update

Next steps

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.