From 0b9e1803d467274588fad2c27127bd9cd95d7ded Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Mon, 30 Jun 2025 07:59:58 +0300 Subject: [PATCH] docs(agents): update instructions for yarn (#141) --- .github/AGENTS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/AGENTS.md b/.github/AGENTS.md index 9cd2369..6a7ad2f 100644 --- a/.github/AGENTS.md +++ b/.github/AGENTS.md @@ -4,22 +4,22 @@ These instructions help language models work with this repository. ## Setup -1. Run `npm install` to get linting tools and the Bats test framework. +1. Run `yarn install` to get linting tools and the Bats test framework. ## Formatting - Format code and docs with Prettier and markdownlint: ```bash -npm run fix:prettier -npm run fix:markdown +yarn fix:prettier +yarn fix:markdown ``` - Shell scripts should pass `shellcheck`. ## Testing -- When code changes, run `npm test` to execute Bats tests. +- When code changes, run `yarn test` to execute Bats tests. - If only comments or documentation change, tests may be skipped. ## Commits and PRs