원클릭으로
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)