Changeset Decision
When to Use
- Determine whether a change in the IX monorepo requires a changeset.
- Review a pull request for missing or incomplete changesets.
- Decide whether a change is user-facing or internal-only.
- Choose which packages belong in the changeset.
- Draft the changeset summary and package entries.
- Check whether linked issues or release details should appear in the changeset summary.
Decision Criteria
A changeset is required when the change is relevant for end users or downstream consumers. Treat the following as requiring a changeset unless the user explicitly established the change is internal-only:
- Public API changes.
- Component behavior changes.
- Styling or theming changes.
- Accessibility changes.
- Bug fixes that materially affect users.
- Documentation changes that affect usage expectations.
- Design token or theme changes.
- Generated wrapper changes when consumer behavior or API usage changes.
A changeset is usually not required when the change is clearly internal-only and has no consumer impact, for example:
- Refactors with unchanged behavior.
- Test-only updates.
- Tooling or CI changes.
- Internal build configuration changes.
- Documentation edits with no usage impact.
If impact is unclear, prefer adding a changeset or explicitly state why one is not needed.
Procedure
- Inspect the changed files and summarize the effective user impact, not just the implementation detail.
- Classify the change as one of: public API, behavior, styling or theming, accessibility, documentation affecting usage, bug fix, or internal-only.
- Decide whether downstream consumers would notice the change in release notes.
- If yes or unclear, require a changeset.
- If no, state that the change is internal-only and explain why.
- If a changeset is required, identify the affected packages.
- Include only relevant packages in the changeset. Do not add wrapper packages unless the wrapper surface or consumer experience is affected.
- Draft the changeset with the affected package entries and a concise summary focused on consumer impact.
- If the work is linked to a GitHub issue, include
Fixes #<issue-number> in the changeset summary.
- If the change is breaking, make sure the summary clearly explains the break and any migration steps.
- If the change introduces a new component, property, method, or event, verify that JSDoc includes an
@since tag aligned with the expected release type.
- Mention accessibility coverage and storybook coverage when the change affects component behavior, UI states, or user interaction.
Package Selection Guidance
- Use
@siemens/ix for core component, styling, theme, token, and behavior changes in packages/core.
- Include framework wrappers only when the wrapper package itself exposes a consumer-visible change.
- Include
@siemens/ix-aggrid or @siemens/ix-echarts only when their package behavior, theme output, or public usage changes.
- Avoid adding unaffected packages only because generated files changed.
Review Output Format
When evaluating a change, report the result in this structure:
- Changeset required: yes or no.
- Reason: one short explanation tied to consumer impact.
- Affected packages: explicit package list or
none.
- Draft changeset: either a proposed changeset block or
not needed.
- Changeset notes: required summary details such as issue link, breaking-change migration note, or internal-only justification.
- Follow-up checks: mention
@since, accessibility coverage, or storybook coverage when relevant.
Drafting Guidance
- Write the summary in release-note language, describing the consumer-visible outcome.
- Keep the summary specific to the affected packages.
- If the change is internal-only, do not invent a changeset; explain why none is needed.
- If the package list is uncertain, say so and explain which repository surfaces need confirmation.
Example Draft Output
Changeset required: yes
Reason: The component styling change affects the rendered appearance for consumers.
Affected packages: @siemens/ix
Draft changeset:
---
## '@siemens/ix': patch
Adjust component styling so the updated visual state is applied consistently.
Changeset notes: Add `Fixes #1234` if this work resolves the linked issue.
Follow-up checks: Verify component accessibility coverage and storybook coverage for the new visual state.
Examples
Use the changeset-decision skill for this PR. I changed a core component SCSS file and updated a React example.
Determine whether my accessibility fix in tabs needs a changeset and which package to include.
Review these changed files and tell me if this is internal-only or release-note worthy.
Review my diff and draft the changeset I should add for this bug fix.
Repo Rules Captured By This Skill
- Missing changesets are review issues for user-facing or consumer-relevant changes.
- If no changeset is added, the review should explicitly confirm the change is internal-only.
- New component APIs should be checked for correct
@since tags based on the expected release version.
Source: siemens/ix — distributed by TomeVault.
1---2name: changeset-decision3description: Decide whether IX changes need a changeset, which packages to include, and draft the changeset summary. Use for pull requests, code reviews, component changes, styling or theming updates, accessibility changes, public API changes, behavior changes, and internal-only change classification in the Siemens IX monorepo. Use when this capability is needed.4---56# Changeset Decision78## When to Use910- Determine whether a change in the IX monorepo requires a changeset.11- Review a pull request for missing or incomplete changesets.12- Decide whether a change is user-facing or internal-only.13- Choose which packages belong in the changeset.14- Draft the changeset summary and package entries.15- Check whether linked issues or release details should appear in the changeset summary.1617## Decision Criteria1819A changeset is required when the change is relevant for end users or downstream consumers. Treat the following as requiring a changeset unless the user explicitly established the change is internal-only:2021- Public API changes.22- Component behavior changes.23- Styling or theming changes.24- Accessibility changes.25- Bug fixes that materially affect users.26- Documentation changes that affect usage expectations.27- Design token or theme changes.28- Generated wrapper changes when consumer behavior or API usage changes.2930A changeset is usually not required when the change is clearly internal-only and has no consumer impact, for example:3132- Refactors with unchanged behavior.33- Test-only updates.34- Tooling or CI changes.35- Internal build configuration changes.36- Documentation edits with no usage impact.3738If impact is unclear, prefer adding a changeset or explicitly state why one is not needed.3940## Procedure41421. Inspect the changed files and summarize the effective user impact, not just the implementation detail.432. Classify the change as one of: public API, behavior, styling or theming, accessibility, documentation affecting usage, bug fix, or internal-only.443. Decide whether downstream consumers would notice the change in release notes.454. If yes or unclear, require a changeset.465. If no, state that the change is internal-only and explain why.476. If a changeset is required, identify the affected packages.487. Include only relevant packages in the changeset. Do not add wrapper packages unless the wrapper surface or consumer experience is affected.498. Draft the changeset with the affected package entries and a concise summary focused on consumer impact.509. If the work is linked to a GitHub issue, include `Fixes #<issue-number>` in the changeset summary.5110. If the change is breaking, make sure the summary clearly explains the break and any migration steps.5211. If the change introduces a new component, property, method, or event, verify that JSDoc includes an `@since` tag aligned with the expected release type.5312. Mention accessibility coverage and storybook coverage when the change affects component behavior, UI states, or user interaction.5455## Package Selection Guidance5657- Use `@siemens/ix` for core component, styling, theme, token, and behavior changes in `packages/core`.58- Include framework wrappers only when the wrapper package itself exposes a consumer-visible change.59- Include `@siemens/ix-aggrid` or `@siemens/ix-echarts` only when their package behavior, theme output, or public usage changes.60- Avoid adding unaffected packages only because generated files changed.6162## Review Output Format6364When evaluating a change, report the result in this structure:65661. Changeset required: yes or no.672. Reason: one short explanation tied to consumer impact.683. Affected packages: explicit package list or `none`.694. Draft changeset: either a proposed changeset block or `not needed`.705. Changeset notes: required summary details such as issue link, breaking-change migration note, or internal-only justification.716. Follow-up checks: mention `@since`, accessibility coverage, or storybook coverage when relevant.7273## Drafting Guidance7475- Write the summary in release-note language, describing the consumer-visible outcome.76- Keep the summary specific to the affected packages.77- If the change is internal-only, do not invent a changeset; explain why none is needed.78- If the package list is uncertain, say so and explain which repository surfaces need confirmation.7980## Example Draft Output8182```md83Changeset required: yes84Reason: The component styling change affects the rendered appearance for consumers.85Affected packages: @siemens/ix86Draft changeset:8788---8990## '@siemens/ix': patch9192Adjust component styling so the updated visual state is applied consistently.9394Changeset notes: Add `Fixes #1234` if this work resolves the linked issue.95Follow-up checks: Verify component accessibility coverage and storybook coverage for the new visual state.96```9798## Examples99100- `Use the changeset-decision skill for this PR. I changed a core component SCSS file and updated a React example.`101- `Determine whether my accessibility fix in tabs needs a changeset and which package to include.`102- `Review these changed files and tell me if this is internal-only or release-note worthy.`103- `Review my diff and draft the changeset I should add for this bug fix.`104105## Repo Rules Captured By This Skill106107- Missing changesets are review issues for user-facing or consumer-relevant changes.108- If no changeset is added, the review should explicitly confirm the change is internal-only.109- New component APIs should be checked for correct `@since` tags based on the expected release version.110111---112> Source: [siemens/ix](https://github.com/siemens/ix) — distributed by [TomeVault](https://tomevault.io).113<!-- tomevault:4.0:skill_md:2026-06-30 -->