Use consistent, standards-aligned naming for identifiers, especially for user-facing text/URLs and registry keys.

Example (shape registry + ID prose):

// Canonical kebab-case registry key (and optional explicit alias)
const shapes = {
  'my-new-shape': myNewShape,
  'm-nsh': myNewShape,
};

// Documentation prose should use ID
// "ID of the edge" (unless an external API contract requires "Id")