Claude-skill-registry ln-720-structure-migrator

Coordinates project structure migration to Clean Architecture

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/levn-ln-720-structure-migrator" ~/.claude/skills/majiayu000-claude-skill-registry-ln-720-structure-migrator && rm -rf "$T"
manifest: skills/data/levn-ln-720-structure-migrator/SKILL.md
source content

ln-720-structure-migrator

Type: L2 Domain Coordinator Category: 7XX Project Bootstrap Parent: ln-700-project-bootstrap

Coordinates project restructuring from prototype layout to Clean Architecture.


Purpose & Scope

AspectDescription
InputCurrent project structure, target architecture
OutputRestructured project with Clean Architecture
Workersln-721 (frontend), ln-722 (backend), ln-723 (mockdata), ln-724 (replit-cleaner)

Scope boundaries:

  • Analyzes current project structure
  • Generates migration plan
  • Delegates to specialized workers
  • Verifies final result

Workflow

PhaseNameActionsOutput
1AnalyzeScan current structure, detect framework, map filesFile inventory
2PlanCalculate moves, identify conflictsMigration plan
3ExecuteDelegate to workers (ln-724, ln-721, ln-722, ln-723)Restructured project
4VerifyRun builds, check imports, validate structureSuccess report

Target Structures

Frontend (React)

src/frontend/
├── public/
├── src/
│   ├── components/
│   │   ├── layout/      # AppLayout, Header, Sidebar
│   │   └── ui/          # Reusable UI components
│   ├── contexts/        # React contexts
│   ├── hooks/           # Custom hooks
│   ├── lib/             # Utilities, API clients
│   ├── pages/           # Page components
│   │   └── {Feature}/   # Feature-specific files
│   ├── App.tsx
│   ├── main.tsx
│   └── index.css
├── package.json
├── vite.config.ts
└── tsconfig.json

Backend (.NET Clean Architecture)

src/
├── {Project}.Api/
│   ├── Controllers/
│   ├── DTOs/
│   ├── Middleware/
│   ├── MockData/
│   ├── Extensions/
│   ├── Program.cs
│   └── appsettings.json
├── {Project}.Domain/
│   ├── Entities/
│   ├── Enums/
│   └── Common/
├── {Project}.Services/
│   └── Interfaces/
├── {Project}.Repositories/
│   └── Interfaces/
└── {Project}.Shared/

Delegation Protocol

To ln-724 (Replit Cleanup)

Context:
  projectPath: /project
  skipPreview: false  # Set true for automated pipelines
Options:
  cleanConfigFiles: true      # .replit, replit.nix
  cleanDirectories: true      # .local/, .cache/, .upm/
  cleanPackages: true         # @replit/* from package.json
  cleanViteConfig: true       # Replit imports/plugins
  cleanCodeComments: true     # // @replit annotations
  cleanGitignore: true        # .replit entry

To ln-721 (Frontend)

Context:
  sourcePath: /project/client
  targetPath: /project/src/frontend
  framework: react
  features:
    - ProductPlanning
    - Settings
    - Profile
Options:
  splitMonolithicFiles: true
  extractConstants: true
  extractTypes: true
  createComponentLibrary: true

To ln-722 (Backend)

Context:
  projectName: Kehai
  targetPath: /project/src
  targetFramework: net10.0
  features:
    - ProductPlanning
    - Users
Options:
  createMockData: true
  addSwagger: true
  addHealthChecks: true

To ln-723 (MockData)

Context:
  sourceORM: drizzle
  sourcePath: /project/shared/schema.ts
  targetPath: /project/src/Kehai.Api/MockData
  entities:
    - Epic
    - Story
    - Bet

Critical Rules

  • Orchestrator Pattern: Analyze and delegate, do not execute transformations directly
  • Sequential Workers: Execute workers in order (replit-cleanup → frontend → backend → mockdata)
  • Pre-flight Checks: Verify git status clean, target paths available
  • No Data Loss: Copy before delete, verify before removing source
  • Build Verification: Both
    npm run build
    and
    dotnet build
    must pass
  • Rollback Ready: Keep backup branch until verification complete

Definition of Done

  • Current structure analyzed and documented
  • Migration plan generated
  • ln-724 completed: Replit artifacts removed
  • ln-721 completed: Frontend restructured
  • ln-722 completed: Backend generated
  • ln-723 completed: MockData migrated
  • Frontend builds successfully (
    npm run build
    )
  • Backend builds successfully (
    dotnet build
    )
  • No orphan files in old locations
  • All imports resolve correctly
  • Migration report generated

Risk Mitigation

RiskDetectionMitigation
Uncommitted changes
git status
not clean
Require clean working directory
Build failure (frontend)
npm run build
fails
Rollback, delegate to ln-721 for fix
Build failure (backend)
dotnet build
fails
Rollback, delegate to ln-722 for fix
Lost filesFiles missing after migrationRestore from backup branch
Import errorsModule not foundRe-run import update phase
Partial migrationWorker fails mid-executionAtomic: complete all or rollback all

Reference Files

FilePurpose
references/clean_architecture_dotnet.md
.NET project structure template
references/frontend_structure.md
React project structure template

Version: 2.0.0 Last Updated: 2026-01-10