nemo-mbridge-resiliency
NVIDIA/skills
Настройте отказоустойчивость, обнаружение отстающих заданий, преемственность, перезапуск в процессе выполнения и механизм повторного запуска для заданий обучения Megatron Bridge.
...Расширить всеОбеспечение отказоустойчивости
Стабильная документация: @docs/training/resiliency.md, @docs/training/checkpointing.md Карточка: @skills/nemo-mbridge-resiliency/card.yaml
Подготовка
Отказоустойчивость (только для Slurm)
Вариант 1: плагин NeMo Run (рекомендуется)
from megatron.bridge.recipes.run_plugins import FaultTolerancePlugin
import nemo_run as run
task = run.Script(...)
run_plugins = [
FaultTolerancePlugin(
enable_ft_package=True,
calc_ft_timeouts=True,
num_in_job_restarts=3,
num_job_retries_on_failure=2,
initial_rank_heartbeat_timeout=1800,
rank_heartbeat_timeout=300,
)
]
run.run(task, plugins=run_plugins, executor=executor)
| Параметр плагина | По умолчанию | Описание |
|---|---|---|
num_in_job_restarts |
3 | Максимальное количество перезапусков в рамках одного задания |
num_job_retries_on_failure |
2 | Максимальное количество запусков нового задания в случае сбоя |
initial_rank_heartbeat_timeout |
1800 | Таймаут первого сигнального импульса (секунд) |
timeout_пульса_ранга |
300 | Таймаут последующих сигналов пульса (секунд) |
Вариант 2: Прямая настройка + ft_launcher
from megatron.bridge.training.config import FaultToleranceConfig
cfg.ft = FaultToleranceConfig(
enable_ft_package=True,
calc_ft_timeouts=True,
simulate_fault=False,
simulated_fault_type="random",
)
Запуск с помощью ft_launcher (не torchrun):
export GROUP_RANK=0 # требуется для систем, не использующих Slurm
ft_launcher \
--rdzv_backend=c10d --rdzv_endpoint=${MASTER_ADDR}:${MASTER_PORT} \
--nnodes=${NUM_NODES} --nproc-per-node=${NUM_GPUS_PER_NODE} \
--ft-rank_section_timeouts=setup:600,step:180,checkpointing:420 \
--ft-rank_out_of_section_timeout=300 \
your_training_script.py
| Параметр конфигурации | По умолчанию | Описание |
|---|---|---|
enable_ft_package |
False | Включить отказоустойчивость |
calc_ft_timeouts |
False | Автоматический расчет оптимальных таймаутов |
simulate_fault |
False | Включить имитацию сбоев для тестирования |
тип_симулируемой_неисправности |
"random" |
«rank_hung», «rank_killed» или «random» |
тип_симулированной_неисправности_ранг |
None | Конкретный ранг для неисправности (случайный, если None) |
simulated_fault_base_delay |
0 | Базовая задержка перед моделированием неисправности |
Мониторинг таймаутов на основе секций охватывает настройку, этапы обучения, создание контрольных точек
и время, проведенное вне секции, независимо друг от друга. Таймауты сохраняются в файле ft_state.json
для последующих запусков, если calc_ft_timeouts=True.
Обнаружение отстающих NVRx
from megatron.bridge.training.config import NVRxStragglerDetectionConfig
cfg.nvrx_straggler = NVRxStragglerDetectionConfig(
enabled=True,
report_time_interval=300.0,
calc_relative_gpu_perf=True,
calc_individual_gpu_perf=True,
num_gpu_perf_scores_to_print=5,
gpu_relative_perf_threshold=0.7,
gpu_individual_perf_threshold=0.7,
stop_if_detected=False,
enable_logging=True,
)
| Параметр | По умолчанию | Описание |
|---|---|---|
включено |
False | Включить обнаружение отстающих |
report_time_interval |
300,0 | Интервал в секундах между проверками отстающих |
calc_relative_gpu_perf |
True | Сравнивать ранги между собой |
calc_individual_gpu_perf |
True | Отслеживать снижение производительности по каждому рангу с течением времени |
gpu_relative_perf_threshold |
0,7 | Пороговое значение для относительной производительности (0–1) |
gpu_individual_perf_threshold |
0,7 | Пороговое значение индивидуальной производительности (0–1) |
stop_if_detected |
False | Прекратить обучение при обнаружении отстающего |
num_gpu_perf_scores_to_print |
5 | Количество лучших/худших результатов для вывода |
profiling_interval |
1 | Интервал профилирования для детектора |
Прерывание
Плагин (Slurm)
from megatron.bridge.recipes.run_plugins import PreemptionPlugin
plugins = [
PreemptionPlugin(
preempt_time=60,
enable_exit_handler=True,
enable_exit_handler_for_data_loader=False,
)
]
| Параметр плагина | По умолчанию | Описание |
|---|---|---|
preempt_time |
60 | Количество секунд до истечения лимита задания, после чего будет отправлен сигнал |
enable_exit_handler |
True | Включить обработчик сигналов при обучении |
enable_exit_handler_for_data_loader |
False | Включить для рабочих процессов загрузчика данных |
Прямая настройка
import signal
cfg.train.exit_signal_handler = True
cfg.train.exit_signal = signal.SIGTERM
cfg.train.exit_signal_handler_for_dataloader = False
Повторный запуск автомата состояний (экспериментально)
from megatron.bridge.training.config import RerunStateMachineConfig
cfg.rerun_state_machine = RerunStateMachineConfig(
rerun_mode="validate_results",
check_for_nan_in_loss=True,
check_for_spiky_loss=False,
spiky_loss_factor=10.0,
)
| Параметр | По умолчанию | Описание |
|---|---|---|
rerun_mode |
"disabled" |
«отключено», «validate_results», «report_determinism_stats» |
check_for_nan_in_loss |
True | Проверка наличия NaN в функции потерь |
check_for_spiky_loss |
False | Проверка на наличие неожиданно больших значений потери |
spiky_loss_factor |
10,0 | Потеря помечается, если > коэффициент * максимальное наблюдаемое значение (увеличивайте для больших моделей) |
Коды завершения: 16 = возобновление для устранения неоднозначности, 17 = сбой проверки.
Перезапуск в процессе обучения (экспериментально)
from megatron.bridge.training.config import InProcessRestartConfig
cfg.inprocess_restart = InProcessRestartConfig(
enabled=True,
granularity="node",
soft_timeout=60.0,
hard_timeout=90.0,
)
| Параметр | По умолчанию | Описание |
|---|---|---|
enabled |
False | Включить перезапуск внутри процесса |
active_world_size |
Нет | Ранги, выполняющие рабочую нагрузку (остальные — резервные) |
гранулярность |
«узел» |
«узел» или «ранг» степень детализации перезапуска |
max_iterations |
Нет | Максимальное количество попыток перезапуска (Нет = без ограничений) |
soft_timeout |
60,0 | Время обнаружения зависаний после освобождения GIL (секунд) |
hard_timeout |
90,0 | Принудительное завершение зависших ранков (секунд) |
heartbeat_interval |
30,0 | Интервал проверки работоспособности (секунд) |
heartbeat_timeout |
60,0 | Таймаут при отсутствии сигналов пульса (секунды) |
barrier_timeout |
120,0 | Таймаут распределенного барьера (секунды) |
completion_timeout |
120,0 | Таймаут барьера завершения (секунды) |
empty_cuda_cache |
True | Очистить кэш CUDA при перезапуске |
max_rank_faults |
Нет | Максимальное количество ошибок ранга до завершения работы |
monitor_process_logdir |
Нет | Каталог для журналов мониторинга |
Необходимые переменные среды:
export TORCH_CPP_LOG_LEVEL=error
export TORCH_NCCL_RETHROW_CUDA_ERRORS=0
export NCCL_NVLS_ENABLE=0
Таймаут сторожевого механизма PyTorch NCCL должен превышать значение hard_timeout. Исполняющая среда
Slurm от NeMo-Run не поддерживается; запускайте напрямую с помощью srun --kill-on-bad-exit=0.
Асинхронное сохранение контрольных точек
cfg.checkpoint.async_save = True
cfg.checkpoint.ckpt_format = "torch_dist"
Локальное создание контрольных точек (NVRx)
cfg.checkpoint.non_persistent_local_ckpt_dir = "/local/scratch/ckpt"
cfg.checkpoint.non_persistent_local_ckpt_algo = "fully_parallel"
Якоря кода
Отказоустойчивость
- Конфигурация:
src/megatron/bridge/training/config.py—FaultToleranceConfig - Время выполнения:
src/megatron/bridge/training/fault_tolerance.py - Плагин:
src/megatron/bridge/recipes/run_plugins.py—FaultTolerancePlugin - Плагин производительности:
scripts/performance/nemo-mbridge-resiliency_plugins.py - Тесты:
tests/unit_tests/training/test_fault_tolerance.py - Пример:
examples/training_features/nemo-mbridge-resiliency/fault_tolerance/
Обнаружение отстающих
- Конфигурация:
src/megatron/bridge/training/config.py—NVRxStragglerDetectionConfig - Время выполнения:
src/megatron/bridge/training/nvrx_straggler.py - Цикл обучения:
src/megatron/bridge/training/train.py—check_nvrx_straggler_detection - Тесты:
tests/unit_tests/training/test_nvrx_straggler.py,tests/functional_tests/training/test_nvrx_straggler.py - Пример:
examples/training_features/nemo-mbridge-resiliency/straggler_detection/
Перезапуск в процессе выполнения
- Конфигурация:
src/megatron/bridge/training/config.py—InProcessRestartConfig - Время выполнения:
src/megatron/bridge/training/inprocess_restart.py - Точка входа:
src/megatron/bridge/training/pretrain.py—maybe_wrap_for_inprocess_restart - Тесты:
tests/unit_tests/training/test_inprocess_restart.py,tests/functional_tests/training/test_inprocess_restart.py
Преемственность
- Плагин:
src/megatron/bridge/recipes/run_plugins.py—PreemptionPlugin - Обработчик сигналов:
src/megatron/bridge/training/utils/sig_utils.py - Тесты:
tests/unit_tests/recipes/test_run_plugins.py
Машина состояний повторного запуска
- Конфигурация:
src/megatron/bridge/training/config.py—RerunStateMachineConfig - Инициализация:
src/megatron/bridge/training/initialize.py—init_rerun_state
Создание контрольных точек
- Асинхронное сохранение:
src/megatron/bridge/training/checkpointing.py—schedule_async_save - Локальные контрольные точки:
src/megatron/bridge/training/checkpointing.py—LocalCheckpointManager - Тесты:
tests/functional_tests/training/test_local_checkpointing.py
Проблемы
ft_launcher, а не torchrun: для прямого использования
FaultToleranceConfigтребуетсяft_launcher. Использованиеtorchrunнезаметно отключает FT. Для систем, отличных от Slurm, установитеGROUP_RANK=0.Для асинхронного сохранения требуется torch_dist:
async_save=Trueработает только сckpt_format="torch_dist". Другие форматы незаметно завершаются сбоем или выдают ошибку.IPR + NeMo-Run: перезапуск внутри процесса несовместим с NeMo-Run или плагинами преемственности Slurm. Требуются определённые версии PyTorch/NCCL и переменные среды.
NVRx против устаревшего детектора отстающих: существует два детектора. Используйте NVRx (
nvrx_straggler); не включайте оба.Значение по умолчанию для stop_if_detected: по умолчанию NVRx ведёт журнал, но не останавливает обучение. Установите
stop_if_detected=Trueдля автоматического завершения.NCCL watchdog против hard_timeout: для IPR таймаут NCCL watchdog должен превышать значение
hard_timeout, иначе PyTorch завершит процесс до восстановления.Машина состояний повторного запуска находится в стадии альфа-тестирования: используйте
check_for_nan_in_loss=Trueдля обнаружения NaN, но пока не полагайтесь на полные рабочие процессы повторного запуска.
Верификация
Отказоустойчивость
./examples/training_features/nemo-mbridge-resiliency/fault_tolerance/run_fault_tolerance.sh
./examples/training_features/nemo-mbridge-resiliency/fault_tolerance/run_fault_tolerance.sh --simulate-fault
Ищите строки журнала [FaultTolerance] / [RankMonitorServer] с разделами
timeouts. Симулированный сбой должен вызвать перезапуск с контрольной точки.
Обнаружение отстающих
uv run python -m torch.distributed.run --nproc_per_node=2 \
examples/training_features/nemo-mbridge-resiliency/straggler_detection/straggler_detection_example.py
Обратите внимание на отчёты об относительной производительности GPU и индивидуальной производительности GPU
с оценками по каждому ранку.
Асинхронная контрольная точка
Обратите внимание на записи в журналах о планировании асинхронного сохранения контрольных точек. Итерации обучения
должны продолжаться во время записи файлов контрольных точек.
Перезапуск в процессе
pytest tests/functional_tests/training/test_inprocess_restart.py -v
Требуются совместимые версии PyTorch/NCCL.
---
name: nemo-mbridge-resiliency
description: Configure fault tolerance, straggler detection, preemption, in-process restart, and re-run state machine for Megatron Bridge training jobs.
license: Apache-2.0
---
# Resiliency
Stable docs: @docs/training/resiliency.md, @docs/training/checkpointing.md
Card: @skills/nemo-mbridge-resiliency/card.yaml
## Enablement
### Fault tolerance (Slurm only)
#### Option 1: NeMo Run plugin (recommended)
```python
from megatron.bridge.recipes.run_plugins import FaultTolerancePlugin
import nemo_run as run
task = run.Script(...)
run_plugins = [
FaultTolerancePlugin(
enable_ft_package=True,
calc_ft_timeouts=True,
num_in_job_restarts=3,
num_job_retries_on_failure=2,
initial_rank_heartbeat_timeout=1800,
rank_heartbeat_timeout=300,
)
]
run.run(task, plugins=run_plugins, executor=executor)
```
| Plugin parameter | Default | Description |
|---|---|---|
| `num_in_job_restarts` | 3 | Max restarts within same job |
| `num_job_retries_on_failure` | 2 | Max new job launches on failure |
| `initial_rank_heartbeat_timeout` | 1800 | First heartbeat timeout (seconds) |
| `rank_heartbeat_timeout` | 300 | Subsequent heartbeat timeout (seconds) |
#### Option 2: Direct config + ft_launcher
```python
from megatron.bridge.training.config import FaultToleranceConfig
cfg.ft = FaultToleranceConfig(
enable_ft_package=True,
calc_ft_timeouts=True,
simulate_fault=False,
simulated_fault_type="random",
)
```
Launch with `ft_launcher` (not `torchrun`):
```bash
export GROUP_RANK=0 # required for non-Slurm
ft_launcher \
--rdzv_backend=c10d --rdzv_endpoint=${MASTER_ADDR}:${MASTER_PORT} \
--nnodes=${NUM_NODES} --nproc-per-node=${NUM_GPUS_PER_NODE} \
--ft-rank_section_timeouts=setup:600,step:180,checkpointing:420 \
--ft-rank_out_of_section_timeout=300 \
your_training_script.py
```
| Config parameter | Default | Description |
|---|---|---|
| `enable_ft_package` | False | Enable fault tolerance |
| `calc_ft_timeouts` | False | Auto-compute optimal timeouts |
| `simulate_fault` | False | Enable fault simulation for testing |
| `simulated_fault_type` | `"random"` | `"rank_hung"`, `"rank_killed"`, or `"random"` |
| `simulated_fault_rank` | None | Specific rank to fault (random if None) |
| `simulated_fault_base_delay` | 0 | Base delay before simulating fault |
Section-based timeout monitoring covers setup, training steps, checkpointing,
and out-of-section time independently. Timeouts are saved to `ft_state.json`
for subsequent runs when `calc_ft_timeouts=True`.
### NVRx straggler detection
```python
from megatron.bridge.training.config import NVRxStragglerDetectionConfig
cfg.nvrx_straggler = NVRxStragglerDetectionConfig(
enabled=True,
report_time_interval=300.0,
calc_relative_gpu_perf=True,
calc_individual_gpu_perf=True,
num_gpu_perf_scores_to_print=5,
gpu_relative_perf_threshold=0.7,
gpu_individual_perf_threshold=0.7,
stop_if_detected=False,
enable_logging=True,
)
```
| Parameter | Default | Description |
|---|---|---|
| `enabled` | False | Enable straggler detection |
| `report_time_interval` | 300.0 | Seconds between straggler checks |
| `calc_relative_gpu_perf` | True | Compare ranks against each other |
| `calc_individual_gpu_perf` | True | Track per-rank degradation over time |
| `gpu_relative_perf_threshold` | 0.7 | Threshold for relative performance (0-1) |
| `gpu_individual_perf_threshold` | 0.7 | Threshold for individual performance (0-1) |
| `stop_if_detected` | False | Terminate training on straggler |
| `num_gpu_perf_scores_to_print` | 5 | Number of best/worst scores to print |
| `profiling_interval` | 1 | Profiling interval for detector |
### Preemption
#### Plugin (Slurm)
```python
from megatron.bridge.recipes.run_plugins import PreemptionPlugin
plugins = [
PreemptionPlugin(
preempt_time=60,
enable_exit_handler=True,
enable_exit_handler_for_data_loader=False,
)
]
```
| Plugin parameter | Default | Description |
|---|---|---|
| `preempt_time` | 60 | Seconds before job limit to send signal |
| `enable_exit_handler` | True | Enable signal handler in training |
| `enable_exit_handler_for_data_loader` | False | Enable for dataloader workers |
#### Direct config
```python
import signal
cfg.train.exit_signal_handler = True
cfg.train.exit_signal = signal.SIGTERM
cfg.train.exit_signal_handler_for_dataloader = False
```
### Re-run state machine (experimental)
```python
from megatron.bridge.training.config import RerunStateMachineConfig
cfg.rerun_state_machine = RerunStateMachineConfig(
rerun_mode="validate_results",
check_for_nan_in_loss=True,
check_for_spiky_loss=False,
spiky_loss_factor=10.0,
)
```
| Parameter | Default | Description |
|---|---|---|
| `rerun_mode` | `"disabled"` | `"disabled"`, `"validate_results"`, `"report_determinism_stats"` |
| `check_for_nan_in_loss` | True | Check for NaN in loss |
| `check_for_spiky_loss` | False | Check for unexpectedly large loss |
| `spiky_loss_factor` | 10.0 | Loss flagged if > factor * max observed (increase for large models) |
Exit codes: 16 = resume to disambiguate, 17 = failed validation.
### In-process restart (experimental)
```python
from megatron.bridge.training.config import InProcessRestartConfig
cfg.inprocess_restart = InProcessRestartConfig(
enabled=True,
granularity="node",
soft_timeout=60.0,
hard_timeout=90.0,
)
```
| Parameter | Default | Description |
|---|---|---|
| `enabled` | False | Enable in-process restart |
| `active_world_size` | None | Ranks executing workload (rest are warm reserves) |
| `granularity` | `"node"` | `"node"` or `"rank"` restart granularity |
| `max_iterations` | None | Max restart attempts (None = unlimited) |
| `soft_timeout` | 60.0 | Detect GIL-released hangs (seconds) |
| `hard_timeout` | 90.0 | Force-terminate hung ranks (seconds) |
| `heartbeat_interval` | 30.0 | Heartbeat interval (seconds) |
| `heartbeat_timeout` | 60.0 | Missing heartbeat timeout (seconds) |
| `barrier_timeout` | 120.0 | Distributed barrier timeout (seconds) |
| `completion_timeout` | 120.0 | Completion barrier timeout (seconds) |
| `empty_cuda_cache` | True | Clear CUDA cache during restart |
| `max_rank_faults` | None | Max rank faults before terminating |
| `monitor_process_logdir` | None | Directory for monitor logs |
Required environment variables:
```bash
export TORCH_CPP_LOG_LEVEL=error
export TORCH_NCCL_RETHROW_CUDA_ERRORS=0
export NCCL_NVLS_ENABLE=0
```
The PyTorch NCCL watchdog timeout must exceed `hard_timeout`. NeMo-Run's
Slurm Executor is not supported; launch directly with `srun --kill-on-bad-exit=0`.
### Async checkpoint save
```python
cfg.checkpoint.async_save = True
cfg.checkpoint.ckpt_format = "torch_dist"
```
### Local checkpointing (NVRx)
```python
cfg.checkpoint.non_persistent_local_ckpt_dir = "/local/scratch/ckpt"
cfg.checkpoint.non_persistent_local_ckpt_algo = "fully_parallel"
```
## Code Anchors
### Fault tolerance
- Config: `src/megatron/bridge/training/config.py` — `FaultToleranceConfig`
- Runtime: `src/megatron/bridge/training/fault_tolerance.py`
- Plugin: `src/megatron/bridge/recipes/run_plugins.py` — `FaultTolerancePlugin`
- Perf plugin: `scripts/performance/nemo-mbridge-resiliency_plugins.py`
- Tests: `tests/unit_tests/training/test_fault_tolerance.py`
- Example: `examples/training_features/nemo-mbridge-resiliency/fault_tolerance/`
### Straggler detection
- Config: `src/megatron/bridge/training/config.py` — `NVRxStragglerDetectionConfig`
- Runtime: `src/megatron/bridge/training/nvrx_straggler.py`
- Train loop: `src/megatron/bridge/training/train.py` — `check_nvrx_straggler_detection`
- Tests: `tests/unit_tests/training/test_nvrx_straggler.py`, `tests/functional_tests/training/test_nvrx_straggler.py`
- Example: `examples/training_features/nemo-mbridge-resiliency/straggler_detection/`
### In-process restart
- Config: `src/megatron/bridge/training/config.py` — `InProcessRestartConfig`
- Runtime: `src/megatron/bridge/training/inprocess_restart.py`
- Entry point: `src/megatron/bridge/training/pretrain.py` — `maybe_wrap_for_inprocess_restart`
- Tests: `tests/unit_tests/training/test_inprocess_restart.py`, `tests/functional_tests/training/test_inprocess_restart.py`
### Preemption
- Plugin: `src/megatron/bridge/recipes/run_plugins.py` — `PreemptionPlugin`
- Signal handler: `src/megatron/bridge/training/utils/sig_utils.py`
- Tests: `tests/unit_tests/recipes/test_run_plugins.py`
### Re-run state machine
- Config: `src/megatron/bridge/training/config.py` — `RerunStateMachineConfig`
- Init: `src/megatron/bridge/training/initialize.py` — `init_rerun_state`
### Checkpointing
- Async save: `src/megatron/bridge/training/checkpointing.py` — `schedule_async_save`
- Local ckpt: `src/megatron/bridge/training/checkpointing.py` — `LocalCheckpointManager`
- Tests: `tests/functional_tests/training/test_local_checkpointing.py`
## Pitfalls
1. **ft_launcher, not torchrun**: Direct `FaultToleranceConfig` requires
`ft_launcher`. Using `torchrun` silently disables FT. For non-Slurm,
set `GROUP_RANK=0`.
2. **Async save requires torch_dist**: `async_save=True` only works with
`ckpt_format="torch_dist"`. Other formats silently fail or error.
3. **IPR + NeMo-Run**: In-process restart is not compatible with NeMo-Run
or Slurm preemption plugins. Requires specific PyTorch/NCCL versions
and env vars.
4. **NVRx vs legacy straggler**: Two detectors exist. Use NVRx
(`nvrx_straggler`); do not enable both.
5. **stop_if_detected default**: NVRx logs but does not stop training by
default. Set `stop_if_detected=True` for automatic termination.
6. **NCCL watchdog vs hard_timeout**: For IPR, NCCL watchdog timeout must
exceed `hard_timeout` or PyTorch kills the process before recovery.
7. **Rerun state machine is alpha**: Use `check_for_nan_in_loss=True` for
NaN detection, but don't rely on full rerun workflows yet.
## Verification
### Fault tolerance
```bash
./examples/training_features/nemo-mbridge-resiliency/fault_tolerance/run_fault_tolerance.sh
./examples/training_features/nemo-mbridge-resiliency/fault_tolerance/run_fault_tolerance.sh --simulate-fault
```
Look for `[FaultTolerance]` / `[RankMonitorServer]` log lines with section
timeouts. Simulated fault should trigger restart from checkpoint.
### Straggler detection
```bash
uv run python -m torch.distributed.run --nproc_per_node=2 \
examples/training_features/nemo-mbridge-resiliency/straggler_detection/straggler_detection_example.py
```
Look for `GPU relative performance` and `GPU individual performance` reports
with per-rank scores.
### Async checkpoint
Look for `Scheduling async checkpoint save` in logs. Training iterations
should continue while checkpoint files are being written.
### In-process restart
```bash
pytest tests/functional_tests/training/test_inprocess_restart.py -v
```
Requires compatible PyTorch/NCCL versions.
Все файлы
6 файловУстановить nemo-mbridge-resiliency
Скачайте файлы навыков и распакуйте их в каталог .claude/skills/.
Скачать ZIPКлонируйте репозиторий и скопируйте файлы навыка в свой проект.
git clone https://github.com/NVIDIA/skills/tree/main/skills/nemo-mbridge-resiliency # Copy SKILL.md to your .claude/skills/ directory
Копировать





Дом
