update-project-version

от nvidia

Обновить версию проекта NeMo Relay в Cargo, Node и файлах блокировок, не допуская рассинхронизации поверхностей релиза.

npx skills add https://github.com/nvidia/nemo-relay --skill update-project-version

Update Project Version

Companion Guidance

Use karpathy-guidelines alongside this skill for implementation or review work. Keep changes scoped, surface assumptions, and define focused validation before editing.

Use this skill when changing the released NeMo Relay version, including pre-release or build-metadata variants used during packaging.

Source Of Truth

  • Cargo.toml [workspace.package].version is the source of truth for the Rust workspace and Python build versioning.
  • Keep Cargo.toml [workspace.dependencies] self-references aligned when the workspace version changes.
  • crates/node/package.json carries its own npm package version and must stay aligned with the workspace-root package-lock.json.
  • integrations/openclaw/package.json carries the OpenClaw npm plugin version and must stay aligned with the workspace-root package-lock.json.
  • package-lock.json records Node package versions under packages["crates/node"].version and packages["integrations/openclaw"].version. The workspace-root lockfile may not have a top-level version field.

Workflow

  1. Read the current version from Cargo.toml and decide the exact target version string.
  2. Run just set-version <version> to update release-version source files:
    • [workspace.package].version
    • workspace.dependencies.nemo-relay.version
    • workspace.dependencies.nemo-relay-adaptive.version
    • workspace.dependencies.nemo-relay-pii-redaction.version
    • workspace.dependencies.nemo-relay-ffi.version
    • workspace.dependencies.nemo-relay-cli.version
    • crates/node/package.json version
    • integrations/openclaw/package.json version
    • package-lock.json packages["crates/node"].version
    • package-lock.json packages["integrations/openclaw"].version
    • integrations/openclaw/package.json dependencies["nemo-relay-node"]
    • package-lock.json packages["integrations/openclaw"].dependencies["nemo-relay-node"]
  3. If editing helper code, keep helper inputs aligned with those same fields:
    • set_project_version should call the Cargo, Node, and coding-agent plugin version helpers for the same target version.
    • set_cargo_workspace_version should update [workspace.package].version plus workspace.dependencies.nemo-relay.version, workspace.dependencies.nemo-relay-adaptive.version, workspace.dependencies.nemo-relay-pii-redaction.version, workspace.dependencies.nemo-relay-ffi.version, and workspace.dependencies.nemo-relay-cli.version.
    • set_node_package_versions should update crates/node/package.json, integrations/openclaw/package.json, the corresponding package-lock.json package entries, and the OpenClaw nemo-relay-node dependency entries in both files. set_node_package_version remains a compatibility alias. set_npm_package_version remains the reusable npm JSON helper for Node packaging recipes.
  4. Refresh generated surfaces:
    • Run cargo check --workspace to refresh Cargo.lock if workspace package entries changed.
    • If Cargo metadata changed and committed attribution files must stay fresh, regenerate ATTRIBUTIONS-Rust.md with ./scripts/generate_attributions.sh rust.
    • If package-lock.json changed, regenerate ATTRIBUTIONS-Node.md with ./scripts/generate_attributions.sh node.
  5. Audit remaining references to the old version with targeted search. Separate true version pins from examples, generated attribution files, and unrelated third-party versions.

Validation

  • rg -n '^version =|nemo-relay = \\{ version =|nemo-relay-adaptive = \\{ version =|nemo-relay-pii-redaction = \\{ version =|nemo-relay-ffi = \\{ version =|nemo-relay-cli = \\{ version =' Cargo.toml
  • rg -n '\"version\"' crates/node/package.json integrations/openclaw/package.json package-lock.json
  • cargo check --workspace
  • If Rust attribution files are expected to stay current: ./scripts/generate_attributions.sh rust
  • If Node packaging changed materially: run npm install --ignore-scripts from the repository root or stronger Node validation through just test-node

Release Notes

  • just package-node and just package-python may set temporary non-release versions for packaging. Do not commit those temporary suffixes as the canonical project version unless the release process requires that exact string.

Avoid

  • Updating only Cargo.toml or only Node package metadata
  • Forgetting Cargo.lock, ATTRIBUTIONS-Rust.md, or ATTRIBUTIONS-Node.md after changing versioned inputs that feed them
  • Doing blind repository-wide search/replace across docs and generated attribution files

References

  • Cargo.toml
  • Cargo.lock
  • package.json
  • package-lock.json
  • crates/node/package.json
  • integrations/openclaw/package.json
  • justfile
  • scripts/licensing/attributions_lockfile_md.py

Больше skills от nvidia

compileiq-debug
nvidia
Используйте, когда что-то не так: Search() зависает, все оценки возвращают INVALID_SCORE, оценки не улучшаются, каждая конфигурация возвращает одно и то же число, ошибки ptxas…
create-github-pr
nvidia
Создание pull request'ов в GitHub с помощью gh CLI. Используйте, когда пользователь хочет создать новый PR, отправить код на ревью или открыть pull request. Ключевые слова для запуска —…
nemoclaw-maintainer-cross-issue-sweep
nvidia
Сканирует другие открытые задачи, чтобы найти те, которые данный PR может исправить или случайно сломать. Выводит возможности смежных исправлений и риски противоречий с указанием файла:строки…
fhir-basics
nvidia
Обучает агентов работе с API FHIR R4, доступным ресурсам, запросам с параметрами поиска и корректному разбору всех форматов ответов…
compileiq-validate-result
nvidia
Используйте ПОСЛЕ завершения поиска и ДО применения ускорения или отправки ACF. Загружает CSV-файл dump_results, извлекает top-K кандидатов (однокритериальный)...
changelog-audit
nvidia
Аудит Warp CHANGELOG.md перед релизом: восстановление потерянных записей, сортировка по влиянию на пользователей, уточнение формулировок, перенос строк и (в режиме релизной ветки) обновление сравнения…
maintain-dynamic-plugins
nvidia
Поддержка загрузчиков динамических плагинов NeMo Relay, манифестов, нативных Rust SDK, протокола gRPC worker, Python worker SDK, документации, тестов и покрытия рабочего процесса релиза
dgx-diagnose
nvidia
Диагностика распространённых проблем DGX Station GB300 — сбои CUDA, ошибочное нацеливание на GPU, ошибки контейнеров vLLM/SGLang, проблемы состояния MIG, ошибки NVLink/Fabric Manager,…