claude-kanban 0.6.7 → 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 +4 -9
- package/dist/bin/cli.js.map +1 -1
- package/dist/server/index.js +4 -9
- package/dist/server/index.js.map +1 -1
- package/package.json +1 -1
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",
|
|
@@ -2170,11 +2168,7 @@ Begin your response with { - no other text.`;
|
|
|
2170
2168
|
// File tools for codebase analysis
|
|
2171
2169
|
"Read",
|
|
2172
2170
|
"Glob",
|
|
2173
|
-
"Grep"
|
|
2174
|
-
// Firecrawl MCP tools for better web research
|
|
2175
|
-
"mcp__firecrawl__firecrawl_search",
|
|
2176
|
-
"mcp__firecrawl__firecrawl_scrape",
|
|
2177
|
-
"mcp__firecrawl__firecrawl_extract"
|
|
2171
|
+
"Grep"
|
|
2178
2172
|
].join(",");
|
|
2179
2173
|
const args = [
|
|
2180
2174
|
"--permission-mode",
|
|
@@ -2184,8 +2178,7 @@ Begin your response with { - no other text.`;
|
|
|
2184
2178
|
"--output-format",
|
|
2185
2179
|
"text",
|
|
2186
2180
|
"--allowedTools",
|
|
2187
|
-
allowedTools
|
|
2188
|
-
`@${promptPath}`
|
|
2181
|
+
allowedTools
|
|
2189
2182
|
];
|
|
2190
2183
|
if (model) {
|
|
2191
2184
|
args.unshift("--model", model);
|
|
@@ -2204,6 +2197,8 @@ Begin your response with { - no other text.`;
|
|
|
2204
2197
|
startedAt: /* @__PURE__ */ new Date(),
|
|
2205
2198
|
output: []
|
|
2206
2199
|
};
|
|
2200
|
+
childProcess.stdin?.write(prompt);
|
|
2201
|
+
childProcess.stdin?.end();
|
|
2207
2202
|
let stdout = "";
|
|
2208
2203
|
let stderr = "";
|
|
2209
2204
|
childProcess.stdout?.on("data", (data) => {
|