From 7a70dbbe0cd2b6a0aa06708368fb3e1d1359a49e Mon Sep 17 00:00:00 2001 From: "Richard \"EpicKitty\" Bowey" Date: Wed, 22 Nov 2023 19:27:46 +0000 Subject: [PATCH] fix(doc): updated create new tool command in readme (#762) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78184c92..a51f9c53 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ pnpm lint To create a new tool, there is a script that generate the boilerplate of the new tool, simply run: ```sh -pnpm run script:create-new-tool my-tool-name +pnpm run script:create:tool my-tool-name ``` It will create a directory in `src/tools` with the correct files, and a the import in `src/tools/index.ts`. You will just need to add the imported tool in the proper category and develop the tool.