Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3861d288fb | |||
| 6bf805b453 | |||
| 990ef7c847 |
+6
-2
@@ -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');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user