Loading...
Loading...
Write concise package-release changesets for monorepo publishing — one action verb + one impact statement per bullet, imperative voice, user-impact only. Use when creating a `.changeset/*.md` for a published package.
npx skill4agent add arthrod/conejo-skills changeset.changeset/*.mddocs/components/changelog.mdxminorminor@platejs/slate@platejs/coreplatejspatchminor# Wrong
---
"@platejs/core": minor
---
# Correct
---
"@platejs/core": patch
---major# Wrong
---
'@platejs/core': patch
'@platejs/utils': patch
---
# Correct
.changeset/core-fix-types.md
.changeset/utils-add-helper.mdapps/www/src/registry/docs/components/changelog.mdxAdd support for XFix Y behaviorRemove deprecated ZAdded ...We fixed ...- Fix `asChild` TypeScript error
- Add `disabled` prop to Button// Before
editor.api.foo();
// After
editor.tf.foo();---
"@platejs/utils": patch
---
Fix `isEmpty` not handling void elements correctly---
"@platejs/core": patch
---
Rename `editor.api.foo` to `editor.tf.foo`
```tsx
// Before
editor.api.foo();
// After
editor.tf.foo();
```---
'@platejs/basic-nodes': major
---
Remove `SkipMarkPlugin`; functionality is built into core
**Migration:** Remove `SkipMarkPlugin` from your plugin list. Configure marks directly:
```tsx
MyMarkPlugin.configure({
rules: { selection: { affinity: 'outward' } },
});
```minor@platejs/slate@platejs/coreplatejspatchapps/www/src/registry### [Month Day] #[Version]
- **`component-name`**: Brief description
- Migration note if actually needed