karajan-code 2.1.0 → 2.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "karajan-code",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Local multi-agent coding orchestrator with TDD, SonarQube, and code review pipeline",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0",
@@ -771,7 +771,7 @@ async function maybeGenerateAutoHuBatch({ flags, stageResults, task, plannedTask
771
771
  const fs = await import("node:fs/promises");
772
772
  const path = await import("node:path");
773
773
  const { getKarajanHome } = await import("./utils/paths.js");
774
- const huDir = path.join(getKarajanHome(), "hu", batchSessionId);
774
+ const huDir = path.join(getKarajanHome(), "hu-stories", batchSessionId);
775
775
  await fs.mkdir(huDir, { recursive: true });
776
776
  const persistBatch = {
777
777
  session_id: batchSessionId,