claude-kanban 0.6.4 → 0.6.6

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
@@ -2163,6 +2163,19 @@ Begin your response with { - no other text.`;
2163
2163
  const model = this.config?.agent.model;
2164
2164
  const promptPath = join5(this.projectPath, ROADMAP_DIR, "prompt-roadmap.txt");
2165
2165
  writeFileSync5(promptPath, prompt);
2166
+ const allowedTools = [
2167
+ // Core web tools
2168
+ "WebSearch",
2169
+ "WebFetch",
2170
+ // File tools for codebase analysis
2171
+ "Read",
2172
+ "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"
2178
+ ].join(",");
2166
2179
  const args = [
2167
2180
  "--permission-mode",
2168
2181
  permissionMode,
@@ -2170,6 +2183,8 @@ Begin your response with { - no other text.`;
2170
2183
  "--verbose",
2171
2184
  "--output-format",
2172
2185
  "text",
2186
+ "--allowedTools",
2187
+ allowedTools,
2173
2188
  `@${promptPath}`
2174
2189
  ];
2175
2190
  if (model) {