بنقرة واحدة
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)