From 6bf805b4539e175d13cdd298812a0e5e60be89ea Mon Sep 17 00:00:00 2001 From: Jeffery Date: Tue, 12 May 2026 02:47:48 +0000 Subject: [PATCH] fix: update role introduction formatting to use table layout --- app/roles.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/roles.js b/app/roles.js index f36e2d4..da58bf0 100644 --- a/app/roles.js +++ b/app/roles.js @@ -12,9 +12,13 @@ export function loadRoles() { } export function getRoleIntro(roles) { - const lines = ['## 🤖 AI Code Review 團隊', '']; + const lines = [ + '## 🤖 AI Code Review 團隊', '', + '| 👤 名稱 | 🎯 職責 | 🧠 個性 |', + '|--------|--------|--------|', + ]; for (const r of roles) { - lines.push(`- **${r.name}** (${r.role}):${r.personality}`); + lines.push(`| **${r.name}** | ${r.role} | ${r.personality} |`); } return lines.join('\n'); }