Retour aux skills
juliusbrussee/cavemanContrôle réussi

SKILL DETAIL

migration

juliusbrussee/caveman/migration

This skill guides the implementation of reversible and compatibility-safe migrations. It emphasizes mapping current readers, writers, data shape, compatibility window, and ownership before editing, and defining both forward and rollback paths. It requires preserving existing data, making destructive steps explicit and separately authorized, ensuring safe mixed-version operation during rollout, and sequencing expand, migrate, verify, then contract when applicable. Retries must be idempotent, partial failures observable, and both old and new paths verified at required transition stages. The skill also stresses stopping after the requested stage passes and not implicitly performing later destructive contraction.

Installations · 964Voir la source

Installation

npx skills add https://github.com/juliusbrussee/caveman --skill migration

Fichiers du skill

SKILL.md

Dernière synchronisation · 29 août 2026

agents/openai.yaml
interface:
  display_name: "Migration"
  short_description: "Plan reversible data-safe transitions"
  default_prompt: "Use $migration to implement this transition with compatibility and rollback proof."
SKILL.md
---
name: migration
description: Implement reversible compatibility-safe transitions. Use for schema, data, API, protocol, configuration, or dependency migrations requiring rollback and preservation proof.
---

# Migration

Map current readers, writers, data shape, compatibility window, and ownership before editing.

- Define forward path and rollback path.
- Preserve existing data; make destructive steps explicit and separately authorized.
- Keep mixed-version operation safe where rollout can overlap.
- Sequence expand, migrate, verify, then contract when applicable.
- Make retries idempotent and partial failure observable.
- Verify old and new paths at required transition stages.

Stop after requested stage passes; do not perform later destructive contraction implicitly.
migration · Agent Skills en tendance | Mengbi