一键导入
create-changeset
Create a changeset entry describing changes to workspace packages
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a changeset entry describing changes to workspace packages
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Scaffold a new UI component with the correct folder structure, styles, tests, and docblocks
Scaffold a new class with the correct file structure, naming, tests, and docblocks
Scaffold a new runtime type guard with the correct naming and docblocks
Scaffold a new utility function with the correct naming, tests, and docblocks
Write tests following this project's testing conventions, file patterns, and placement rules
Create a git commit following this project's commit message conventions
| name | create-changeset |
| description | Create a changeset entry describing changes to workspace packages |
| user-invocable | true |
Create a changeset entry for the current changes. This project uses @changesets/cli to manage versioning and changelogs.
A changeset is required when changes affect the public API or behavior of any publishable package in packages/*. Changes to apps/*, examples/*, local.pkg/*, tests, or internal-only code do not need changesets.
patch — Bug fixes, internal refactors that don't change the public API.minor — New features, new exports, non-breaking additions.major — Breaking changes to the public API (removed exports, changed signatures, renamed types).Co-Authored-By or similar.packages/* packages have public-facing changes.pnpm changeset and select the affected packages and bump level..changeset/*.md file with a clear, consumer-facing description.Good:
Add `useTheme` hook for runtime theme switching
Fix button focus ring not appearing in Firefox
Remove deprecated `variant` prop from Card — use `tone` instead
Bad:
M001I003T: Implement useTheme hook as specified in the design doc
Refactor internal signal wiring in ThingDataSource
(Internal refactor with no public API change — no changeset needed)