> ## 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.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/developers/agent-skills/update",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Updating Omni agent skills

> Update Omni agent skills and troubleshoot cached or stale plugin versions.

<Tip>
  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.
</Tip>

## Claude Code

Enable auto-updates:

1. Run `/plugin`
2. Go to **Marketplaces**
3. Select the marketplace → **Enable auto-update**

Or update manually from the `/plugin` menu.

## Cursor, Cortex Code, and skills.sh-Compatible agents

Re-run the installation command or re-copy the updated `skills/` folders to pull the latest version. See the [Installation guide](/developers/agent-skills/install) for the installation commands for each platform.

## Troubleshooting

If your skills appear outdated, or the install command reports the plugin is "already installed" while skills aren't loading, your IDE may be serving a cached version. This can happen when the uninstall process doesn't fully clean up all registry and cache entries.

To ensure you're running the latest version, manually clear the stale plugin data and reinstall.

### Claude Code

<Steps>
  <Step title="Remove registry entries">
    Edit the following files and remove any `omni-analytics` entries:

    * **`~/.claude/settings.json`** — Remove `"omni-analytics@omni-analytics"` from `enabledPlugins` and the `"omni-analytics"` block from `extraKnownMarketplaces`
    * **`~/.claude/plugins/installed_plugins.json`** — Remove the `omni-analytics` entry
    * **`~/.claude/plugins/known_marketplaces.json`** — Remove the `omni-analytics` entry
  </Step>

  <Step title="Delete cached files">
    ```bash theme={null}
    rm -rf ~/.claude/plugins/cache/omni-analytics/
    rm -rf ~/.claude/plugins/marketplaces/omni-analytics/
    ```
  </Step>

  <Step title="Reinstall the latest version">
    In a Claude session, run:

    ```text theme={null}
    /plugin marketplace add exploreomni/omni-agent-skills
    /plugin install omni-analytics@omni-analytics
    /reload-plugins
    ```
  </Step>
</Steps>

### Cursor

<Steps>
  <Step title="Remove the plugin">
    Unregister the plugin:

    ```text theme={null}
    /remove-plugin omni-analytics
    ```
  </Step>

  <Step title="Delete cached files">
    Cursor caches plugin repositories locally. Remove the cached clone:

    ```bash theme={null}
    rm -rf ~/.cursor/plugins/omni-analytics/
    ```
  </Step>

  <Step title="Reinstall the latest version">
    Run the following to reinstall the latest version of the Omni skills:

    ```
    /add-plugin https://github.com/exploreomni/omni-agent-skills.git
    ```

    Cursor will pull a fresh copy of the repository with the latest skills.
  </Step>
</Steps>
