Important: agents should read /llm.txt, /llms.txt, or /.well-known/skills.json to discover the public Skillopedia API.
Hoist RegExp Creation Don't create RegExp inside render. Hoist to module scope or memoize with . Incorrect (new RegExp every render): Correct (memoize or hoist): Warning (global regex has mutable state): Global regex ( ) has mutable state: ---