skills/megatron-commit-tracker/SKILL.md
Track and normalize change requests against the official Megatron-LM repository by branch, PR, commit, commit range, or time window. Use when Codex needs to collect the exact upstream change set before deeper analysis, especially for branch-aware Megatron and MindSpeed migration work, daily/periodic tracking, or preparing inputs for change analysis and migration generation.
npx skillsauth add Ascend/agent-skills megatron-commit-trackerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Collect the smallest correct upstream change set from the official Megatron-LM repository and hand off a normalized artifact to downstream skills. Treat branch as a first-class input for every mode.
https://github.com/NVIDIA/Megatron-LM.branch unless the user gives a PR or commit that can be resolved unambiguously.change-set object before doing any semantic analysis.megatron main as valid for exploration, but do not imply that it has a strict MindSpeed mapping.Resolve the user request into exactly one of these modes:
pr
Use when the user specifies a PR number or a merge request URL.commit
Use when the user specifies one commit SHA and wants to inspect that change in branch context.range
Use when the user specifies base_sha..head_sha.time_window
Use when the user specifies a branch plus a period such as last 7 days.scheduled
Use when an automation is checking a branch incrementally.Produce a normalized change-set artifact in JSON or markdown code block form with these fields when available:
{
"repo": "NVIDIA/Megatron-LM",
"branch": "core_v0.12.1",
"source_type": "pr",
"selector": {
"pr": 1234,
"commit": null,
"base_sha": null,
"head_sha": null,
"since": null,
"until": null
},
"resolved": {
"commits": ["sha1", "sha2"],
"head_sha": "sha2",
"base_sha": "sha0"
},
"analysis_mode": "summary"
}
Also include a compact table of:
main for another branch.repo + branch, never by repository alone.main, frame the result as exploratory upstream tracking, not strict migration-ready alignment.Pass the normalized change-set to:
change-set structure is needed.testing
Kubernetes 集群健康检查与安全修复 — 诊断问题,用户确认后执行修复
tools
昇腾NPU CANN Toolkit+Kernels+NNAL安装部署技能。支持从官网下载run包安装和从Docker镜像提取两种方式,覆盖驱动检查、包下载、安装、环境变量配置与验证全流程。当用户需要安装CANN全套组件或指定版本CANN到自定义路径时调用。
development
编译 ATB (Ascend Transformer Boost) 测试框架。当用户需要编译 ATB 测试框架、 运行 CSV 测试、或构建 atb_test_framework 时调用。支持全量编译(含第三方依赖克隆与源替换) 和增量编译两种模式。需在 Docker 容器内配合 CANN 环境执行。
databases
ATB OPS→ACLNN 迁移标准化工作流主模板。整合前置学习、设计文档生成、CSV用例设计、 实际迁移、编译验证、测试验证全流程,提供明确的阶段 Gates 和用户确认机制。