一键导入
registry-changelog
Author and verify Plate registry changelog entries for user-visible registry UI, kit, example, and registry metadata changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Author and verify Plate registry changelog entries for user-visible registry UI, kit, example, and registry metadata changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Pre-commit/ship code review: Codex default; optional Claude, Pi, Droid, Copilot, Cursor, or OpenCode.
Create, verify, repair, and close durable Codex goals with measurable outcomes, evidence gates, plan templates, blocker handling, completion audits, and goal-backed workflow repair.
Resolve GitHub PR review feedback with source-backed triage, fixes, autogoal plan state, mandatory autoreview closeout, replies, and thread resolution.
Generate structured video transcripts from local files or video URLs using Gemini Files API. Use when a GitHub or Linear tracker item, comment, or attachment includes a screen recording, .mov, .mp4, or tracker-hosted video and you need a <video-transcripts> block instead of hand-written notes.
Create, verify, repair, and close durable Codex goals with measurable outcomes, evidence gates, plan templates, blocker handling, completion audits, and goal-backed workflow repair.
Pre-commit/ship code review: Codex default; optional Claude, Pi, Droid, Copilot, or OpenCode.
基于 SOC 职业分类
| description | Author and verify Plate registry changelog entries for user-visible registry UI, kit, example, and registry metadata changes. |
| name | registry-changelog |
| metadata | {"skiller":{"source":".agents/rules/registry-changelog.mdc"}} |
Use this when a task changes user-visible Plate registry output under
apps/www/src/registry/**: UI components, node renderers, kits, examples,
registry metadata, style dependencies, or install behavior.
This skill owns the registry changelog contract. plate-ui owns the trigger,
changeset owns package-vs-registry release-artifact classification,
docs-creator owns release-page topology, and task owns closeout. Do not
copy this schema into those skills.
Canonical source files live under:
apps/www/src/registry/changelog/entries/*.mdx
Generated public artifacts live under:
apps/www/src/registry/changelog/*.json
Never hand-edit generated changelog JSON. Edit the MDX entry source, then run the generator.
Add or update a registry changelog entry when a task changes user-visible registry behavior, copied-code install shape, kit composition, examples, style dependencies, or component rendering.
Mark it N/A only when the registry diff is not user-visible, such as tests,
internal task plans, mechanical rule changes, or pure generated output from an
existing changelog source.
Mixed package plus registry work may need both:
Registry-only work under apps/www/src/registry/** uses the registry changelog
instead of a package changeset.
Use one MDX file per changelog event.
---
id: 2026-06-15-fix-editor-wrapping
date: 2026-06-15
status: draft
kind: fix
summary: "Fix editor wrapping"
change: {"type":"source","date":"2026-06-15","commits":[]}
release: {"status":"unresolved"}
diagnostics: []
---
<!-- entry: {"id":"2026-06-15-editor-wrapping-3b8c2c1a","kind":"fix","migrationNotes":[]} -->
- **`editor`**, **`editor-static`**: Fix preserved-space wrapping in editable and static editors.
Frontmatter:
| Field | Required | Contract |
|---|---|---|
id | yes | Stable event id. Prefer YYYY-MM-DD-short-slug. |
date | yes | Event date in YYYY-MM-DD. |
status | yes | Usually draft until release metadata is known. |
kind | yes | new, fix, behavior, wiring, rename, or remove. |
summary | yes | One user-facing sentence. No changelog voice. |
change | yes | JSON object. Use {"type":"source","date":"YYYY-MM-DD","commits":[]} unless exact PR metadata is known. |
release | yes | JSON object. Use {"status":"unresolved"} unless release metadata is known. |
diagnostics | yes | JSON array. Use [] unless warning metadata is intentional. |
legacyRelease | migration only | Keep only for migrated historical entries. New entries should omit it. |
Each visible bullet row may have an entry metadata comment immediately above
it. Use it when you need stable row id, explicit kind, or migration notes. If
you omit it, the generator can infer defaults, but explicit metadata is better
for durable changelog entries.
Row bullets must name real registry item ids in backticks:
- **`item-name`**, **`second-item`**: User-facing summary.
Do not write implementation diary, test notes, internal architecture rationale, or vague ownership prose. Users want what changed for copied registry code.
Create a new source entry:
node tooling/scripts/generate-ui-changelog-entries.mjs \
--new 2026-06-15-fix-editor-wrapping \
--summary "Fix editor wrapping" \
--items editor,editor-static \
--kind fix
Regenerate public JSON:
node tooling/scripts/generate-ui-changelog-entries.mjs --write
Verify source and generated JSON agree:
node tooling/scripts/generate-ui-changelog-entries.mjs --check
Run focused generator coverage after changing the generator, schema, or changelog source layout:
bun test tooling/scripts/generate-ui-changelog-entries.test.mjs
Before handoff:
N/A reason--write--check passes