adapt-architecture
Execute structural metamorphosis using strangler fig migration, chrysalis phases, and interface preservation. Covers transformation planning, parallel running, progressive cutover, rollback design, and post-metamorphosis stabilization for system architecture evolution. Use when assess-form has classified the system as READY for transformation, when migrating from monolith to microservices, when replacing a core subsystem while dependents continue operating, or when any architectural change must be gradual rather than big-bang.
Best use case
adapt-architecture is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Execute structural metamorphosis using strangler fig migration, chrysalis phases, and interface preservation. Covers transformation planning, parallel running, progressive cutover, rollback design, and post-metamorphosis stabilization for system architecture evolution. Use when assess-form has classified the system as READY for transformation, when migrating from monolith to microservices, when replacing a core subsystem while dependents continue operating, or when any architectural change must be gradual rather than big-bang.
Teams using adapt-architecture should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/adapt-architecture/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How adapt-architecture Compares
| Feature / Agent | adapt-architecture | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Execute structural metamorphosis using strangler fig migration, chrysalis phases, and interface preservation. Covers transformation planning, parallel running, progressive cutover, rollback design, and post-metamorphosis stabilization for system architecture evolution. Use when assess-form has classified the system as READY for transformation, when migrating from monolith to microservices, when replacing a core subsystem while dependents continue operating, or when any architectural change must be gradual rather than big-bang.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Adapt Architecture Execute structural metamorphosis — transforming a system's architecture from its current form to a target form while maintaining operational continuity. Uses strangler fig migration, chrysalis phases, and interface preservation to ensure the system never stops functioning during transformation. ## When to Use - Form assessment (see `assess-form`) classified the system as READY - A system must evolve its architecture to meet new requirements without downtime - Migrating from monolith to microservices (or the reverse) - Replacing a core subsystem while dependent systems continue operating - Evolving a data model while maintaining backward compatibility - Any architectural change that must be gradual rather than big-bang ## Inputs - **Required**: Current form assessment (from `assess-form` or equivalent analysis) - **Required**: Target architecture (what the system should become) - **Required**: Operational continuity requirements (what must not break during transformation) - **Optional**: Available transformation budget (time, people, compute) - **Optional**: Rollback requirements (how far back must we be able to retreat?) - **Optional**: Parallel running duration (how long to run old and new simultaneously) ## Procedure ### Step 1: Design the Transformation Blueprint Plan the metamorphosis path from current form to target form. 1. Map the transformation as a sequence of intermediate forms: - Current form → Intermediate form 1 → ... → Target form - Each intermediate form must be operationally viable (can serve traffic, pass tests) - No intermediate form should be harder to maintain than the current form 2. Identify the transformation seams: - Where can the current form be "cut" to insert the new architecture? - Natural seams: existing interfaces, module boundaries, data partitions - Artificial seams: interfaces created specifically to enable the cut (anti-corruption layers) 3. Choose the metamorphosis pattern: - **Strangler fig**: new system grows around the old, gradually replacing it - **Chrysalis**: old system is wrapped in a new shell; internals replaced while shell preserves external interface - **Budding**: new system grows alongside the old; traffic gradually shifts (see `scale-colony` for colony budding) - **Metamorphic migration**: phased replacement of components in dependency order (leaves first, roots last) 4. Design the interface preservation layer: - External consumers must not experience disruption - API versioning, backward-compatible contracts, adapter patterns - The preservation layer is temporary scaffolding — plan its removal ``` Metamorphosis Patterns: ┌───────────────┬───────────────────────────────────────────────────┐ │ Strangler Fig │ New code intercepts routes one by one; │ │ │ old code handles everything else until replaced │ │ │ ┌──────────┐ │ │ │ │ Old ████ │ → │ Old ██ New ██ │ → │ New ████ │ │ │ │ └──────────┘ │ ├───────────────┼───────────────────────────────────────────────────┤ │ Chrysalis │ Wrap old system in new interface; replace │ │ │ internals while external shell stays stable │ │ │ ┌──────────┐ ┌──[new]───┐ ┌──[new]───┐ │ │ │ │ old core │ → │ old core │ → │ new core │ │ │ │ └──────────┘ └──────────┘ └──────────┘ │ ├───────────────┼───────────────────────────────────────────────────┤ │ Budding │ New system runs in parallel; traffic shifts │ │ │ ┌──────┐ ┌──────┐ ┌──────┐ ┌──────┐ │ │ │ │ Old │ │ New │ → │ Old │ │ New │ │ │ │ │ 100% │ │ 0% │ │ 0% │ │ 100% │ │ │ │ └──────┘ └──────┘ └──────┘ └──────┘ │ └───────────────┴───────────────────────────────────────────────────┘ ``` **Got:** A transformation blueprint showing intermediate forms, seams, the chosen metamorphosis pattern, and the interface preservation strategy. Each step is concrete and testable. **If fail:** If no clean seam can be found, the system may need preliminary dissolution (see `dissolve-form`) to create seams before transformation. If the intermediate forms aren't operationally viable, the transformation steps are too large — decompose into smaller increments. ### Step 2: Build the Scaffolding Construct the temporary infrastructure that supports metamorphosis. 1. Create the anti-corruption layer: - A thin translation layer between the old and new systems - Routes requests to the appropriate system (old or new) based on migration state - Translates data formats between old and new representations - This layer is the "cocoon" that protects the transformation 2. Set up parallel running infrastructure: - Both old and new systems must be deployable simultaneously - Feature flags control which system handles which traffic - Comparison mechanisms validate that old and new produce equivalent results 3. Establish rollback checkpoints: - At each intermediate form, verify that rollback to the previous form is possible - Rollback must be faster than the forward transformation step - Data migration must be reversible (or data must be dual-written during transition) 4. Build the validation harness: - Automated tests that verify operational continuity at each intermediate form - Performance benchmarks that detect regression - Data integrity checks that catch migration errors **Got:** Scaffolding infrastructure (anti-corruption layer, parallel running, rollback, validation) is in place before any transformation begins. The scaffolding itself is tested and verified. **If fail:** If scaffolding is too expensive, simplify: the minimum viable scaffolding is a feature flag and a rollback procedure. Anti-corruption layers and parallel running add safety but are not always necessary for smaller transformations. ### Step 3: Execute Progressive Cutover Migrate functionality from old form to new form incrementally. 1. Order components for migration: - Start with the least-coupled, lowest-risk component (build confidence) - Progress toward more critical, more coupled components - Save the most coupled/critical component for last (by which point the team has experience) 2. For each component: a. Implement the new version behind the anti-corruption layer b. Run parallel: both old and new process the same inputs c. Compare outputs — they should be equivalent (or the differences should be expected and documented) d. When confident, switch traffic to the new version (feature flag flip) e. Monitor for anomalies (increase monitoring sensitivity post-cutover) f. After a stability period, decommission the old version of this component 3. Maintain continuous delivery throughout: - Each cutover step is a normal deployment, not a special event - The system is always in a known, tested, operational state - If a cutover causes issues, roll back to the previous state (which is still operational) **Got:** Functionality migrates component by component with validation at each step. The system is always operational. Each cutover builds confidence for the next. **If fail:** If parallel running reveals discrepancies, the new implementation has a bug — fix it before cutting over. If a cutover causes performance degradation, the new component may need optimization or the anti-corruption layer is adding too much overhead. If the team loses confidence mid-migration, pause and stabilize — a half-migrated system in a known state is far better than a rushed full migration. ### Step 4: Manage the Chrysalis Phase Navigate the most vulnerable period — when the system is between forms. 1. Acknowledge the chrysalis reality: - During migration, the system is partly old and partly new - This hybrid state is inherently more complex than either pure state - Complexity peaks at the midpoint of migration, then decreases 2. Chrysalis discipline: - No new features during the chrysalis phase (transformation only) - Minimal external changes (freeze non-essential deployments) - Increased monitoring and on-call coverage - Daily check-ins on migration progress and system health 3. Mid-chrysalis assessment: - At the halfway point, assess: is the target form still the right goal? - Has anything changed (market, requirements, team) that affects the target? - Should the transformation continue, pause, or redirect? 4. Protect the chrysalis: - Keep the rollback path clear at all times - Document the current hybrid state thoroughly (future debuggers will need it) - Resist the temptation to "clean up" temporary scaffolding before migration is complete **Got:** The chrysalis phase is managed as a deliberate, time-bounded period with increased discipline and monitoring. The team understands that temporary complexity is the cost of safe transformation. **If fail:** If the chrysalis phase drags on too long, the hybrid state becomes the new normal — which is worse than either old or new. Set a time limit. If the limit is reached, either accelerate the remaining migration or accept the hybrid state as the "new form" and stabilize it. ### Step 5: Complete Metamorphosis and Stabilize Finish the transformation and remove scaffolding. 1. Final cutover: - Migrate the last component(s) to the new form - Run full validation suite against the complete new system - Performance test under production-equivalent load 2. Remove scaffolding: - Decommission the anti-corruption layer (it's no longer needed) - Remove feature flags related to the migration - Clean up parallel running infrastructure - Archive (don't delete) the old system code for reference 3. Post-metamorphosis stabilization: - Run in the new form for 2-4 weeks with enhanced monitoring - Address any issues that emerge under real-world conditions - Update documentation to reflect the new architecture 4. Retrospective: - What went well in the transformation? - What was harder than expected? - What would we do differently next time? - Update the team's transformation playbook **Got:** The transformation is complete. The system operates in its new form. Scaffolding is removed. Documentation is updated. The team has captured learnings for future transformations. **If fail:** If the new form is unstable after cutover, maintain the rollback path and continue stabilization. If stabilization takes more than the planned period, there may be a design issue in the new architecture — consider whether targeted fixes or a partial rollback of the most problematic component is appropriate. ## Validation - [ ] Transformation blueprint shows viable intermediate forms - [ ] Scaffolding (anti-corruption layer, rollback, validation harness) is in place before migration starts - [ ] Components migrate in order from lowest to highest risk - [ ] Parallel running validates equivalence at each step - [ ] Chrysalis phase is time-bounded with feature freeze discipline - [ ] All scaffolding is removed after transformation completes - [ ] Post-metamorphosis stabilization period passes without critical issues - [ ] Retrospective captures learnings ## Pitfalls - **Big-bang migration**: Attempting to transform everything at once. This abandons the safety of incremental cutover and maximizes blast radius. Always migrate incrementally - **Permanent scaffolding**: Anti-corruption layers and feature flags that are never removed become technical debt. Plan scaffolding removal as part of the transformation, not as an afterthought - **Chrysalis denial**: Pretending the hybrid state is normal leads to feature development on unstable foundations. Acknowledge the chrysalis phase and enforce its discipline - **Target fixation**: Becoming so committed to the target architecture that signs of a better alternative are ignored. The mid-chrysalis assessment exists for this reason - **Transformation fatigue**: Long migrations exhaust teams. Keep each transformation step small enough to complete in days, not weeks. Celebrate milestones to maintain momentum ## Related Skills - `assess-form` — prerequisite assessment that determines if the system is ready for transformation - `dissolve-form` — for systems too rigid to transform directly; dissolution creates the seams needed here - `repair-damage` — recovery skill for when transformation introduces damage - `shift-camouflage` — surface adaptation that may suffice without deep architectural change - `coordinate-swarm` — swarm coordination informs the sequencing of transformation across distributed systems - `scale-colony` — growth pressure is a common trigger for architectural adaptation - `implement-gitops-workflow` — GitOps provides the deployment infrastructure for progressive cutover - `review-software-architecture` — complementary review skill for evaluating the target architecture
Related Skills
simulate-cpu-architecture
Design and simulate a minimal CPU from scratch: define an instruction set architecture (ISA), build the datapath (ALU, register file, program counter, memory interface), design the control unit (hardwired or microprogrammed), implement the fetch-decode-execute cycle, and verify by tracing a small program clock cycle by clock cycle. The capstone "computer inside a computer" exercise that composes combinational and sequential building blocks into a complete processor.
review-software-architecture
Review software architecture for coupling, cohesion, SOLID principles, API design, scalability, and technical debt. Covers system-level evaluation, architecture decision record review, and improvement recommendations. Use when evaluating a proposed architecture before implementation, assessing an existing system for scalability or security, reviewing ADRs, performing a technical debt assessment, or evaluating readiness for significant scale-up.
design-compliance-architecture
Design a compliance architecture that maps applicable regulations to computerized systems. Covers system inventory, criticality classification (GxP-critical, GxP-supporting, non-GxP), GAMP 5 category assignment, regulatory requirements traceability, and governance structure definition. Use when establishing a new regulated facility, formalising compliance across multiple systems, addressing a regulatory gap analysis, harmonising compliance after mergers or reorganisations, or preparing a site master file that references computerized systems.
adaptic
Master skill composing the 5-step synoptic cycle for panoramic synthesis across multiple domains. Orchestrates meditate, expand-awareness, observe, awareness, integrate-gestalt, and express-insight into a coherent process that produces unified understanding rather than sequential compromise. Use when a problem genuinely spans 3+ domains and the interactions between domains matter more than depth in any one, when sequential analysis feels like compromise rather than integration, or before major architectural decisions affecting multiple stakeholders.
skill-name-here
One to three sentences describing what this skill accomplishes, followed by key activation triggers. This field is the primary mechanism agents use to decide whether to activate the skill — it is read during discovery before the full body is loaded. Start with a verb. Include the most important "when to use" conditions inline. Max 1024 characters.
write-vignette
Create R package vignettes using R Markdown or Quarto. Covers vignette setup, YAML configuration, code chunk options, building and testing, and CRAN requirements for vignettes. Use when adding a Getting Started tutorial, documenting complex workflows spanning multiple functions, creating domain-specific guides, or when CRAN submission requires user-facing documentation beyond function help pages.
write-validation-documentation
Write IQ/OQ/PQ validation documentation for computerized systems in regulated environments. Covers protocols, reports, test scripts, deviation handling, and approval workflows. Use when validating R or other software for regulated use, preparing for a regulatory audit, documenting qualification of computing environments, or creating and updating validation protocols and reports for new or re-qualified systems.
write-testthat-tests
Write comprehensive testthat (edition 3) tests for R package functions. Covers test organization, expectations, fixtures, mocking, snapshot tests, parameterized tests, and achieving high coverage. Use when adding tests for new package functions, increasing test coverage for existing code, writing regression tests for bug fixes, or setting up test infrastructure for a package that lacks it.
write-standard-operating-procedure
Write a GxP-compliant Standard Operating Procedure (SOP). Covers regulatory SOP template structure (purpose, scope, definitions, responsibilities, procedure, references, revision history), approval workflow design, periodic review scheduling, and operational procedures for system use. Use when a new validated system requires operational procedures, when existing informal procedures need formalisation, when an audit finding cites missing procedures, when a change control triggers SOP updates, or when periodic review identifies outdated procedural content.
write-roxygen-docs
Write roxygen2 documentation for R package functions, datasets, and classes. Covers all standard tags, cross-references, examples, and generating NAMESPACE entries. Follows tidyverse documentation style. Use when adding documentation to new exported functions, documenting internal helpers or datasets, documenting S3/S4/R6 classes and methods, or fixing documentation-related R CMD check notes.
write-incident-runbook
Create structured incident runbooks with diagnostic steps, resolution procedures, escalation paths, and communication templates for effective incident response. Use when documenting response procedures for recurring alerts, standardizing incident response across an on-call rotation, reducing MTTR with clear diagnostic steps, creating training materials for new team members, or linking alert annotations directly to resolution procedures.
write-helm-chart
Create production-ready Helm charts for Kubernetes application deployment with templating, values management, chart dependencies, hooks, and testing. Covers chart structure, Go template syntax, values.yaml design, chart repositories, versioning, and best practices for maintainable and reusable charts. Use when packaging a Kubernetes application for repeatable deployments, parameterizing manifests for multiple environments, managing complex multi-component applications with dependencies, or standardizing deployment practices with versioned rollback capability across teams.