Навыки migration
📦

migration

Ревизия содержимого r1 Безопасно

Plan Safe and Reversible Migrations

Complex migrations can lose data or break compatibility during staged rollouts. This skill structures transitions around preservation, verification, rollback, and mixed-version safety.

Поддерживает: Claude Codex Code(CC)
🥉 77 Бронза

Установить с помощью моего Агента

Скопируйте этот запрос в своего Агента. Он содержит каноническую страницу Skill и манифест.

Запрос агента
Review the Skillstore skill "migration" from https://skillstore.io/skills/juliusbrussee-migration.md and its manifest at https://skillstore.io/api/skills/juliusbrussee-migration/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.

Ваш Агент по-прежнему должен показать план и запросить все подтверждения, требуемые политикой безопасности.

Ресурсы для AI-агентов

Используйте эти ссылки, когда AI-агенту, crawler или script нужен чистый контекст вместо полной страницы.

Протестировать

Использование «migration». Migrate customer status from free text to a controlled value set.

Ожидаемый результат:

  • Expand: add the controlled status field while retaining the original field.
  • Migrate: backfill recognized values idempotently and quarantine unknown values.
  • Verify: compare counts, unknown values, and read behavior before switching.
  • Contract: remove the original field only after rollback is no longer required.

Использование «migration». Replace API field account_name with display_name during a rolling deployment.

Ожидаемый результат:

  • Writers temporarily populate both fields.
  • Readers accept display_name first and fall back to account_name.
  • Telemetry confirms old clients have left the compatibility window.
  • Removal requires separate approval after rollback criteria expire.

Использование «migration». Upgrade a shared authentication dependency across several services.

Ожидаемый результат:

  • Inventory consumers, supported versions, and authentication behavior before rollout.
  • Deploy to a small service cohort with error-rate and login-success checks.
  • Pause or roll back when predefined authentication thresholds fail.
  • Complete rollout only after every service passes compatibility verification.

Аудит безопасности

Безопасно

The skill contains prompt-only guidance for reversible migrations and no executable code. No static or semantic security findings were identified.

2
Просканировано файлов
23
Проанализировано строк
0
Пункты проверки
0
Ложные срабатывания проигнорированы
Последний завершенный статический и семантический аудит не обнаружил подтвержденных проблем безопасности. Это не доказывает отсутствие побочных эффектов у навыка.
Аудитор:: codex
Поделиться и цитировать этот отчет

Делитесь версионным отчетом об оценке, нейтральным значком, встраиваемой карточкой и цитатами. Skillstore публикует доказательства, не решая, безопасен ли этот Skill.

Открыть версионный отчет
Оценка безопасности

Копировать ссылку на отчёт

https://skillstore.io/skills/juliusbrussee-migration/audits/1?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Значок Markdown

[![Skillstore security assessment](https://skillstore.io/badges/skills/juliusbrussee-migration/security.svg)](https://skillstore.io/skills/juliusbrussee-migration?utm_source=security_passport_badge)

Значок HTML

<a href="https://skillstore.io/skills/juliusbrussee-migration?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/juliusbrussee-migration/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Встраиваемая карточка

<iframe src="https://skillstore.io/embed/skills/juliusbrussee-migration.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Академические ссылки (APA · BibTeX · CFF)

Цитата APA

juliusbrussee. (2026). migration security audit report (audit version 1) [Author version unspecified]. Skillstore. https://skillstore.io/skills/juliusbrussee-migration/audits/1

Цитата BibTeX

@techreport{juliusbrussee-juliusbrussee-migration-2026, author = {juliusbrussee}, title = {migration security audit report (audit version 1)}, institution = {Skillstore}, year = {2026}, number = {1}, url = {https://skillstore.io/skills/juliusbrussee-migration/audits/1}, note = {Author version unspecified} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "migration security audit report (audit version 1)" version: "unspecified" type: report authors: - name: "juliusbrussee" date-released: "2026-08-12" url: "https://skillstore.io/skills/juliusbrussee-migration/audits/1" identifiers: - type: other value: "skillstore:juliusbrussee-migration:audit:1" description: "Skillstore immutable audit report identifier"

Оценка Skillstore

Почему такая оценка Достоверность доказательств: Средний
55
Архитектура
85
Сопровождаемость
87
Контент
65
Сообщество
83
Соответствие спецификации

Что вы можете построить

Evolve a Database Schema

Plan an expand-and-contract schema change that supports old and new application versions.

Transition an API Contract

Stage an API change while preserving existing clients and defining measurable retirement criteria.

Upgrade a Critical Dependency

Design a reversible dependency upgrade with compatibility checks, staged rollout, and rollback triggers.

Попробуйте эти промпты

Create a Basic Migration Plan
Plan this migration: [change]. Include prerequisites, forward steps, verification, and rollback.
Preserve Mixed-Version Compatibility
Plan [change] while versions [old] and [new] run together. Identify compatibility risks, mitigations, and exit criteria.
Design an Expand-and-Contract Transition
Design expand, migrate, verify, and contract stages for [change]. Define invariants, idempotent retries, observability, and rollback boundaries.
Produce Migration Preservation Proof
Analyze [architecture and change]. Map readers, writers, ownership, failure modes, tests, rollback triggers, and evidence required before each stage.

Лучшие практики

  • Document readers, writers, owners, invariants, and compatibility windows before changing production behavior.
  • Use idempotent steps with observable checkpoints and explicit rollback triggers.
  • Authorize destructive contraction separately after preservation and compatibility evidence passes.

Избегать

  • Do not combine expansion, migration, and destructive cleanup into one irreversible release.
  • Do not assume all services, clients, or workers update simultaneously.
  • Do not treat deployment success as proof of data preservation or behavioral compatibility.

Часто задаваемые вопросы

What migration types does this skill support?
It supports schema, data, API, protocol, configuration, and dependency transitions.
Does this skill run migration commands?
No. It provides planning and implementation guidance but does not execute commands.
How does it support rollback?
It defines rollback paths, triggers, boundaries, and required evidence before destructive stages.
Can it plan rolling deployments?
Yes. It considers mixed-version readers and writers throughout the compatibility window.
What information should I provide?
Provide the current architecture, data shape, readers, writers, constraints, rollout process, and desired end state.
When should contraction begin?
Begin only after verification passes, rollback needs expire, and destructive cleanup receives separate authorization.

Сведения для разработчиков

Автор

juliusbrussee

Лицензия

MIT

Ревизия Skillstore

r1

Примечание о версии

Автор не указал версию.

Ссылка

ad241fa81de50eaaf50f69dc3681d60cafdddb21

Актуальность поддержки

13.08.2026

Использование

0 загрузок · 0 просмотров

Структура файлов

📁 agents/

📄 openai.yaml

📄 SKILL.md