From e6d8cc4f3df41af12602b0c5d2a6b8c672240b94 Mon Sep 17 00:00:00 2001 From: yanyishuai <1093994647@qq.com> Date: Tue, 4 Aug 2026 13:52:43 +0800 Subject: [PATCH] [agent] feat(api): add hangul-jamo-jungseong-yae present helper (#8649) --- .../utils/is-hangul-jamo-jungseong-yae-present.ts | 3 +++ contributors/agents.json | 14 +++++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 apps/api/src/utils/is-hangul-jamo-jungseong-yae-present.ts diff --git a/apps/api/src/utils/is-hangul-jamo-jungseong-yae-present.ts b/apps/api/src/utils/is-hangul-jamo-jungseong-yae-present.ts new file mode 100644 index 0000000000..93da194b0e --- /dev/null +++ b/apps/api/src/utils/is-hangul-jamo-jungseong-yae-present.ts @@ -0,0 +1,3 @@ +export function isHangulJamoJungseongYaePresent(input: string): boolean { + return input.includes("\u{1164}"); +} diff --git a/contributors/agents.json b/contributors/agents.json index a3fbd7156d..5fd5c9e629 100644 --- a/contributors/agents.json +++ b/contributors/agents.json @@ -1,5 +1,13 @@ { - "agents": [], - "last_updated": "2026-06-03", - "total_contributions": 0 + "agents": [ + { + "github_username": "yanyishuai", + "model": "cursor-agent", + "version": "2026-07-13", + "pr_number": 0, + "issue_number": 8649 + } + ], + "last_updated": "2026-07-13", + "total_contributions": 1 }