claude-kanban 0.6.8 → 0.6.9

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/bin/cli.js CHANGED
@@ -2161,8 +2161,6 @@ Begin your response with { - no other text.`;
2161
2161
  const command = this.config?.agent.command || "claude";
2162
2162
  const permissionMode = this.config?.agent.permissionMode || "auto";
2163
2163
  const model = this.config?.agent.model;
2164
- const promptPath = join5(this.projectPath, ROADMAP_DIR, "prompt-roadmap.txt");
2165
- writeFileSync5(promptPath, prompt);
2166
2164
  const allowedTools = [
2167
2165
  // Core web tools
2168
2166
  "WebSearch",
@@ -2180,8 +2178,7 @@ Begin your response with { - no other text.`;
2180
2178
  "--output-format",
2181
2179
  "text",
2182
2180
  "--allowedTools",
2183
- allowedTools,
2184
- `@${promptPath}`
2181
+ allowedTools
2185
2182
  ];
2186
2183
  if (model) {
2187
2184
  args.unshift("--model", model);
@@ -2200,6 +2197,8 @@ Begin your response with { - no other text.`;
2200
2197
  startedAt: /* @__PURE__ */ new Date(),
2201
2198
  output: []
2202
2199
  };
2200
+ childProcess.stdin?.write(prompt);
2201
+ childProcess.stdin?.end();
2203
2202
  let stdout = "";
2204
2203
  let stderr = "";
2205
2204
  childProcess.stdout?.on("data", (data) => {