Don't scroll to bottm when sending message on mobile
This commit is contained in:
parent
75ef93ed80
commit
9b51159e42
116 changed files with 6201 additions and 1 deletions
15
web/agent/skills/migration/SKILL.md
Normal file
15
web/agent/skills/migration/SKILL.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
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.
|
||||
4
web/agent/skills/migration/agents/openai.yaml
Normal file
4
web/agent/skills/migration/agents/openai.yaml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
interface:
|
||||
display_name: "Migration"
|
||||
short_description: "Plan reversible data-safe transitions"
|
||||
default_prompt: "Use $migration to implement this transition with compatibility and rollback proof."
|
||||
Loading…
Reference in a new issue