orquesta-cli 0.2.98 → 0.2.100

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.
@@ -5,7 +5,7 @@ export const AVAILABLE_TOOLS = `
5
5
  - **create_file**: Create a NEW file (fails if file exists)
6
6
  - **edit_file**: Edit an EXISTING file by replacing specific lines
7
7
  - **list_files**: List directory contents
8
- - **find_files**: Search for files by pattern
8
+ - **find_files**: Search for files by pattern — ALWAYS use this to locate files. NEVER run "find /" or scan from the filesystem root via bash; it is slow, noisy, and crosses out of the project. Search within the project (relative paths / cwd) only.
9
9
  - **search_content**: Search for text patterns in files (grep-like)
10
10
  - **bash**: Execute shell commands (git, npm, etc.)
11
11
  `.trim();
@@ -16,7 +16,7 @@ export const AVAILABLE_TOOLS_WITH_TODO = `
16
16
  - **create_file**: Create a NEW file (fails if file exists)
17
17
  - **edit_file**: Edit an EXISTING file by replacing specific lines
18
18
  - **list_files**: List directory contents
19
- - **find_files**: Search for files by pattern
19
+ - **find_files**: Search for files by pattern — ALWAYS use this to locate files. NEVER run "find /" or scan from the filesystem root via bash; it is slow, noisy, and crosses out of the project. Search within the project (relative paths / cwd) only.
20
20
  - **search_content**: Search for text patterns in files (grep-like)
21
21
  - **bash**: Execute shell commands (git, npm, etc.)
22
22
  - **tell_to_user**: Send status updates to the user
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.98",
3
+ "version": "0.2.100",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",