From changesets
Delete one or more changeset files from .changeset/. Select by name or interactively pick from the list. Use when a changeset is no longer needed after a revert or scope change.
npx claudepluginhub savvy-web/systems --plugin changesetsThis skill uses the workspace's default tool permissions.
List all `.changeset/*.md` files, excluding `README.md`. If no changeset files are found, report "No changeset files found" and stop.
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Generates Angular code and provides architectural guidance for projects, components, services, reactivity with signals, forms, dependency injection, routing, SSR, ARIA accessibility, animations, Tailwind styling, testing, and CLI tooling.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
List all .changeset/*.md files, excluding README.md. If no changeset files are found, report "No changeset files found" and stop.
If $ARGUMENTS names one or more specific changeset files (with or without the .changeset/ prefix or .md extension), resolve them to their full paths and use those as the candidates.
If $ARGUMENTS is empty or does not name specific files, list the available changeset files and ask the user to pick one or more before continuing. Do not proceed past this step until the user has made a selection.
For each candidate file, read it and display a brief summary:
.changeset/<filename>.mdAfter showing all summaries, ask once:
Delete X changeset(s)? This cannot be undone.
List the filenames to be deleted so the user can see exactly what will be removed. Wait for an explicit "yes" or equivalent affirmation. If the user says anything other than a clear confirmation, abort and report that no files were deleted.
For each confirmed file, delete it using:
rm .changeset/<filename>.md
List every file that was deleted. If any deletion fails (e.g., file not found), report the error for that file without stopping the remaining deletions, then summarize any failures at the end.
Example output:
Deleted:
.changeset/brave-dogs-laugh.md
.changeset/silver-cups-dream.md
Never delete any file without explicit user confirmation from Step 4.