harness-bujang 0.5.2 → 0.5.3
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 +1 -14
- package/package.json +1 -1
- package/templates/agents/en/director.md +119 -476
- package/templates/agents/ko/director.md +108 -465
- package/templates/templates/en/CLAUDE.md.harness-section.template +94 -38
- package/templates/templates/ko/CLAUDE.md.harness-section.template +87 -31
package/dist/index.js
CHANGED
|
@@ -933,19 +933,6 @@ async function runChat(args) {
|
|
|
933
933
|
}
|
|
934
934
|
const dbPath = resolveDbPath(opts.target);
|
|
935
935
|
if (!fs5.existsSync(dbPath)) {
|
|
936
|
-
if (!opts.create) {
|
|
937
|
-
console.log();
|
|
938
|
-
console.log(c4.red(`\u2716 Chat DB not found at ${c4.bold(dbPath)}`));
|
|
939
|
-
console.log();
|
|
940
|
-
console.log(" This usually means the harness has not posted any messages yet,");
|
|
941
|
-
console.log(" or the project does not use the SQLite chat backend.");
|
|
942
|
-
console.log();
|
|
943
|
-
console.log(" Run with " + c4.bold("--create") + " to create an empty DB and schema:");
|
|
944
|
-
console.log(" " + c4.cyan("bujang chat --create"));
|
|
945
|
-
console.log();
|
|
946
|
-
process.exitCode = 1;
|
|
947
|
-
return;
|
|
948
|
-
}
|
|
949
936
|
fs5.mkdirSync(path5.dirname(dbPath), { recursive: true });
|
|
950
937
|
await runSql(dbPath, SCHEMA_SQL);
|
|
951
938
|
const seedId = `seed-${Date.now()}`;
|
|
@@ -954,7 +941,7 @@ async function runChat(args) {
|
|
|
954
941
|
`INSERT INTO harness_messages (id, "from", "to", type, message, severity)
|
|
955
942
|
VALUES ('${seedId}', '\uBD80\uC7A5', '\uB300\uD45C\uB2D8', 'info', '\uD1A1\uBC29\uC774 \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uCCAB \uBA85\uB839\uC744 \uB0B4\uB824\uC8FC\uC138\uC694.', 'info');`
|
|
956
943
|
);
|
|
957
|
-
console.log(c4.dim(` created empty DB
|
|
944
|
+
console.log(c4.dim(` created empty chat DB at ${dbPath}`));
|
|
958
945
|
} else {
|
|
959
946
|
await runSql(dbPath, SCHEMA_SQL);
|
|
960
947
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harness-bujang",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
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",
|