update-project-version

oleh nvidia

Perbarui versi proyek NeMo Relay di seluruh Cargo, Node, dan lockfiles tanpa membuat permukaan rilis tidak sinkron

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

Lebih banyak skill dari nvidia

compileiq-debug
nvidia
Gunakan ketika ada yang salah: Search() menggantung, semua evaluasi mengembalikan INVALID_SCORE, skor tidak kunjung membaik, setiap konfigurasi mengembalikan angka yang sama, error ptxas…
create-github-pr
nvidia
Buat pull request GitHub menggunakan gh CLI. Gunakan saat pengguna ingin membuat PR baru, mengirimkan kode untuk ditinjau, atau membuka pull request. Kata kunci pemicu -…
nemoclaw-maintainer-cross-issue-sweep
nvidia
Memindai isu terbuka lainnya untuk menemukan isu yang mungkin juga diperbaiki atau secara tidak sengaja dirusak oleh suatu PR tertentu. Menghasilkan peluang perbaikan yang berdekatan dan risiko kontradiksi dengan file:baris…
fhir-basics
nvidia
Mengajarkan agen cara kerja API FHIR R4, sumber daya apa saja yang tersedia, cara melakukan kueri dengan parameter pencarian, dan cara mengurai semua format respons dengan benar…
compileiq-validate-result
nvidia
Gunakan SETELAH Pencarian selesai dan SEBELUM mengklaim percepatan atau mengirim ACF. Muat CSV dump_results, ekstrak kandidat top-K (tujuan tunggal)…
changelog-audit
nvidia
Audit Warp CHANGELOG.md sebelum rilis: pulihkan entri yang hilang, urutkan berdasarkan dampak pengguna, perbaiki bahasa entri, bungkus baris, dan (mode cabang rilis) naikkan bandingkan…
maintain-dynamic-plugins
nvidia
Mempertahankan pemuat plugin dinamis NeMo Relay, manifes, SDK asli Rust, protokol pekerja gRPC, SDK pekerja Python, dokumen, pengujian, dan cakupan alur kerja rilis
dgx-diagnose
nvidia
Diagnosis masalah umum DGX Station GB300 — crash CUDA, penargetan GPU yang salah, bug kontainer vLLM/SGLang, masalah status MIG, kesalahan NVLink/Fabric Manager,…