---
id: angular.architecture.micro-frontends-release-governance
name: Micro-frontends Release Governance
description: >
  Reviews release governance for Angular micro-frontends in Nx monorepos, focusing on ownership, versioning, deployment independence, compatibility checks, and coordinated rollout policy.
stack:
  - Angular
  - TypeScript
  - Nx
  - Module Federation
category: architecture
status: stable
version: 0.4.0
owner: NgAutoPilot
triggers:
  - micro frontends release governance
  - micro-frontends release governance
  - release governance
  - versioning policy
  - rollout policy
  - deployment independence
  - release train
  - compatibility checks
  - micro frontends release
compatibility:
  angular:
    min: "2"
    signalInputsFrom: "17"
    recommendedModern: "17+"
---

# Micro-frontends Release Governance

## Purpose

Use this skill to review or design release governance for Angular micro-frontends.

Micro-frontends only work sustainably when ownership, versioning, deployment policy, and compatibility checks are explicit. This skill focuses on the operational controls that keep independent delivery safe.

The core rule is simple:

```txt
Independent deployment requires explicit release governance.
```

## When to Use

Use this skill when:

- remotes are released independently
- teams need versioning and compatibility policy
- rollout and rollback need coordination
- shell and remote release timing differs
- CI/CD gates must protect runtime composition

## Do

Define the release contract:

```txt
Owner:
Remote:
Version:
Deployment target:
Compatibility range:
Rollback strategy:
Approval gate:
Smoke tests:
```

Coordinate shell and remote compatibility:

```txt
shell v1 + remote v1 -> supported
shell v1 + remote v2 -> supported
shell v1 + remote v3 -> blocked
```

Use release policy that matches the delivery model:

```txt
Shared release train -> simpler governance
Independent remotes -> stricter compatibility gates
```

## Do Not

Avoid shipping a remote without an owner.

Avoid version drift without compatibility checks.

Avoid independent deployment without rollback policy.

Avoid approving releases only on the basis of build success.

## Review Checklist

- [ ] Each remote has an owner.
- [ ] Version compatibility is documented.
- [ ] Rollback strategy exists.
- [ ] Smoke tests gate the release.
- [ ] Shell and remote compatibility is validated.
- [ ] The release policy matches the actual team topology.

## Expected Output

When this skill is used, the agent should:

1. Identify the release model.
2. Check ownership and version policy.
3. Flag compatibility risks.
4. Recommend rollout and rollback controls.
5. Define the smallest safe release governance model.
