respond-to-issue

par nvidia

Rechercher et rédiger une réponse à un problème ou une question GitHub d'un contributeur externe.

npx skills add https://github.com/nvidia/megatron-lm --skill respond-to-issue

Respond to GitHub Issue

Help a maintainer draft a high-quality response to a GitHub issue from an external contributor.

Workflow

1. Understand the issue

  • Fetch the issue using gh issue view <number> --repo NVIDIA/Megatron-LM --json title,body,comments,labels,state.
  • Read the title, body, and all existing comments to understand the full context.
  • Identify the type: bug report, feature request, question, or discussion.

2. Research the codebase

  • Based on what the issue is asking, search the Megatron-LM codebase for the relevant code.
  • Read the relevant source files to understand the current behavior.
  • If the issue references specific files or functions, read those directly.
  • Check git log --oneline -20 -- <relevant-files> to see if there have been recent changes that address or relate to the issue.
  • Use git log -S "<symbol>" --oneline to trace when code was added or removed — this is especially useful for questions about unused/deprecated code or missing features.
  • If the issue is about a bug, try to confirm whether the reported behavior matches the code.
  • Check whether an existing PR already addresses the issue: gh pr list --repo NVIDIA/Megatron-LM --search "<keywords>" --limit 5.

3. Verify before citing

Before including specific details in the response, verify them:

  • If citing a commit hash, confirm the commit message and diff match what you're claiming (git show <hash> --stat).
  • If citing a file path and line number, re-read the file to confirm the line content is correct.
  • If claiming code is unused or missing, do a thorough grep to make sure you haven't missed a reference.

4. Draft the response

Write a response that:

  • Is technically accurate and grounded in the actual code (cite file paths and line numbers where helpful).
  • Is respectful and welcoming to external contributors.
  • Directly addresses the question or concern raised.
  • If the contributor identified a real gap or bug, acknowledge it clearly.
  • If there's a workaround, mention it.
  • If work is planned or a fix would be welcome, say so and suggest next steps (e.g., "a PR to address this would be welcome").
  • Keeps the tone professional but friendly.
  • Is concise -- contributors appreciate direct answers, not walls of text.

5. Suggest follow-up actions

If the issue identifies something cleanly actionable (dead code to remove, a small bug fix, a missing feature), tell the maintainer and offer to create a branch and PR to address it — don't just draft a comment.

6. Present to the maintainer

Show the drafted response to the user (the maintainer) for review. Do NOT post it to GitHub automatically. The maintainer will decide whether to post it, edit it, or ask for changes.

Format the draft as a quoted markdown block so it's easy to copy.

Important guidelines

  • Never post comments to GitHub without explicit approval from the user.
  • If you're unsure about the answer, say so clearly in your draft and flag the uncertainty for the maintainer.
  • If the issue is outside the scope of what you can determine from the code, tell the maintainer what you found and what remains unclear.
  • Check whether similar issues exist that might be relevant: gh issue list --repo NVIDIA/Megatron-LM --search "<keywords>" --limit 5.

Plus de skills de nvidia

compileiq-debug
nvidia
Utilisez quand quelque chose ne va pas : Search() bloque, toutes les évaluations retournent INVALID_SCORE, les scores ne s'améliorent pas, chaque configuration retourne le même nombre, erreurs ptxas…
create-github-pr
nvidia
Créer des pull requests GitHub en utilisant l'interface en ligne de commande gh. Utiliser lorsque l'utilisateur souhaite créer une nouvelle PR, soumettre du code pour révision, ou ouvrir une pull request. Mots-clés de déclenchement -…
nemoclaw-maintainer-cross-issue-sweep
nvidia
Analyse les autres problèmes ouverts pour trouver ceux qu’une PR donnée pourrait également corriger ou casser accidentellement. Génère des opportunités de correctifs adjacents et des risques de contradiction avec fichier:ligne…
fhir-basics
nvidia
Apprend aux agents comment fonctionnent les API FHIR R4, quelles ressources sont disponibles, comment les interroger avec des paramètres de recherche, et comment analyser correctement tous les formats de réponse…
compileiq-validate-result
nvidia
Utiliser APRÈS qu'une recherche soit terminée et AVANT de réclamer un accélérateur ou d'expédier un ACF. Charge le CSV dump_results, extrait les K meilleurs candidats (mono-objectif)…
changelog-audit
nvidia
Auditer le CHANGELOG.md de Warp avant une publication : récupérer les entrées perdues, trier par impact utilisateur, affiner le langage des entrées, ajuster les retours à la ligne et (en mode branche de publication) mettre à jour la comparaison…
maintain-dynamic-plugins
nvidia
Maintenir les chargeurs de plugins dynamiques NeMo Relay, les manifestes, les SDK natifs Rust, le protocole worker gRPC, le SDK worker Python, la documentation, les tests et la couverture du workflow de publication
dgx-diagnose
nvidia
Diagnostiquer les problèmes courants du DGX Station GB300 — plantages CUDA, ciblage incorrect du GPU, bugs de conteneur vLLM/SGLang, problèmes d'état MIG, erreurs NVLink/Fabric Manager,…