karajan-code 1.13.0 → 1.13.2

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.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "../src/mcp/server.js";
package/bin/kj.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "../src/cli.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "karajan-code",
3
- "version": "1.13.0",
3
+ "version": "1.13.2",
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",
@@ -37,8 +37,8 @@
37
37
  "README.md"
38
38
  ],
39
39
  "bin": {
40
- "kj": "./src/cli.js",
41
- "karajan-mcp": "./src/mcp/server.js"
40
+ "kj": "bin/kj.js",
41
+ "karajan-mcp": "bin/karajan-mcp.js"
42
42
  },
43
43
  "scripts": {
44
44
  "postinstall": "node scripts/postinstall.js",
@@ -120,7 +120,7 @@ export class ClaudeAgent extends BaseAgent {
120
120
 
121
121
  // Use stream-json when onOutput is provided to get real-time feedback
122
122
  if (task.onOutput) {
123
- args.push("--output-format", "stream-json");
123
+ args.push("--output-format", "stream-json", "--verbose");
124
124
  const streamFilter = createStreamJsonFilter(task.onOutput);
125
125
  const res = await runCommand(resolveBin("claude"), args, cleanExecaOpts({
126
126
  onOutput: streamFilter,
@@ -141,7 +141,7 @@ export class ClaudeAgent extends BaseAgent {
141
141
  }
142
142
 
143
143
  async reviewTask(task) {
144
- const args = ["-p", task.prompt, "--allowedTools", ...ALLOWED_TOOLS, "--output-format", "stream-json"];
144
+ const args = ["-p", task.prompt, "--allowedTools", ...ALLOWED_TOOLS, "--output-format", "stream-json", "--verbose"];
145
145
  const model = this.getRoleModel(task.role || "reviewer");
146
146
  if (model) args.push("--model", model);
147
147
  const res = await runCommand(resolveBin("claude"), args, cleanExecaOpts({