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

# EverOS SDK Migration Tool

> Automatically migrate your Python SDK from v0 (evermemos) to v1 (everos-cloud) with a single command.

<Info>
  **Released:** April 8, 2026 · **Status:** Live
</Info>

## Overview

The `everos-sdk-upgrade` plugin is an automated migration tool that handles the full upgrade path from **Python SDK v0 (`evermemos`)** to **v1 (`everos-cloud`)**. It covers 13 migration rules, including dependency updates, environment variables, imports, client initialization, API signature rewrites, type renames, and exception classes.

* **Plugin name:** `everos-sdk-upgrade`
* **Repository:** [https://github.com/EverMind-AI/everos-plugins](https://github.com/EverMind-AI/everos-plugins)
* **Migration scope:** Python SDK v0 (`evermemos`) → v1 (`everos-cloud`), fully automated
* **CI:** GitHub Actions automatically validates plugin structure to prevent misconfigured merges
* **Cross-platform:** Follows the [Agent Skills open standard](https://agentskills.io), compatible with 45+ AI tools

## Installation

<Tabs>
  <Tab title="Claude Code">
    Add the EverMind plugin marketplace and install the migration tool:

    ```bash theme={null}
    /plugin marketplace add EverMind-AI/everos-plugins
    /plugin install everos-sdk-upgrade@everos-plugins
    ```

    Then run the migration:

    ```bash theme={null}
    /everos-sdk-upgrade
    ```
  </Tab>

  <Tab title="Other AI Tools">
    Compatible with Cursor, GitHub Copilot, Codex, Gemini CLI, Cline, Amp, and 45+ other tools.

    Run a single command. It auto-detects your installed tools and configures itself accordingly:

    ```bash theme={null}
    npx skills add https://github.com/EverMind-AI/everos-plugins
    ```
  </Tab>
</Tabs>

## What Gets Migrated

The tool automatically handles 13 migration rules across these categories:

| Category              | What changes                        |
| --------------------- | ----------------------------------- |
| Package dependency    | `evermemos` → `everos-cloud`        |
| Environment variables | Updated key names                   |
| Imports               | All `evermemos` imports rewritten   |
| Client initialization | Updated constructor signatures      |
| API signatures        | Method names and parameters updated |
| Type renames          | Updated class and type names        |
| Exception classes     | Updated exception hierarchy         |

## Roadmap

When new SDK versions are released, updated migration rules will be published with a new version number. To get the latest rules, run:

```bash theme={null}
/plugin marketplace update
```
