SIGN IN SIGN UP

fix(core): allow Unicode characters in agent names (#3194)

The agent name validation regex only permitted ASCII letters, numbers,
hyphens, and underscores, silently rejecting agents with non-ASCII names
(e.g., Chinese "项目管理"). Replace the regex with Unicode property
escapes (\p{L}\p{N}) to allow letters and numbers from any script.

Also guard the lowercase naming convention warning so it only fires when
the name contains ASCII letters, since case is meaningless for CJK
scripts.

Fixes #3149
T
tanzhenxin committed
34d560adcf4020d8a2ccc2cd3c5b5ba2f7e491df
Parent: 8d74a0c
Committed by GitHub <noreply@github.com> on 4/13/2026, 10:24:13 AM