harness-bujang 0.5.5 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -1198,8 +1198,9 @@ const ROLES = {
|
|
|
1198
1198
|
};
|
|
1199
1199
|
|
|
1200
1200
|
const ROOMS = [
|
|
1201
|
-
// Top-level
|
|
1202
|
-
|
|
1201
|
+
// Top-level \u2014 kept narrow on purpose so the "smallest matching room wins"
|
|
1202
|
+
// filter routes director\u2192principal reports to \uB300\uD45C \uBCF4\uACE0 (not \uACF5\uB3D9\uB300\uD45C).
|
|
1203
|
+
{ id: '\uB300\uD45C\uB2D8', name: '\uB300\uD45C \uBCF4\uACE0', icon: '\u{1F454}', members: ['\uB300\uD45C\uB2D8', '\uBD80\uC7A5'] },
|
|
1203
1204
|
{ id: '\uACF5\uB3D9\uB300\uD45C', name: '\uACF5\uB3D9\uB300\uD45C', icon: '\u2B50', members: ['\uB300\uD45C\uB2D8', '\uACF5\uB3D9\uB300\uD45C', '\uBD80\uC7A5'] },
|
|
1204
1205
|
{ id: 'consultant', name: '\uCEE8\uC124\uD134\uD2B8', icon: '\u{1F91D}', members: ['consultant', '\uBD80\uC7A5'] },
|
|
1205
1206
|
// Engineering teams
|
|
@@ -2199,7 +2200,7 @@ async function main() {
|
|
|
2199
2200
|
break;
|
|
2200
2201
|
case "--version":
|
|
2201
2202
|
case "-v":
|
|
2202
|
-
console.log("0.5.
|
|
2203
|
+
console.log("0.5.6");
|
|
2203
2204
|
break;
|
|
2204
2205
|
case "--help":
|
|
2205
2206
|
case "-h":
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harness-bujang",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"description": "Install the Harness-Bujang multi-agent harness into any project — Director, 7 specialist teams, real-time chat-room UI. Korean and English personas. Works with Claude Code, Cursor, Cline, Aider, or any tool that reads .claude/agents/.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -51,8 +51,10 @@ const ROLES: Record<string, { icon: string; color: string; bg: string; label?: s
|
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
const ROOMS = [
|
|
54
|
-
// Top
|
|
55
|
-
|
|
54
|
+
// Top — kept narrow on purpose so director→principal reports route to 대표 보고
|
|
55
|
+
// (not 공동대표). The "smallest matching room wins" filter would otherwise
|
|
56
|
+
// funnel them to 공동대표 because that room also includes both 부장 and 대표님.
|
|
57
|
+
{ id: '대표님', name: '대표 보고', icon: '👔', members: ['대표님', '부장'] },
|
|
56
58
|
{ id: '공동대표', name: '공동대표', icon: '⭐', members: ['대표님', '공동대표', '부장'] },
|
|
57
59
|
{ id: 'consultant', name: '컨설턴트', icon: '🤝', members: ['consultant', '부장'] },
|
|
58
60
|
// Engineering
|