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


