changeset

Solid

Generate a changeset file describing the current PR's changes. Use when asked to "create a changeset", "add a changeset", "/changeset", or after implementing a feature/fix that needs a changelog entry. Produces a randomly named `.changeset/*.md` file with affected packages, bump type, and an 80-character-max user-facing summary.

AI & Automation 12 stars 0 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
37
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Create a Changeset Generate a properly formatted changeset file in `.changeset/` describing the work on the current branch / PR. Follow the project's changeset conventions in `.cursor/rules/090-changesets.mdc`. ## Instructions ### 1. Gather Context Determine what changed on the current branch versus the default branch: ```bash echo "=== BRANCH ===" && git rev-parse --abbrev-ref HEAD && echo "=== CHANGED FILES ===" && git diff --name-only origin/main...HEAD && echo "=== DIFF SUMMARY ===" && git diff --stat origin/main...HEAD ``` If `origin/main` is not available, fall back to staged + unstaged changes (`git status` and `git diff`). ### 2. Decide If A Changeset Is Needed Create one for: new features, bug fixes, breaking changes, performance improvements, security fixes. Skip for: refactors with no user impact, formatting, docs-only, tests-only, internal tooling, dev dependency bumps. If a changeset is not needed, tell the user and stop. ### 3. Determine Affected Packages Map changed file paths to package names from `package.json` files. Common mappings: | Path | Package name | | ---------------------- | --------------------------- | | `packages/core/**` | `@transcripts-mcp/core` | | `packages/adapters/**` | `@transcripts-mcp/adapters` | | `packages/search/**` | `@transcripts-mcp/search` | | `apps/mcp/**` | `@transcripts-mcp/mcp` | | `packages/<name>/**` | `@transcripts-mcp/<name>` | Only include pack...

Details

Author
Stormix
Repository
Stormix/transcripts-mcp
Created
5 days ago
Last Updated
4 days ago
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category