From 0bd284525fbec3a49bced2d5ec3b6ba890470df4 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Jul 2026 16:18:41 +0000 Subject: [PATCH 1/2] chore: add missing `stdlib` keyword to `string/num2words` Adds the `stdlib` keyword to the `keywords` array of `@stdlib/string/num2words` so it matches the shared front-of-array metadata cluster used by 57/58 (98.3%) of the packages in `@stdlib/string/*`. `num2words` already carries every other generic descriptor from that cluster (`stdstring`, `utilities`, `utility`, `utils`, `util`, `string`, `str`), so the omission is a single-token gap against an otherwise uniform sibling template. --- lib/node_modules/@stdlib/string/num2words/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/string/num2words/package.json b/lib/node_modules/@stdlib/string/num2words/package.json index 8cad1c46554d..7cd18d081a3e 100644 --- a/lib/node_modules/@stdlib/string/num2words/package.json +++ b/lib/node_modules/@stdlib/string/num2words/package.json @@ -52,6 +52,7 @@ "windows" ], "keywords": [ + "stdlib", "stdstring", "utilities", "utility", From 49a286acf742b7b9bdf07d7c7938ef0cbab5ac30 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Jul 2026 16:18:49 +0000 Subject: [PATCH 2/2] chore: add missing generic keywords to `string/to-well-formed` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the four generic `stdlib`-string metadata keywords `stdstring`, `utilities`, `util`, and `str` to the `keywords` array of `@stdlib/string/to-well-formed`. Each of these four sits at 57/58 (98.3%) conformance across the `@stdlib/string/*` namespace and already applies to a generic string-utility package (the target already carries `stdlib`, `string`, `utility`, `utils`). Insertions are placed adjacent to each keyword's existing cluster-mate to keep the diff minimal — no reordering of the pre-existing keyword sequence. --- lib/node_modules/@stdlib/string/to-well-formed/package.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/string/to-well-formed/package.json b/lib/node_modules/@stdlib/string/to-well-formed/package.json index 6d6c10d76892..2c0c99e4388c 100644 --- a/lib/node_modules/@stdlib/string/to-well-formed/package.json +++ b/lib/node_modules/@stdlib/string/to-well-formed/package.json @@ -50,7 +50,9 @@ ], "keywords": [ "stdlib", + "stdstring", "string", + "str", "well-formed", "surrogate", "lone-surrogate", @@ -62,7 +64,9 @@ "sanitization", "conversion", "transform", + "utilities", "utility", - "utils" + "utils", + "util" ] }