Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
12 changes: 9 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# AGENTS.md

## Prerequisites
## Prerequisites using `mise`

- **Node.js**: Version pinned in `.nvmrc` (use `nvm use` or the devcontainer)
- **pnpm**: Pinned in `package.json` `packageManager` field. Run `corepack enable` to activate it
This repository uses [`mise.toml`](mise.toml) to manage the CLI toolchain.

Before using `aws`, `pnpm` or `node`:
1. If `mise` is not installed, stop and ask the user to install it with `brew install mise`. Do not do it for them.
2. Run `mise install`
3. Export all the env vars as given by `mise env`

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I specifically don't want to use eval because that trips most security checks


Do not use `nvm`, `corepack`, `npx`, or `npm`.

## Commands

Expand Down
7 changes: 4 additions & 3 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ min_version = "2026.7.0"

[tools]
awscli = "2.36.13"
node = "24.18.1"
pnpm = "10.34.5"

[settings]
idiomatic_version_file_enable_tools = ["node", "pnpm"]
Comment thread
lavoiesl marked this conversation as resolved.

[tasks.install]
run = "pnpm install"
run = "pnpm install --frozen-lockfile"
Loading