Skip to main content

pr

Always use this skill before opening a pull request in the Topcoat repository

Ir para a instalação

Informações da origem

Repositório
tokio-rs/topcoat
Última atividade na origem
26 de julho de 2026 às 11:40
Idioma detectado do SKILL.md
inglês
Estrelas
4.839
Forks
176

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
pr
description
Always use this skill before opening a pull request in the Topcoat repository
# Opening Pull Requests ## Describe the diff, not the latest commit A branch usually holds several commits: initial work, fixups, review responses, rebases. The title and body describe the net change landing on the base (usually `main`). Read the full diff first: ``` git diff <base>...HEAD git log <base>..HEAD ``` ## Title Same Conventional Commits format as a commit message (see the [`commit`](../commit/SKILL.md) skill). [`.github/workflows/semantic-pr.yml`](../../../.github/workflows/semantic-pr.yml) enforces that the type is one of `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `build`, `ci`, `chore`, `revert` and that the subject is not capitalized. PRs are squash-merged, so the title becomes the landed commit and the `release-plz` changelog entry. ## Body No template. Keep it short and high-signal: - **Summary** -- what the change does and why, drawn from the diff. - **Testing** -- how you verified it (which checks you ran; see the [`check`](../check/SKILL.md) skill). - **Disclaimer** -- if you are an AI agent creating the PR, add a disclaimer about specific model and how AI was used to create the change. Reviewers already know Topcoat and Rust. Include what they need to evaluate the change, and nothing else.
Ver no GitHub