Agent Skills
› JuliusBrussee/caveman
› migration
migration
GitHub提供安全、可回滚的数据与系统迁移方案,涵盖架构、API及配置变更。强调兼容性保护、版本共存及幂等性验证,确保平滑过渡并保留回滚能力。
Trigger Scenarios
执行数据库或数据结构变更
升级 API 接口或协议
迁移第三方依赖或服务
更新系统配置文件
Install
npx skills add JuliusBrussee/caveman --skill migration -g -y
SKILL.md
Frontmatter
{
"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.
Version History
- 12aa8cc Current 2026-08-16 08:55


