cowork-cli 0.0.1 β†’ 0.2.8

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/README.md ADDED
@@ -0,0 +1,78 @@
1
+ # πŸš€ cowork-cli (cwk)
2
+
3
+ **Stop waiting. Start knowing.**
4
+
5
+ `cowork-cli` (`cwk`) is the ultimate high-speed CLI Analyst for developers who need answers, not a conversation. It's a minimalist, context-aware co-processor that lives in your terminal and understands your code as well as you do.
6
+
7
+ ## πŸ”₯ Universal AI Power
8
+
9
+ Think your favorite model won't work? **Think again!** `cwk` is built to be compatible with **any** (yes, ANY!) OpenAI-compatible API endpoint on the planet.
10
+
11
+ Whether you're running local models via Ollama, using specialized providers, or tapping into the world's most powerful LLMs via **OpenRouter**, `cwk` has you covered.
12
+
13
+ ### 🌟 Full Gemini Support
14
+ Love Google's Gemini models? We do too. `cwk` features a specialized handler to preserve the high-density analytical capabilities of the Gemini suite, ensuring you get the best out of **Gemini 3.1 Pro** and **Flash**.
15
+
16
+ ---
17
+
18
+ ## πŸ› οΈ Rapid Setup (OpenRouter Example)
19
+
20
+ Get up and running in seconds. Just point `cwk` to your provider in your `~/.env` file:
21
+
22
+ ```env
23
+ # Example using OpenRouter to access Gemini 3.1 Pro
24
+ CWK_MODEL_NAME=google/gemini-3.1-pro
25
+ CWK_MODEL_URL=https://openrouter.ai/api/v1
26
+ CWK_MODEL_API_KEY=your_openrouter_key
27
+ CWK_MODEL_TYPE=openai
28
+ ```
29
+
30
+ ---
31
+
32
+ ## ⚑ Real-World Usage
33
+
34
+ `cwk` doesn't just "chat"β€”it **investigates**. It uses a suite of built-in tools to map your project, search for patterns, and read files before giving you a hard-hitting, plain-text technical answer.
35
+
36
+ ### πŸ” Explore your codebase
37
+ ```bash
38
+ cwk "Where is the authentication logic handled?"
39
+ ```
40
+ *`cwk` will automatically list directories, find relevant files, and peek at the code to give you a precise summary.*
41
+
42
+ ### πŸ› οΈ Debug like a pro
43
+ ```bash
44
+ cwk "Find all 'FIXME' tags in src/ and tell me which one is most critical"
45
+ ```
46
+
47
+ ### 🧠 Instant Documentation
48
+ ```bash
49
+ cwk "Explain the data flow in the engine/ models"
50
+ ```
51
+
52
+ ---
53
+
54
+ ## ✨ Features that Matter
55
+
56
+ - **Zero-Whitespace UI**: High-density terminal output designed for professionals. No fluff, no headers, just data.
57
+ - **Interactive Feedback**: The AI can now ask you clarifying questions via the `askUser` tool when it needs more context.
58
+ - **Smart Discovery**: Built-in `searchText`, `findFile`, and `projectTree` tools that respect your `.gitignore`.
59
+ - **Surgical I/O**: Read entire files or specific line ranges (`readFileChunk`) with automatic binary detection.
60
+ - **Piping Support**: Pipe logs or diffs directly into `cwk` for instant analysis.
61
+
62
+ ## πŸ“¦ Installation
63
+
64
+ ```bash
65
+ npm install -g cowork-cli
66
+ ```
67
+
68
+ ## ⌨️ Commands
69
+
70
+ | Command | Description |
71
+ | :--- | :--- |
72
+ | `cwk "query"` | Run a one-shot analysis on your codebase. |
73
+ | `cwk -v`, `--version` | Display the current version of `cwk`. |
74
+ | `cwk --help` | Show the minimalist help menu. |
75
+
76
+ ---
77
+
78
+ *β€œcwk... how does this work again?”*
package/bin/cli.js ADDED
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * @file cli.js
5
+ * @description Executable entry point for the cwk CLI tool.
6
+ * Handles top-level error boundaries and passes execution to the main application logic.
7
+ */
8
+
9
+ import main from "../src/main.js";
10
+ import { logger } from "../src/utils/logger.js";
11
+
12
+ // Catch unhandled promise rejections
13
+ process.on('unhandledRejection', (reason) => {
14
+ process.stdout.write('\x1b[?25h'); // Restore cursor
15
+ logger.error(`[Fatal] Unhandled Rejection: ${reason instanceof Error ? reason.message : reason}`);
16
+ process.exitCode = 1;
17
+ });
18
+
19
+ // Catch uncaught exceptions
20
+ process.on('uncaughtException', (err) => {
21
+ process.stdout.write('\x1b[?25h'); // Restore cursor
22
+ logger.error(`[Fatal] Uncaught Exception: ${err.message}`);
23
+ process.exitCode = 1;
24
+ });
25
+
26
+ // Graceful exit on interrupt
27
+ process.on('SIGINT', () => {
28
+ process.stdout.write('\x1b[?25h'); // Restore cursor
29
+ logger.secondary('Process interrupted by user.');
30
+ process.exit(130);
31
+ });
32
+
33
+ async function run() {
34
+ try {
35
+ // Pass command line arguments (excluding 'node' and the script path) to main
36
+ await main(process.argv.slice(2));
37
+ } catch (err) {
38
+ logger.error(`[Error]: ${err.message}`);
39
+ process.exitCode = 1;
40
+ }
41
+ }
42
+
43
+ run();
package/package.json CHANGED
@@ -1,10 +1,38 @@
1
1
  {
2
2
  "name": "cowork-cli",
3
- "version": "0.0.1",
4
- "description": "Cowork CLI",
5
- "type": "module",
3
+ "version": "0.2.8",
4
+ "description": "work with cowork",
6
5
  "bin": {
7
- "cwk": "index.js"
6
+ "cwk": "bin/cli.js"
7
+ },
8
+ "files": [
9
+ "bin/",
10
+ "src/",
11
+ "README.md",
12
+ "package.json"
13
+ ],
14
+ "keywords": [
15
+ "cli",
16
+ "ai"
17
+ ],
18
+ "homepage": "https://github.com/sapirrior/cowork-cli#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/sapirrior/cowork-cli/issues"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/sapirrior/cowork-cli.git"
25
+ },
26
+ "license": "MIT",
27
+ "author": "nolan stark",
28
+ "type": "module",
29
+ "main": "./src/main.js",
30
+ "scripts": {
31
+ "test": "echo \"Error: no test specified\" && exit 1"
8
32
  },
