fluxflow-cli 3.15.2 → 3.16.0
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/TOOLS.md +1 -4
- package/dist/fluxflow.js +784 -207
- package/model_config.json +1 -1
- package/package.json +74 -73
package/TOOLS.md
CHANGED
|
@@ -12,7 +12,6 @@ Flux Flow provides a robust set of tools that allow the AI to interact with the
|
|
|
12
12
|
| **File System (Read/Write)** | ✅ | ❌ |
|
|
13
13
|
| **Terminal Execution** | ✅ | ❌ |
|
|
14
14
|
| **Search Keyword** | ✅ | ❌ |
|
|
15
|
-
| **File Map** | ✅ | ❌ |
|
|
16
15
|
| **Todo (Planning)** | ✅ | ❌ |
|
|
17
16
|
| **Multi Agent (sync/async)** | ✅ | ❌ |
|
|
18
17
|
| **EmergencyRollback\*** | ✅ | ❌ |
|
|
@@ -55,9 +54,6 @@ FluxFlow uses a transparent, string-based protocol for tool dispatching:
|
|
|
55
54
|
- **Purpose**: Reads file content with support for line ranges.
|
|
56
55
|
- **Multimodal**: Supports images and documents.
|
|
57
56
|
|
|
58
|
-
### `FileMap`
|
|
59
|
-
- **Purpose**: Shows file structure, dependencies, functions, and variable maps. More token-efficient than ReadFile.
|
|
60
|
-
|
|
61
57
|
### `ReadFolder`
|
|
62
58
|
- **Purpose**: Provides detailed directory statistics.
|
|
63
59
|
|
|
@@ -71,6 +67,7 @@ FluxFlow uses a transparent, string-based protocol for tool dispatching:
|
|
|
71
67
|
|
|
72
68
|
### `SearchKeyword`
|
|
73
69
|
- **Purpose**: Global project search for definitions or logic.
|
|
70
|
+
- **Path Support**: Accepts direct files (`path="src/app.js"`), directories (`path="src/tools"`), or glob patterns (`path="src/**/*.js"` or `path="src/*.{js,ts}"`).
|
|
74
71
|
|
|
75
72
|
### `Run` (exec_command)
|
|
76
73
|
- **Purpose**: Runs shell commands (PowerShell/CMD on Windows, Bash on Unix).
|