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.
@@ -1833,8 +1833,6 @@ Begin your response with { - no other text.`;
1833
1833
  const command = this.config?.agent.command || "claude";
1834
1834
  const permissionMode = this.config?.agent.permissionMode || "auto";
1835
1835
  const model = this.config?.agent.model;
1836
- const promptPath = join5(this.projectPath, ROADMAP_DIR, "prompt-roadmap.txt");
1837
- writeFileSync5(promptPath, prompt);
1838
1836
  const allowedTools = [
1839
1837
  // Core web tools
1840
1838
  "WebSearch",
@@ -1852,8 +1850,7 @@ Begin your response with { - no other text.`;
1852
1850
  "--output-format",
1853
1851
  "text",
1854
1852
  "--allowedTools",
1855
- allowedTools,
1856
- `@${promptPath}`
1853
+ allowedTools
1857
1854
  ];
1858
1855
  if (model) {
1859
1856
  args.unshift("--model", model);
@@ -1872,6 +1869,8 @@ Begin your response with { - no other text.`;
1872
1869
  startedAt: /* @__PURE__ */ new Date(),
1873
1870
  output: []
1874
1871
  };
1872
+ childProcess.stdin?.write(prompt);
1873
+ childProcess.stdin?.end();
1875
1874
  let stdout = "";
1876
1875
  let stderr = "";
1877
1876
  childProcess.stdout?.on("data", (data) => {