9
- "license": "MIT"
10
- }
33
+ "dependencies": {
34
+ "dotenv": "^17.4.2",
35
+ "ipaddr.js": "^2.4.0",
36
+ "openai": "^6.38.0"
37
+ }
38
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "accents": {
3
+ "orangex": "#D97757",
4
+ "greyx": "#808080",
5
+ "resetx": "#FFFFFF"
6
+ },
7
+ "systemPrompt": "You are a concise Developer Analyst. Use available tools proactively to investigate and process the user query. Provide a direct answer based on your findings. ENVIRONMENT: Terminal. STRICT RULES: 1. NO conversational filler or pleasantries. 2. NO Markdown formatting (do not use asterisks, backticks, or hashes). 3. NO XML or HTML tags. 4. Output ONLY structured, concise plain text. 5. Use simple spacing and indentation for structure. CWD: ${folder}. Year: ${year}."
8
+ }
@@ -0,0 +1,26 @@
1
+ import { OpenAI } from 'openai';
2
+ import { loadConfig, validateConfig } from '../utils/configManager.js';
3
+ import { logger } from '../utils/logger.js';
4
+
5
+ /**
6
+ * Initializes and returns an OpenAI client instance.
7
+ * @returns {OpenAI} An instance of the OpenAI client.
8
+ */
9
+ function clientLoader() {
10
+ const config = loadConfig();
11
+
12
+ if (!validateConfig(config)) {
13
+ throw new Error("Configuration missing or invalid. Please configure your ~/.env file (run 'btw --help' for details).");
14
+ }
15
+
16
+ // Normalize baseURL: remove trailing slashes as the SDK appends paths starting with /
17
+ const baseURL = config.model_url.replace(/\/+$/, '');
18
+
19
+ return new OpenAI({
20
+ apiKey: config.model_api_key,
21
+ baseURL: baseURL,
22
+ timeout: 60000 // 60 seconds timeout
23
+ });
24
+ }
25
+
26
+ export default clientLoader;
@@ -0,0 +1,232 @@
1
+ import { toolDefinitions, dispatchTool } from '../tools/index.js';
2
+ import { logger } from '../../utils/logger.js';
3
+ import { spinner } from '../../utils/ui.js';
4
+ import { outputFormatted } from '../../utils/outputFormatter.js';
5
+
6
+ /**
7
+ * Base class for AI model interaction handlers.
8
+ * Encapsulates message history, API calling with retries, and robust tool execution.
9
+ */
10
+ export default class BaseModel {
11
+ /**
12
+ * @param {import('openai').OpenAI} client Initialized OpenAI client.
13
+ * @param {string} model Model identifier.
14
+ */
15
+ constructor(client, model) {
16
+ this.client = client;
17
+ this.model = model;
18
+ this.messages = [];
19
+ this.maxTurns = 15; // Safeguard against infinite tool-calling loops
20
+ this.lastRequestTime = 0; // For proactive throttling
21
+ }
22
+
23
+ /**
24
+ * Adds a message to the conversation history.
25
+ * @param {string} role 'user', 'assistant', 'system', or 'tool'.
26
+ * @param {string} content Message content.
27
+ * @param {Object} extra Additional fields (e.g., tool_call_id).
28
+ */
29
+ addMessage(role, content, extra = {}) {
30
+ this.messages.push({ role, content, ...extra });
31
+ }
32
+
33
+ /**
34
+ * Main execution loop for the model query.
35
+ * @param {string} query The user input.
36
+ * @param {string|null} systemPrompt Optional system-level instructions.
37
+ */
38
+ async run(query, systemPrompt = null) {
39
+ if (systemPrompt) {
40
+ this.addMessage('system', systemPrompt);
41
+ }
42
+ this.addMessage('user', query);
43
+
44
+ let turn = 0;
45
+ while (turn < this.maxTurns) {
46
+ turn++;
47
+
48
+ try {
49
+ spinner.start("Thinking");
50
+ const response = await this._getCompletion();
51
+ spinner.stop();
52
+
53
+ const message = response.choices[0].message;
54
+
55
+ // Let subclasses handle/format the response (e.g. Gemini thought signatures)
56
+ await this.handleResponse(message);
57
+
58
+ // Exit loop if no tool calls are requested (Final Answer)
59
+ if (!message.tool_calls || message.tool_calls.length === 0) {
60
+ if (message.content) {
61
+ const formatted = outputFormatted(message.content);
62
+ process.stdout.write(formatted);
63
+ if (!formatted.endsWith('\n')) {
64
+ process.stdout.write("\n");
65
+ }
66
+ }
67
+ return;
68
+ }
69
+
70
+ // Execute and record tool calls
71
+ await this._processToolCalls(message.tool_calls);
72
+
73
+ } catch (err) {
74
+ spinner.stop();
75
+ // Deep error logging for API failures
76
+ if (err.status) {
77
+ logger.error(`[API Error] Status: ${err.status}`);
78
+ if (err.response?.data) {
79
+ logger.error(`[API Error] Details: ${JSON.stringify(err.response.data)}`);
80
+ }
81
+ } else if (err.name === 'AbortError' || err.message.includes('timeout')) {
82
+ logger.error(`[Timeout Error]: The AI took too long to respond (60s).`);
83
+ } else {
84
+ logger.error(`[Error]: ${err.message}`);
85
+ }
86
+ throw err;
87
+ }
88
+ }
89
+
90
+ logger.secondary("[System]: Reached maximum conversation turns. Ending session.");
91
+ }
92
+
93
+ /**
94
+ * Private method to fetch completion with exponential backoff for transient errors.
95
+ * @private
96
+ */
97
+ async _getCompletion() {
98
+ let retries = 0;
99
+ const maxRetries = 5;
100
+ const minDelayBetweenRequests = 1000; // 1s proactive throttle
101
+
102
+ while (retries <= maxRetries) {
103
+ try {
104
+ // 1. Proactive Throttling
105
+ const now = Date.now();
106
+ const timeSinceLastRequest = now - this.lastRequestTime;
107
+ if (timeSinceLastRequest < minDelayBetweenRequests) {
108
+ const waitTime = minDelayBetweenRequests - timeSinceLastRequest;
109
+ await new Promise(resolve => setTimeout(resolve, waitTime));
110
+ }
111
+
112
+ const response = await this.client.chat.completions.create({
113
+ model: this.model,
114
+ messages: this.messages,
115
+ tools: toolDefinitions,
116
+ tool_choice: "auto"
117
+ });
118
+
119
+ // Update last request time on successful response
120
+ this.lastRequestTime = Date.now();
121
+ return response;
122
+
123
+ } catch (err) {
124
+ const isTransient = [429, 500, 502, 503, 504].includes(err.status);
125
+ if (isTransient && retries < maxRetries) {
126
+ retries++;
127
+
128
+ let delay = Math.pow(2, retries) * 1000;
129
+
130
+ // 2. Adhere to Retry-After header if present
131
+ const retryAfter = err.headers?.['retry-after'];
132
+ if (retryAfter) {
133
+ const seconds = parseInt(retryAfter);
134
+ if (!isNaN(seconds)) {
135
+ delay = seconds * 1000;
136
+ } else {
137
+ // Handle Date string
138
+ const retryDate = new Date(retryAfter);
139
+ if (!isNaN(retryDate.getTime())) {
140
+ delay = Math.max(0, retryDate.getTime() - Date.now());
141
+ }
142
+ }
143
+ }
144
+
145
+ // 3. Apply Jitter (randomness to prevent thundering herd)
146
+ const jitter = Math.random() * 500;
147
+ const finalDelay = delay + jitter;
148
+
149
+ spinner.update(`Error ${err.status}. Retrying in ${(finalDelay/1000).toFixed(1)}s`);
150
+ await new Promise(resolve => setTimeout(resolve, finalDelay));
151
+ spinner.update("Thinking");
152
+ continue;
153
+ }
154
+ throw err;
155
+ }
156
+ }
157
+ }
158
+
159
+ /**
160
+ * Private method to handle tool calls with deep error recovery.
161
+ * @private
162
+ */
163
+ async _processToolCalls(toolCalls) {
164
+ for (const toolCall of toolCalls) {
165
+ const name = toolCall.function.name;
166
+ let args;
167
+
168
+ try {
169
+ // 1. Robust Argument Parsing
170
+ try {
171
+ args = JSON.parse(toolCall.function.arguments);
172
+ } catch (parseErr) {
173
+ throw new Error(`Invalid JSON arguments provided for tool '${name}': ${parseErr.message}`);
174
+ }
175
+
176
+ // Semantic Tool Logging
177
+ const toolLabels = {
178
+ readFile: 'reading',
179
+ readDir: 'listing',
180
+ projectTree: 'mapping',
181
+ readFileChunk: 'peeking',
182
+ searchText: 'searching',
183
+ webFetch: 'fetching',
184
+ findFile: 'finding',
185
+ findDir: 'finding',
186
+ listTools: 'listing'
187
+ };
188
+
189
+ const label = toolLabels[name] || name;
190
+ let displayArg = "";
191
+
192
+ if (name === 'searchText') displayArg = `'${args.pattern}' in ${args.path}`;
193
+ else if (name === 'findFile' || name === 'findDir') displayArg = `'${args.pattern}' in ${args.dirPath || '.'}`;
194
+ else if (name === 'readFileChunk') displayArg = `${args.filePath} [L${args.startLine}-${args.endLine}]`;
195
+ else displayArg = args.url || args.filePath || args.dirPath || args.path || args.pattern || JSON.stringify(args);
196
+
197
+ const displayStr = displayArg.length > 60 ? displayArg.slice(0, 57) + "..." : displayArg;
198
+
199
+ // NOTE: 'askUser' is interactive and handles its own semantic logging ([asking])
200
+ // to maintain terminal focus and avoid conflicts with the global spinner.
201
+ if (name !== 'askUser') {
202
+ logger.secondary(`[${label}] ${displayStr}`);
203
+ spinner.start(`[${label}] working`);
204
+ }
205
+
206
+ const result = await dispatchTool(name, args);
207
+
208
+ if (name !== 'askUser') {
209
+ spinner.stop();
210
+ }
211
+
212
+ this.addMessage('tool', result, { tool_call_id: toolCall.id });
213
+
214
+ } catch (err) {
215
+ spinner.stop();
216
+ const errorMsg = err.message;
217
+ logger.error(`[FAILED] ${name}: ${errorMsg}`);
218
+
219
+ // 3. Model Recovery: Feed the error back to the model
220
+ this.addMessage('tool', `Error: ${errorMsg}`, { tool_call_id: toolCall.id });
221
+ }
222
+ }
223
+ }
224
+
225
+ /**
226
+ * Overridden by subclasses to handle provider-specific message formatting.
227
+ * @param {Object} message The message object from the API.
228
+ */
229
+ async handleResponse(message) {
230
+ this.messages.push(message);
231
+ }
232
+ }
@@ -0,0 +1,8 @@
1
+ import BaseModel from './BaseModel.js';
2
+
3
+ /**
4
+ * Standard OpenAI-compatible model handler.
5
+ */
6
+ export default class DefaultModel extends BaseModel {
7
+ // Uses default implementation from BaseModel
8
+ }
@@ -0,0 +1,20 @@
1
+ import BaseModel from './BaseModel.js';
2
+
3
+ /**
4
+ * Gemini-specific model handler.
5
+ * Handles preservation of 'thought_signature' in tool calls.
6
+ */
7
+ export default class GeminiModel extends BaseModel {
8
+ /**
9
+ * Gemini requires the 'thought_signature' and potentially other metadata
10
+ * to be passed back in the conversation history for tool-calling turns.
11
+ */
12
+ async handleResponse(message) {
13
+ // We push the full message object to ensure all provider-specific
14
+ // fields (like thought_signature) are preserved in the history.
15
+ this.messages.push(message);
16
+ }
17
+
18
+ // We might need to override run to handle the 'extra_body' if the SDK is too strict,
19
+ // but let's try the simple history preservation first.
20
+ }
@@ -0,0 +1,51 @@
1
+ import fs from 'fs';
2
+ import path from 'path';
3
+ import { fileURLToPath } from 'url';
4
+ import { logger } from '../utils/logger.js';
5
+ import DefaultModel from './models/default.js';
6
+ import GeminiModel from './models/gemini.js';
7
+
8
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
9
+ const CONFIG_PATH = path.join(__dirname, '../configs/config.json');
10
+
11
+ /**
12
+ * Executes a chat completion query using the appropriate model handler.
13
+ * @param {import('openai').OpenAI} client The initialized OpenAI client.
14
+ * @param {Object} config The user configuration (from .env).
15
+ * @param {string} query The user query string.
16
+ */
17
+ export default async function runQuery(client, config, query) {
18
+ if (!query) {
19
+ logger.error("Error: No query provided.");
20
+ return;
21
+ }
22
+
23
+ try {
24
+ // 1. Load and format system prompt from internal config
25
+ let systemPrompt = null;
26
+ try {
27
+ const internalConfig = JSON.parse(fs.readFileSync(CONFIG_PATH, 'utf8'));
28
+ if (internalConfig.systemPrompt) {
29
+ systemPrompt = internalConfig.systemPrompt
30
+ .replace('${folder}', process.cwd())
31
+ .replace('${year}', new Date().getFullYear());
32
+ }
33
+ } catch (e) {
34
+ // Fallback if config is missing - proceed without system prompt
35
+ }
36
+
37
+ const isGemini = config.model_type.toLowerCase() === 'gemini';
38
+ const modelHandler = isGemini
39
+ ? new GeminiModel(client, config.model_name)
40
+ : new DefaultModel(client, config.model_name);
41
+
42
+ await modelHandler.run(query, systemPrompt);
43
+ } catch (err) {
44
+ logger.error(`Error during AI execution: ${err.message}`);
45
+ if (err.status === 401) {
46
+ logger.secondary("Tip: Check if your API key is correct in your ~/.env file.");
47
+ } else if (err.status === 404) {
48
+ logger.secondary("Tip: The specified model or base URL might be incorrect.");
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,62 @@
1
+ import readlinePromises from 'readline/promises';
2
+ import readline from 'readline';
3
+ import { stdin as input, stdout as output } from 'process';
4
+ import { formatSecondary } from '../../utils/logger.js';
5
+
6
+ /**
7
+ * Implementation of the askUser tool.
8
+ * Asks the user a single question via the terminal.
9
+ *
10
+ * @param {Object} args
11
+ * @param {string} args.question The question to ask the user.
12
+ * @returns {Promise<string>} JSON string with answer or error.
13
+ */
14
+ export default async function askUser({ question }) {
15
+ // 1. Input Validation
16
+ if (!question) {
17
+ return "Error: 'question' parameter is required.";
18
+ }
19
+
20
+ if (typeof question !== 'string' || question.trim().length === 0) {
21
+ return "Error: 'question' must be a non-empty string.";
22
+ }
23
+
24
+ // 2. TTY Check: Ensure we have a terminal to interact with
25
+ if (!input.isTTY) {
26
+ return "Error: stdin is not a TTY. Cannot prompt user in non-interactive environments.";
27
+ }
28
+
29
+ const rl = readlinePromises.createInterface({ input, output });
30
+
31
+ return new Promise((resolve) => {
32
+ // 3. Graceful Signal Handling
33
+ rl.on('SIGINT', () => {
34
+ rl.close();
35
+ process.stdout.write(formatSecondary(` cancelled\n`));
36
+ resolve(JSON.stringify({ error: "user cancelled the request", dismissed: true }));
37
+ });
38
+
39
+ const doAsk = async () => {
40
+ try {
41
+ const answer = await rl.question(formatSecondary(`[asking] ${question} -> `));
42
+ const trimmed = answer.trim();
43
+
44
+ if (trimmed.length === 0) {
45
+ // Move cursor up and clear line reliably using Node's readline methods
46
+ readline.moveCursor(process.stdout, 0, -1);
47
+ readline.clearLine(process.stdout, 0);
48
+ readline.cursorTo(process.stdout, 0);
49
+ doAsk();
50
+ } else {
51
+ rl.close();
52
+ resolve(JSON.stringify({ answer: trimmed }));
53
+ }
54
+ } catch (err) {
55
+ rl.close();
56
+ resolve(JSON.stringify({ error: `System Error: ${err.message}`, dismissed: true }));
57
+ }
58
+ };
59
+
60
+ doAsk();
61
+ });
62
+ }
@@ -0,0 +1,73 @@
1
+ import fs from 'fs/promises';
2
+ import path from 'path';
3
+ import { getIgnorePatterns, shouldIgnore } from '../../utils/fsUtils.js';
4
+
5
+ /**
6
+ * findDir tool: Finds directories by name using regex.
7
+ * @param {Object} args
8
+ * @param {string} args.pattern Regex pattern to match directory names.
9
+ * @param {string} args.dirPath Root directory to search (default: current directory).
10
+ * @param {boolean} args.recursive Whether to search subdirectories (default: true).
11
+ * @param {number} args.limit Maximum number of results (default: 15, max: 15).
12
+ */
13
+ export default async function findDir({ pattern, dirPath = '.', recursive = true, limit = 15 }) {
14
+ try {
15
+ if (!pattern) return "Error: Search pattern cannot be empty.";
16
+
17
+ // Enforce max limit of 15
18
+ const finalLimit = Math.min(limit, 15);
19
+
20
+ let regex;
21
+ try {
22
+ regex = new RegExp(pattern, 'i');
23
+ } catch (e) {
24
+ return `Error: Invalid regex pattern '${pattern}': ${e.message}`;
25
+ }
26
+
27
+ const ignoreList = await getIgnorePatterns();
28
+ const results = [];
29
+
30
+ async function walk(currentPath) {
31
+ if (results.length >= finalLimit) return;
32
+
33
+ let items;
34
+ try {
35
+ items = await fs.readdir(currentPath, { withFileTypes: true });
36
+ } catch (err) {
37
+ return; // Skip unreadable directories
38
+ }
39
+
40
+ for (const item of items) {
41
+ if (results.length >= finalLimit) break;
42
+ if (shouldIgnore(item.name, ignoreList)) continue;
43
+
44
+ const fullPath = path.join(currentPath, item.name);
45
+
46
+ if (item.isDirectory()) {
47
+ if (regex.test(item.name)) {
48
+ results.push(path.relative(process.cwd(), fullPath));
49
+ }
50
+
51
+ if (recursive) {
52
+ await walk(fullPath);
53
+ }
54
+ }
55
+ }
56
+ }
57
+
58
+ await walk(dirPath);
59
+
60
+ if (results.length === 0) {
61
+ return `No directories found matching "${pattern}" in "${dirPath}".`;
62
+ }
63
+
64
+ let output = results.join('\n');
65
+ if (results.length >= finalLimit) {
66
+ output += `\n[Warning: Truncated at ${finalLimit} matches]`;
67
+ }
68
+ return output;
69
+
70
+ } catch (err) {
71
+ return `Error searching for directories: ${err.message}`;
72
+ }
73
+ }