plugins marketplace
← All plugins

framework-migration

v1.3.2

Framework updates, migration planning, and architectural transformation workflows

CodexClaude Code4 skills

by Seth HobsonMIT38.6kupdated 4 days ago

Source

git clone https://github.com/wshobson/agents

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/framework-migration/ inside the repository.

Layout

plugins/framework-migration/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/angular-migration/SKILL.md
├── skills/database-migration/SKILL.md
├── skills/dependency-upgrade/SKILL.md
└── skills/react-modernization/SKILL.md

Skills4

angular-migrationskills/angular-migration/SKILL.md

Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates. Use when upgrading AngularJS applications, planning framework migrations, or modernizing legacy Angular code.

database-migrationskills/database-migration/SKILL.md

Execute database migrations across ORMs and platforms with zero-downtime strategies, data transformation, and rollback procedures. Use when migrating databases, changing schemas, performing data transformations, or implementing zero-downtime deployment strategies.

dependency-upgradeskills/dependency-upgrade/SKILL.md

Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.

react-modernizationskills/react-modernization/SKILL.md

Upgrade React applications to latest versions, migrate from class components to hooks, and adopt concurrent features. Use when modernizing React codebases, migrating to React Hooks, or upgrading to latest React versions.

Manifests2

plugins/framework-migration/.codex-plugin/plugin.json
{
  "name": "framework-migration",
  "version": "1.3.2",
  "description": "Framework updates, migration planning, and architectural transformation workflows",
  "skills": "./skills/",
  "author": {
    "name": "Seth Hobson",
    "email": "seth@major7apps.com"
  },
  "license": "MIT",
  "interface": {
    "displayName": "Framework Migration",
    "shortDescription": "Framework updates, migration planning, and architectural transformation workflows",
    "category": "Coding"
  }
}
plugins/framework-migration/.claude-plugin/plugin.json
{
  "name": "framework-migration",
  "version": "1.3.2",
  "description": "Framework updates, migration planning, and architectural transformation workflows",
  "author": {
    "name": "Seth Hobson",
    "email": "seth@major7apps.com"
  },
  "license": "MIT"
}