From 4afb513700edd808d72139487e8d066c756f4339 Mon Sep 17 00:00:00 2001 From: Ragnor Comerford Date: Mon, 29 Jun 2026 22:58:46 +0200 Subject: [PATCH] Clarify PEG grammar description in SKILL.md Updated the SKILL.md file to correct and clarify the PEG grammar description for '.gq' files. --- skills/omnigraph/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/omnigraph/SKILL.md b/skills/omnigraph/SKILL.md index ede18324..2bd0fb98 100644 --- a/skills/omnigraph/SKILL.md +++ b/skills/omnigraph/SKILL.md @@ -102,10 +102,10 @@ The non-obvious facts that bite, then the full grammar: - **Stored-query metadata**: `@description("…")` / `@instruction("…")` may follow the param list. - **Casing**: type names uppercase-initial (`Signal`); idents/edges lowercase-initial (`formsPattern`); variables `$`-prefixed. `//` and `/* */` comments only. -Authoritative PEG grammar (pest) for `.gq` files ("NanoGraph" is the legacy engine name): +Authoritative PEG grammar (pest) for `.gq` files: ```pest -// NanoGraph Query Grammar (.gq files) +// Query Grammar (.gq files) WHITESPACE = _{ " " | "\t" | "\r" | "\n" } COMMENT = _{ LINE_COMMENT | BLOCK_COMMENT }