writing-releases

Writes GitHub release notes for Medusa releases in the established style. Use when generating a draft release description from a list of commits and PR…

npx skills add https://github.com/medusajs/medusa --skill writing-releases

Writing Medusa Release Notes

Generates GitHub release notes from commit/PR data in the established Medusa style.

Constraints

  • Full Changelog link is mandatory — always the last line: **Full Changelog**: [vPREV...vNEW](compare-url)
  • No top-level Breaking Changes section — breaking changes are embedded inside their Highlight subsection with 🚧 Breaking change, never in a separate ## Breaking Changes heading
  • Bullet format is strict — every entry in Features/Bugs/Chores/etc. must include author link and PR link (see reference/format.md)
  • Highlights are not a summary of all PRs — only significant changes qualify; routine additions go in Features/Bugs bullets only (see reference/release-types.md)
  • No emojis — the only permitted emoji is 🚧 on breaking change highlights; use none anywhere else
  • Code block required for actionable steps — if a highlight requires the developer to install a package, run a command, or update config, include a fenced code block with the exact command(s)

Load Reference Files When Needed

Load at least one reference file before writing.

TaskLoad
Formatting sections and bulletsreference/format.md
Deciding whether to write Highlights, and identifying breaking changesreference/release-types.md
Writing the Highlights sectionreference/highlights.md

Quick Reference

Release type decision

Commit setRelease type
Only routine fixes/chores, no user-facing impactMinimal — no Highlights section
One important change is the main reason for the releaseSingle Highlight
Multiple significant features or fixesMulti-Highlight
Any PR with a minor changeset in .changeset/Add 🚧 to that Highlight

Section order (include only sections with entries)

## Highlights
## Features
## Bugs
## Documentation
## Chores
## Other Changes
## New Contributors
**Full Changelog**: [vPREV...vNEW](url)

Common Mistakes

  • Adding a title or # Heading at the top — release notes have no title, start directly with the first section
  • Adding a ## Breaking Changes top-level section — embed inside the Highlight instead
  • Putting a routine bug fix or small feature addition in Highlights
  • Missing the Full Changelog link at the end
  • Bullet missing author link or PR link
  • Using PR title verbatim as a Highlight heading — write a descriptive outcome-focused title
  • Treating every feat: commit as a Highlight candidate
  • Using emojis anywhere except 🚧 on breaking change highlights
  • Writing a Highlight that requires a developer action (install, run, config change) without a fenced code block

Reference Files

reference/format.md          — section order, bullet format, commit prefix → section mapping
reference/release-types.md   — when to add Highlights, breaking change detection, highlight criteria
reference/highlights.md      — how to write Highlight subsections

Mais skills de medusajs

mcloud-variables
medusajs
Executar comandos de variáveis mcloud para listar e obter variáveis de ambiente para um ambiente Cloud. Use ao inspecionar, ler ou exportar variáveis de ambiente…
official
building-storefronts
medusajs
Integração frontend SDK-first para storefronts Medusa com padrões React Query e regras críticas de chamadas de API. Sempre use o Medusa JS SDK para todas as requisições de API — nunca use fetch() comum, pois ele não possui os cabeçalhos necessários (chave de API publicável para rotas de loja, autenticação para rotas de admin). Passe objetos JavaScript simples para os métodos do SDK; nunca use JSON.stringify() nos parâmetros do corpo, pois o SDK lida com a serialização automaticamente. Use useQuery para requisições GET e useMutation para requisições POST/DELETE,...
official
building-admin-dashboard-customizations
medusajs
Extensões de UI personalizadas para o painel administrativo do Medusa usando o Admin SDK e componentes de UI do Medusa. Carregue esta skill PRIMEIRO para qualquer trabalho de UI administrativa (planejamento, implementação, exploração); servidores MCP fornecem apenas referência de API, não padrões de design ou estratégias de carregamento de dados CRÍTICO: Sempre use o Medusa JS SDK para todas as requisições de API (nunca fetch comum); separe consultas de exibição de consultas modais e invalide dados de exibição após mutações Implemente widgets em páginas existentes ou crie rotas de UI personalizadas;...
official
learning-medusa
medusajs
Bootcamp interativo passo a passo de desenvolvimento Medusa, onde você constrói uma funcionalidade de marcas enquanto aprende padrões de arquitetura. Três lições progressivas (2–3 horas no total) abordando módulos, workflows, rotas de API, links de módulos, hooks de workflow e personalização da interface administrativa. Verificação de checkpoint após cada componente principal testa compreensão conceitual, qualidade de código e funcionalidade antes de prosseguir. Trata erros como oportunidades de ensino; depura em conjunto com perguntas diagnósticas e análise de causa raiz...
official
db-migrate
medusajs
Executa migrações pendentes do banco de dados Medusa e relata os resultados. Executa npx medusa db:migrate via Bash para aplicar todas as migrações pendentes ao seu banco de dados Medusa. Relata os resultados das migrações, incluindo a quantidade de migrações aplicadas, quaisquer erros encontrados e confirmação de sucesso. Projetado para projetos Medusa com configuração padrão npm/npx.
official
mcloud-environments
medusajs
Execute comandos de ambientes mcloud para listar, obter, criar, excluir, reimplantar ou acionar builds para ambientes Cloud. Use ao gerenciar o ciclo de vida de ambientes,…
official
db-generate
medusajs
Gera migrações de banco de dados para módulos Medusa com um único comando. Encapsula o comando CLI npx medusa db:generate para criar arquivos de migração para módulos Medusa especificados. Aceita o nome do módulo como argumento e informa a localização do arquivo de migração, erros e próximos passos. Sugere automaticamente executar npx medusa db:migrate após a geração para aplicar as migrações.
official
mcloud-deployments
medusajs
Execute comandos de mcloud deployments para listar deployments, recuperar detalhes de deployment e buscar logs de build. Use ao listar deployments, verificar deployment…
official