claude-kanban 0.6.4 → 0.6.7
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 +15 -0
- package/dist/bin/cli.js.map +1 -1
- package/dist/server/index.js +15 -0
- package/dist/server/index.js.map +1 -1
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -1835,6 +1835,19 @@ Begin your response with { - no other text.`;
|
|
|
1835
1835
|
const model = this.config?.agent.model;
|
|
1836
1836
|
const promptPath = join5(this.projectPath, ROADMAP_DIR, "prompt-roadmap.txt");
|
|
1837
1837
|
writeFileSync5(promptPath, prompt);
|
|
1838
|
+
const allowedTools = [
|
|
1839
|
+
// Core web tools
|
|
1840
|
+
"WebSearch",
|
|
1841
|
+
"WebFetch",
|
|
1842
|
+
// File tools for codebase analysis
|
|
1843
|
+
"Read",
|
|
1844
|
+
"Glob",
|
|
1845
|
+
"Grep",
|
|
1846
|
+
// Firecrawl MCP tools for better web research
|
|
1847
|
+
"mcp__firecrawl__firecrawl_search",
|
|
1848
|
+
"mcp__firecrawl__firecrawl_scrape",
|
|
1849
|
+
"mcp__firecrawl__firecrawl_extract"
|
|
1850
|
+
].join(",");
|
|
1838
1851
|
const args = [
|
|
1839
1852
|
"--permission-mode",
|
|
1840
1853
|
permissionMode,
|
|
@@ -1842,6 +1855,8 @@ Begin your response with { - no other text.`;
|
|
|
1842
1855
|
"--verbose",
|
|
1843
1856
|
"--output-format",
|
|
1844
1857
|
"text",
|
|
1858
|
+
"--allowedTools",
|
|
1859
|
+
allowedTools,
|
|
1845
1860
|
`@${promptPath}`
|
|
1846
1861
|
];
|
|
1847
1862
|
if (model) {
|