fix: channelId extraction, sender identification, and per-channel turn order #9

Merged
hzhang merged 18 commits from fix/turn-gate-and-handoff into main 2026-03-01 11:12:18 +00:00
Showing only changes of commit fb50b62509 - Show all commits

View File

@@ -8,7 +8,7 @@ const outDir = path.join(root, "dist", "whispergate");
fs.rmSync(outDir, { recursive: true, force: true }); fs.rmSync(outDir, { recursive: true, force: true });
fs.mkdirSync(outDir, { recursive: true }); fs.mkdirSync(outDir, { recursive: true });
for (const f of ["index.ts", "rules.ts", "openclaw.plugin.json", "README.md", "package.json"]) { for (const f of ["index.ts", "rules.ts", "turn-manager.ts", "openclaw.plugin.json", "README.md", "package.json"]) {
fs.copyFileSync(path.join(pluginDir, f), path.join(outDir, f)); fs.copyFileSync(path.join(pluginDir, f), path.join(outDir, f));
} }