Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26.7.0
26.8.2
8 changes: 4 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Elements is a design language for AI/ML factories built as a monorepo containing
## Environment Requirements

- **mise**: Toolchain manager for local development and CI (`mise.toml`)
- **Node.js**: 26.7.0 (managed via mise and validated against `.nvmrc` and `package.json` engines)
- **pnpm**: 11.23.0 (managed via mise and validated against `package.json`)
- **Go**: 1.26.4 (managed via mise for the Go starter)
- **Node.js**: Version managed via mise and validated against `.nvmrc` and `package.json` engines
- **pnpm**: Version managed via mise and validated against `package.json`
- **Go**: Version managed via mise for the Go starter
- **Git LFS**: Required for visual test screenshots and videos (`.gitattributes` defines tracked files)
- **Playwright**: Browser-based testing uses Chromium (installed via prepare script)
- **Vale**: Prose linter for documentation and JSDoc (managed via mise)
Expand Down Expand Up @@ -280,5 +280,5 @@ These notes are for cloud agents running in the prebuilt VM (dependencies alread

### Toolchain access

- **mise** manages the toolchain, and the VM image already includes it. `~/.local/bin` sits on `PATH` and `mise activate` runs from `~/.bashrc`, so `node` (26.7.0), `pnpm` (11.23.0), `go`, `vale`, and `git-lfs` resolve directly. If a fresh shell ever lacks them, prefix commands with `mise exec --` (for example, `mise exec -- pnpm ...`) or run `mise run <task>`.
- **mise** manages the toolchain, and the VM image already includes it. `~/.local/bin` sits on `PATH` and `mise activate` runs from `~/.bashrc`, so `node`, `pnpm`, `go`, `vale`, and `git-lfs` resolve directly. If a fresh shell ever lacks them, prefix commands with `mise exec --` (for example, `mise exec -- pnpm ...`) or run `mise run <task>`.
- Run all repo commands through mise to guarantee the pinned versions, exactly as the root `AGENTS.md` examples show.
4 changes: 2 additions & 2 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This product includes the following bundled third-party software:
- @modelcontextprotocol/server v2.0.0 [MIT] (used by: @nvidia-elements/cli)
Copyright: Anthropic, PBC (https://anthropic.com)

- adm-zip v0.6.0 [MIT] (used by: @nvidia-elements/cli)
- adm-zip v0.6.1 [MIT] (used by: @nvidia-elements/cli)
Copyright: Nasca Iacob <adm-zip@pm.me> (https://github.com/cthackers)

- archiver v8.0.0 [MIT] (used by: @nvidia-elements/cli)
Expand Down Expand Up @@ -318,7 +318,7 @@ The following bundled components are provided under the MIT license:
@inquirer/prompts v8.7.0 - Copyright Simon Boudrias <admin@simonboudrias.com>
@modelcontextprotocol/ext-apps v1.7.5 - Copyright Olivier Chafik
@modelcontextprotocol/server v2.0.0 - Copyright Anthropic, PBC (https://anthropic.com)
adm-zip v0.6.0 - Copyright Nasca Iacob <adm-zip@pm.me> (https://github.com/cthackers)
adm-zip v0.6.1 - Copyright Nasca Iacob <adm-zip@pm.me> (https://github.com/cthackers)
archiver v8.0.0 - Copyright Chris Talkington (http://christalkington.com/)
eslint v10.10.0 - Copyright Nicholas C. Zakas <nicholas+npm@nczconsulting.com>
fast-glob v3.3.3 - Copyright Denis Malinochkin (https://mrmlnc.com)
Expand Down
68 changes: 34 additions & 34 deletions mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ lockfile = true
npm.package_manager = "pnpm"

[tools]
node = "26.7.0"
pnpm = "11.23.0"
node = "26.8.2"
pnpm = "12.4.2"
vale = "3.15.1"
go = "1.26.4"
git-lfs = "3.7.1"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"type": "module",
"description": "",
"engines": {
"node": "26.7.0"
"node": "26.8.2"
},
"packageManager": "pnpm@11.23.0",
"packageManager": "pnpm@12.4.2",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.23.0",
"version": "12.4.2",
"onFail": "download"
}
},
Expand Down
Loading