fluxflow-cli 2.2.10 → 2.3.1

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.
Files changed (3) hide show
  1. package/TOOLS.md +4 -1
  2. package/dist/fluxflow.js +235 -228
  3. package/package.json +3 -3
package/TOOLS.md CHANGED
@@ -8,13 +8,13 @@ Flux Flow provides a robust set of tools that allow the AI to interact with the
8
8
  | :--- | :---: | :---: |
9
9
  | **Web Search** | ✅ | ✅ |
10
10
  | **Web Scrape** | ✅ | ✅ |
11
- | **Generate Image** | ✅ | ❌ |
12
11
  | **Write PDF** | ✅ | ❌ |
13
12
  | **Write DOCX** | ✅ | ❌ |
14
13
  | **View/Read Files** | ✅ | ❌ |
15
14
  | **Write/Update Files** | ✅ | ❌ |
16
15
  | **Execute Commands** | ✅ | ❌ |
17
16
  | **Search Keyword** | ✅ | ❌ |
17
+ | **File Map** | ✅ | ❌ |
18
18
 
19
19
  ---
20
20
 
@@ -39,6 +39,9 @@ Flux Flow provides a robust set of tools that allow the AI to interact with the
39
39
  - **`ViewFile`**: Reads the content of a file.
40
40
  - **Native Multimodality**: Supports analyzing images (JPG, PNG, WEBP) and PDF documents. The tool automatically detects binary formats and encodes them for AI analysis.
41
41
  - **Text Reading**: Supports specific line ranges (`start_line`, `end_line`) to manage context size efficiently.
42
+ - **`FileMap`**: Generates a high-level structural map of a code file using Tree-Sitter.
43
+ - **Structural Insight**: Identifies classes, functions, methods, and control flow blocks without reading the entire file content.
44
+ - **Multi-Language**: Supports JS, TS, TSX, Python, C, C++, Java, and HTML.
42
45
  - **`SearchKeyword`**: Performs a global project search for a specific string or keyword. Returns file paths and line numbers where matches are found, making it essential for navigation and impact analysis.
43
46
 
44
47
  ### ✍️ Code Editing