From 6868401b64f791e9ff565f29beb6338826b73a2b Mon Sep 17 00:00:00 2001 From: Diego Navarro Date: Sat, 16 May 2026 16:49:49 -0700 Subject: [PATCH] docs: fix name field character range to include digits The body text described valid characters as '(a-z)' but the summary table above correctly states 'Lowercase letters, numbers, and hyphens only'. Updated the range to '(a-z, 0-9)' for consistency. --- docs/specification.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/specification.mdx b/docs/specification.mdx index a45ead3..20cf9f6 100644 --- a/docs/specification.mdx +++ b/docs/specification.mdx @@ -59,7 +59,7 @@ metadata: The required `name` field: - Must be 1-64 characters -- May only contain unicode lowercase alphanumeric characters (`a-z`) and hyphens (`-`) +- May only contain unicode lowercase alphanumeric characters (`a-z`, `0-9`) and hyphens (`-`) - Must not start or end with a hyphen (`-`) - Must not contain consecutive hyphens (`--`) - Must match the parent directory name