tree-sitter-analyzer 1.2.3__py3-none-any.whl → 1.2.4__py3-none-any.whl
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.
Potentially problematic release.
This version of tree-sitter-analyzer might be problematic. Click here for more details.
- tree_sitter_analyzer/languages/java_plugin.py +34 -28
- tree_sitter_analyzer/mcp/server.py +23 -1
- tree_sitter_analyzer/mcp/tools/fd_rg_utils.py +550 -0
- tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py +436 -0
- tree_sitter_analyzer/mcp/tools/list_files_tool.py +269 -0
- tree_sitter_analyzer/mcp/tools/search_content_tool.py +334 -0
- {tree_sitter_analyzer-1.2.3.dist-info → tree_sitter_analyzer-1.2.4.dist-info}/METADATA +232 -23
- {tree_sitter_analyzer-1.2.3.dist-info → tree_sitter_analyzer-1.2.4.dist-info}/RECORD +10 -6
- {tree_sitter_analyzer-1.2.3.dist-info → tree_sitter_analyzer-1.2.4.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-1.2.3.dist-info → tree_sitter_analyzer-1.2.4.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Extensible multi-language code analyzer framework using Tree-sitter with dynamic plugin architecture
|
|
5
5
|
Project-URL: Homepage, https://github.com/aimasteracc/tree-sitter-analyzer
|
|
6
6
|
Project-URL: Documentation, https://github.com/aimasteracc/tree-sitter-analyzer#readme
|
|
@@ -163,11 +163,11 @@ Description-Content-Type: text/markdown
|
|
|
163
163
|
|
|
164
164
|
[](https://python.org)
|
|
165
165
|
[](LICENSE)
|
|
166
|
-
[](#quality-assurance)
|
|
167
|
+
[](#quality-assurance)
|
|
168
168
|
[](#quality-assurance)
|
|
169
169
|
[](https://pypi.org/project/tree-sitter-analyzer/)
|
|
170
|
-
[](https://github.com/aimasteracc/tree-sitter-analyzer/releases)
|
|
171
171
|
[](https://github.com/aimasteracc/tree-sitter-analyzer)
|
|
172
172
|
|
|
173
173
|
## 🚀 Break LLM Token Limits, Let AI Understand Code Files of Any Size
|
|
@@ -220,10 +220,12 @@ Total Elements: 85 | Complexity: 348 (avg: 5.27, max: 15)
|
|
|
220
220
|
|------------|------|------------|------------|--------------|-------------|
|
|
221
221
|
| BigService | class | public | 17-1419 | 66 | 9 |
|
|
222
222
|
|
|
223
|
-
### 🔄 **AI Assistant
|
|
224
|
-
- **
|
|
225
|
-
- **
|
|
226
|
-
- **
|
|
223
|
+
### 🔄 **AI Assistant SMART Workflow**
|
|
224
|
+
- **S**: `set_project_path` - Setup project root directory
|
|
225
|
+
- **M**: `list_files`, `search_content`, `find_and_grep` - Map target files with precision
|
|
226
|
+
- **A**: `analyze_code_structure` - Analyze core structure with unified elements
|
|
227
|
+
- **R**: `extract_code_section` - Retrieve essential code snippets on demand
|
|
228
|
+
- **T**: Advanced dependency tracing (when needed)
|
|
227
229
|
|
|
228
230
|
---
|
|
229
231
|
|
|
@@ -231,13 +233,31 @@ Total Elements: 85 | Complexity: 348 (avg: 5.27, max: 15)
|
|
|
231
233
|
|
|
232
234
|
### 🤖 AI Users (Claude Desktop, Cursor, etc.)
|
|
233
235
|
|
|
236
|
+
**📋 0. Prerequisites (for Advanced MCP Tools)**
|
|
237
|
+
For advanced file search and content analysis features, install these tools first:
|
|
238
|
+
```bash
|
|
239
|
+
# Install fd and ripgrep (see Prerequisites section for detailed instructions)
|
|
240
|
+
# macOS
|
|
241
|
+
brew install fd ripgrep
|
|
242
|
+
|
|
243
|
+
# Windows (using winget - recommended)
|
|
244
|
+
winget install sharkdp.fd BurntSushi.ripgrep.MSVC
|
|
245
|
+
|
|
246
|
+
# Windows (alternative methods)
|
|
247
|
+
# choco install fd ripgrep
|
|
248
|
+
# scoop install fd ripgrep
|
|
249
|
+
|
|
250
|
+
# Ubuntu/Debian
|
|
251
|
+
sudo apt install fd-find ripgrep
|
|
252
|
+
```
|
|
253
|
+
|
|
234
254
|
**📦 1. One-click Installation**
|
|
235
255
|
```bash
|
|
236
256
|
# macOS/Linux
|
|
237
257
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
238
258
|
|
|
239
259
|
# Windows PowerShell
|
|
240
|
-
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
260
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
241
261
|
```
|
|
242
262
|
|
|
243
263
|
**⚙️ 2. AI Client Configuration**
|
|
@@ -330,19 +350,25 @@ uv run python -m tree_sitter_analyzer examples/BigService.java --partial-read --
|
|
|
330
350
|
|
|
331
351
|
## 📖 Practical Usage Examples
|
|
332
352
|
|
|
333
|
-
### 💬 AI IDE Prompts (
|
|
353
|
+
### 💬 AI IDE Prompts (SMART Analysis Workflow)
|
|
334
354
|
|
|
335
355
|
> **✅ Test Verification Status:** All prompts below have been tested and verified in real environments, ensuring 100% availability
|
|
336
356
|
>
|
|
357
|
+
> **🎯 SMART Analysis Workflow:**
|
|
358
|
+
> - **S** - Setup project (set_project_path)
|
|
359
|
+
> - **M** - Map target files (precision pattern matching)
|
|
360
|
+
> - **A** - Analyze core structure (analyze_code_structure)
|
|
361
|
+
> - **R** - Retrieve essential code (extract_code_section)
|
|
362
|
+
> - **T** - Trace dependencies (when needed)
|
|
363
|
+
>
|
|
337
364
|
> **⚠️ Important Notes:**
|
|
338
|
-
> -
|
|
365
|
+
> - Follow SMART workflow sequence for optimal results
|
|
339
366
|
> - For files within the project, use **relative paths** (e.g., `examples/BigService.java`)
|
|
340
367
|
> - For files outside the project, use **absolute paths** (e.g., `C:\git-public\tree-sitter-analyzer\examples\BigService.java`)
|
|
341
368
|
> - All tools support both Windows and Unix style paths
|
|
342
369
|
> - Project path should point to your code repository root directory
|
|
343
|
-
> - You can set project path in MCP configuration or set it dynamically
|
|
344
370
|
|
|
345
|
-
#### 🔧 **
|
|
371
|
+
#### 🔧 **S - Setup Project (Required First Step)**
|
|
346
372
|
|
|
347
373
|
**Option 1: Configure in MCP Settings**
|
|
348
374
|
```json
|
|
@@ -384,7 +410,68 @@ Project path: C:\git-public\tree-sitter-analyzer
|
|
|
384
410
|
- Example: `examples/BigService.java` instead of full paths
|
|
385
411
|
- Once project path is successfully set, all subsequent analysis commands will automatically use this root directory
|
|
386
412
|
|
|
387
|
-
####
|
|
413
|
+
#### 🗺️ **M - Map Target Files (Precision Pattern Matching)**
|
|
414
|
+
|
|
415
|
+
> **📋 Prerequisites:** This step requires `fd` and `ripgrep` tools to be installed. See [Prerequisites](#prerequisites) section for installation instructions.
|
|
416
|
+
|
|
417
|
+
**Smart File Discovery:**
|
|
418
|
+
```
|
|
419
|
+
Find all Python files in the project
|
|
420
|
+
```
|
|
421
|
+
|
|
422
|
+
```
|
|
423
|
+
List all Java files larger than 10KB
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
```
|
|
427
|
+
Find configuration files (*.json, *.yaml, *.toml) in the project
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
**Intelligent Content Search:**
|
|
431
|
+
```
|
|
432
|
+
Search for "def authenticate" in all Python files with context
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
```
|
|
436
|
+
Find all TODO comments in source files
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
```
|
|
440
|
+
Search for "class.*Service" patterns in all files, case insensitive
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
**Combined Discovery & Search:**
|
|
444
|
+
```
|
|
445
|
+
Find all Python files and search for "async def" functions
|
|
446
|
+
```
|
|
447
|
+
|
|
448
|
+
```
|
|
449
|
+
Search for "class.*Service" in all source files
|
|
450
|
+
```
|
|
451
|
+
|
|
452
|
+
**Return Format:**
|
|
453
|
+
```json
|
|
454
|
+
{
|
|
455
|
+
"success": true,
|
|
456
|
+
"results": [
|
|
457
|
+
{
|
|
458
|
+
"file": "tree_sitter_analyzer/core/query_service.py",
|
|
459
|
+
"line": 20,
|
|
460
|
+
"text": "class QueryService:",
|
|
461
|
+
"matches": [[0, 18]]
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
"count": 25,
|
|
465
|
+
"meta": {
|
|
466
|
+
"searched_file_count": 256,
|
|
467
|
+
"truncated": false,
|
|
468
|
+
"fd_elapsed_ms": 225,
|
|
469
|
+
"rg_elapsed_ms": 2969
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
```
|
|
473
|
+
|
|
474
|
+
#### 🔍 **A - Analyze Core Structure**
|
|
388
475
|
|
|
389
476
|
**Method 1: Explicit Analysis Request**
|
|
390
477
|
```
|
|
@@ -435,7 +522,7 @@ Please analyze this file: C:\git-public\tree-sitter-analyzer\examples\BigService
|
|
|
435
522
|
}
|
|
436
523
|
```
|
|
437
524
|
|
|
438
|
-
#### 📊 **
|
|
525
|
+
#### 📊 **R - Retrieve Essential Code**
|
|
439
526
|
|
|
440
527
|
**Method 1: Explicit Table Request**
|
|
441
528
|
```
|
|
@@ -464,7 +551,7 @@ Please generate a detailed structure table: C:\git-public\tree-sitter-analyzer\e
|
|
|
464
551
|
- Including class information, method list (with line numbers), field list
|
|
465
552
|
- Method signatures, visibility, line ranges, complexity, and other detailed information
|
|
466
553
|
|
|
467
|
-
#### ✂️ **
|
|
554
|
+
#### ✂️ **Precise Code Extraction**
|
|
468
555
|
|
|
469
556
|
**Method 1: Explicit Extraction Request**
|
|
470
557
|
```
|
|
@@ -503,7 +590,7 @@ Please extract code snippet: C:\git-public\tree-sitter-analyzer\examples\BigServ
|
|
|
503
590
|
}
|
|
504
591
|
```
|
|
505
592
|
|
|
506
|
-
####
|
|
593
|
+
#### 🔗 **T - Trace Dependencies (Advanced Analysis)**
|
|
507
594
|
|
|
508
595
|
**Error Handling Enhancement (v0.9.7):**
|
|
509
596
|
- Improved `@handle_mcp_errors` decorator with tool name recognition
|
|
@@ -545,13 +632,15 @@ Please help me find all public getter methods with no parameters: examples/BigSe
|
|
|
545
632
|
}
|
|
546
633
|
```
|
|
547
634
|
|
|
548
|
-
|
|
635
|
+
|
|
636
|
+
#### 💡 **SMART Workflow Best Practices**
|
|
549
637
|
- **Natural Language**: Tell AI directly in natural language what you want, no need to remember complex parameter formats
|
|
550
|
-
- **
|
|
638
|
+
- **Sequential Flow**: Follow S→M→A→R→T sequence for optimal analysis results
|
|
639
|
+
- **Path Processing**: After setting project path, relative paths automatically resolve to project root directory
|
|
551
640
|
- **Security Protection**: Tool automatically performs project boundary checks to ensure security
|
|
552
|
-
- **Workflow**: Recommended to use in order: Step 0 (set path) → Step 1 → 2 → 4 (query filter) → 3 (precise extraction)
|
|
553
641
|
- **Smart Understanding**: AI automatically understands your needs and calls appropriate tools
|
|
554
|
-
- **
|
|
642
|
+
- **Performance**: All MCP tools are optimized for speed with built-in timeouts and result limits
|
|
643
|
+
- **Dependency Tracing**: Use T step only when you need to understand complex relationships between code elements
|
|
555
644
|
|
|
556
645
|
### 🛠️ CLI Command Examples
|
|
557
646
|
|
|
@@ -657,6 +746,98 @@ Deep integration through MCP protocol:
|
|
|
657
746
|
- Roo Code
|
|
658
747
|
- Other MCP-compatible AI tools
|
|
659
748
|
|
|
749
|
+
### 🔍 **Advanced File Search & Content Analysis (v1.2.4+)**
|
|
750
|
+
Powerful file discovery and content search capabilities powered by fd and ripgrep:
|
|
751
|
+
|
|
752
|
+
#### **📋 Prerequisites**
|
|
753
|
+
To use the advanced MCP tools (ListFilesTool, SearchContentTool, FindAndGrepTool), you need to install the following command-line tools:
|
|
754
|
+
|
|
755
|
+
**Install fd (fast file finder):**
|
|
756
|
+
```bash
|
|
757
|
+
# macOS (using Homebrew)
|
|
758
|
+
brew install fd
|
|
759
|
+
|
|
760
|
+
# Windows (using winget - recommended)
|
|
761
|
+
winget install sharkdp.fd
|
|
762
|
+
|
|
763
|
+
# Windows (using Chocolatey)
|
|
764
|
+
choco install fd
|
|
765
|
+
|
|
766
|
+
# Windows (using Scoop)
|
|
767
|
+
scoop install fd
|
|
768
|
+
|
|
769
|
+
# Ubuntu/Debian
|
|
770
|
+
sudo apt install fd-find
|
|
771
|
+
|
|
772
|
+
# CentOS/RHEL/Fedora
|
|
773
|
+
sudo dnf install fd-find
|
|
774
|
+
|
|
775
|
+
# Arch Linux
|
|
776
|
+
sudo pacman -S fd
|
|
777
|
+
```
|
|
778
|
+
|
|
779
|
+
**Install ripgrep (fast text search):**
|
|
780
|
+
```bash
|
|
781
|
+
# macOS (using Homebrew)
|
|
782
|
+
brew install ripgrep
|
|
783
|
+
|
|
784
|
+
# Windows (using winget - recommended)
|
|
785
|
+
winget install BurntSushi.ripgrep.MSVC
|
|
786
|
+
|
|
787
|
+
# Windows (using Chocolatey)
|
|
788
|
+
choco install ripgrep
|
|
789
|
+
|
|
790
|
+
# Windows (using Scoop)
|
|
791
|
+
scoop install ripgrep
|
|
792
|
+
|
|
793
|
+
# Ubuntu/Debian
|
|
794
|
+
sudo apt install ripgrep
|
|
795
|
+
|
|
796
|
+
# CentOS/RHEL/Fedora
|
|
797
|
+
sudo dnf install ripgrep
|
|
798
|
+
|
|
799
|
+
# Arch Linux
|
|
800
|
+
sudo pacman -S ripgrep
|
|
801
|
+
```
|
|
802
|
+
|
|
803
|
+
**Verify Installation:**
|
|
804
|
+
```bash
|
|
805
|
+
# Check fd installation
|
|
806
|
+
fd --version
|
|
807
|
+
|
|
808
|
+
# Check ripgrep installation
|
|
809
|
+
rg --version
|
|
810
|
+
```
|
|
811
|
+
|
|
812
|
+
> **⚠️ Important:** Without these tools installed, the advanced MCP file search and content analysis features will not work. The basic MCP tools (analyze_code_structure, extract_code_section, etc.) will continue to work normally.
|
|
813
|
+
|
|
814
|
+
#### **🗂️ ListFilesTool - Smart File Discovery**
|
|
815
|
+
- **Advanced filtering**: File type, size, modification time, extension-based filtering
|
|
816
|
+
- **Pattern matching**: Glob patterns and regex support for flexible file discovery
|
|
817
|
+
- **Metadata enrichment**: File size, modification time, directory status, and extension information
|
|
818
|
+
- **Performance optimized**: Built on fd for lightning-fast file system traversal
|
|
819
|
+
|
|
820
|
+
#### **🔎 SearchContentTool - Intelligent Content Search**
|
|
821
|
+
- **Regex & literal search**: Flexible pattern matching with case sensitivity controls
|
|
822
|
+
- **Context-aware results**: Configurable before/after context lines for better understanding
|
|
823
|
+
- **Multiple output formats**: Standard results, count-only, summary, and grouped by file
|
|
824
|
+
- **Encoding support**: Handle files with different text encodings
|
|
825
|
+
- **Performance limits**: Built-in timeout and result limits for responsive operation
|
|
826
|
+
|
|
827
|
+
#### **🎯 FindAndGrepTool - Combined Discovery & Search**
|
|
828
|
+
- **Two-stage workflow**: First discover files with fd, then search content with ripgrep
|
|
829
|
+
- **Comprehensive filtering**: Combine file discovery filters with content search patterns
|
|
830
|
+
- **Advanced options**: Multiline patterns, word boundaries, fixed strings, and case controls
|
|
831
|
+
- **Rich metadata**: File discovery timing, search timing, and result statistics
|
|
832
|
+
- **Token optimization**: Path optimization and result grouping to minimize AI token usage
|
|
833
|
+
|
|
834
|
+
#### **✨ Key Benefits:**
|
|
835
|
+
- 🚀 **Enterprise-grade reliability**: 50+ comprehensive test cases ensuring stability
|
|
836
|
+
- 🎯 **Token-efficient**: Multiple output formats optimized for AI assistant interactions
|
|
837
|
+
- 🔧 **Highly configurable**: Extensive parameter support for precise control
|
|
838
|
+
- 📊 **Performance monitoring**: Built-in timing and result statistics
|
|
839
|
+
- 🛡️ **Error resilient**: Comprehensive error handling and validation
|
|
840
|
+
|
|
660
841
|
### 🌍 **Multi-language Support**
|
|
661
842
|
- **Java** - Full support, including Spring, JPA frameworks
|
|
662
843
|
- **Python** - Full support, including type annotations, decorators
|
|
@@ -762,6 +943,7 @@ uv run pytest tests/test_mcp_server_initialization.py -v
|
|
|
762
943
|
- **Language detector**: 98.41% (Excellent)
|
|
763
944
|
- **CLI main entry**: 94.36% (Excellent)
|
|
764
945
|
- **Query filtering system**: 96.06% (Excellent)
|
|
946
|
+
- **MCP fd/rg tools**: 93.04% (Excellent) - *New in v1.2.4*
|
|
765
947
|
- **Query service**: 86.25% (Good)
|
|
766
948
|
- **Error handling**: 82.76% (Good)
|
|
767
949
|
|
|
@@ -799,6 +981,32 @@ uv run python llm_code_checker.py path/to/new_file.py
|
|
|
799
981
|
|
|
800
982
|
---
|
|
801
983
|
|
|
984
|
+
## 💝 Sponsors & Acknowledgments
|
|
985
|
+
|
|
986
|
+
We are grateful to our sponsors who make this project possible:
|
|
987
|
+
|
|
988
|
+
### 🌟 **Special Thanks**
|
|
989
|
+
|
|
990
|
+
**[@o93](https://github.com/o93)** - *Primary Sponsor & Supporter*
|
|
991
|
+
- 🚀 **MCP Tools Enhancement**: Sponsored the comprehensive MCP fd/ripgrep tools development
|
|
992
|
+
- 🧪 **Testing Infrastructure**: Enabled enterprise-grade test coverage (50+ comprehensive test cases)
|
|
993
|
+
- 🔧 **Quality Assurance**: Supported bug fixes and performance improvements
|
|
994
|
+
- 💡 **Innovation Support**: Made early release of advanced file search and content analysis features possible
|
|
995
|
+
|
|
996
|
+
*"Thanks to @o93's generous support, we were able to deliver powerful MCP tools that revolutionize how AI assistants interact with codebases. This sponsorship directly enabled the development of ListFilesTool, SearchContentTool, and FindAndGrepTool with comprehensive test coverage."*
|
|
997
|
+
|
|
998
|
+
### 🤝 **Become a Sponsor**
|
|
999
|
+
|
|
1000
|
+
Your support helps us:
|
|
1001
|
+
- 🔬 Develop new features and tools
|
|
1002
|
+
- 🧪 Maintain comprehensive test coverage
|
|
1003
|
+
- 📚 Create better documentation
|
|
1004
|
+
- 🚀 Accelerate development cycles
|
|
1005
|
+
|
|
1006
|
+
**[💖 Sponsor this project](https://github.com/sponsors/aimasteracc)** to help us continue building amazing tools for the developer community!
|
|
1007
|
+
|
|
1008
|
+
---
|
|
1009
|
+
|
|
802
1010
|
## 🤝 Contributing
|
|
803
1011
|
|
|
804
1012
|
We welcome all forms of contributions! Please see [Contributing Guide](CONTRIBUTING.md) for details.
|
|
@@ -833,8 +1041,9 @@ All AI prompts in this document have been thoroughly tested in real environments
|
|
|
833
1041
|
|
|
834
1042
|
**Test Environment:**
|
|
835
1043
|
- Operating System: Windows 10
|
|
836
|
-
- Project: tree-sitter-analyzer v1.2.
|
|
1044
|
+
- Project: tree-sitter-analyzer v1.2.4
|
|
837
1045
|
- Test Files: BigService.java (1419 lines), sample.py (256 lines), MultiClass.java (54 lines)
|
|
838
|
-
- Test
|
|
1046
|
+
- Test Coverage: 1564 tests passed, 74.97% coverage
|
|
1047
|
+
- Test Tools: All MCP tools (check_code_scale, analyze_code_structure, extract_code_section, query_code, list_files, search_content, find_and_grep)
|
|
839
1048
|
|
|
840
1049
|
**🚀 Start Now** → [30-Second Quick Start](#-30-second-quick-start)
|
|
@@ -45,11 +45,11 @@ tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=8j3xL3k6wWrGQCq0KCntqbvSxK
|
|
|
45
45
|
tree_sitter_analyzer/interfaces/mcp_adapter.py,sha256=iSWcm-bn8_pL6YBu1Rrzherv72-5WUiavColu3uhSAY,7707
|
|
46
46
|
tree_sitter_analyzer/interfaces/mcp_server.py,sha256=dUFn1CyO2jLa_y5gGOGE-f0sLGAbjgp738uy5-aAphI,16510
|
|
47
47
|
tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMtebeYUbi_0z6fGw,340
|
|
48
|
-
tree_sitter_analyzer/languages/java_plugin.py,sha256=
|
|
48
|
+
tree_sitter_analyzer/languages/java_plugin.py,sha256=G90_LlKdHtZNOPYu8MGBbgw6qkTiwd_QJu0xID3LMPc,50509
|
|
49
49
|
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=k14kHfi5II9MRTsVuy0NQq5l2KZYncCnM1Q6T1c5q_U,15844
|
|
50
50
|
tree_sitter_analyzer/languages/python_plugin.py,sha256=MJ03F_Nv-nmInIkEFmPyEXYhyGbLHyr5kCbj2taEDYk,29144
|
|
51
51
|
tree_sitter_analyzer/mcp/__init__.py,sha256=8tC54ZYcZBcFEio-aDet7evzis50zV5gbHuvn_7K514,944
|
|
52
|
-
tree_sitter_analyzer/mcp/server.py,sha256=
|
|
52
|
+
tree_sitter_analyzer/mcp/server.py,sha256=k9WaDww6BXDDgRKZjvHx-cfOxglzdy4nQMia1i4UXNk,32021
|
|
53
53
|
tree_sitter_analyzer/mcp/resources/__init__.py,sha256=D46ZDhPQaCrQze8dHmijMg1QZQ4ABRIjG532sFpuGPo,1367
|
|
54
54
|
tree_sitter_analyzer/mcp/resources/code_file_resource.py,sha256=ZX5ZYSJfylBedpL80kTDlco2YZqgRMb5f3OW0VvOVRM,6166
|
|
55
55
|
tree_sitter_analyzer/mcp/resources/project_stats_resource.py,sha256=r2owXkWrZ-Ee9hLGpt-SSNOxzrzuNVgNXcwxQghCcrM,20057
|
|
@@ -57,8 +57,12 @@ tree_sitter_analyzer/mcp/tools/__init__.py,sha256=9KfetZTaUhvWTeKuZPYzWb7ZomFQ8S
|
|
|
57
57
|
tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=JyS9gey2oFoWjzsiiLjwcqTgwBYGlbY01vAK3QYUuF4,28470
|
|
58
58
|
tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=mssed7bEfGeGxW4mOf7dg8BDS1oqHLolIBNX9DaZ3DM,8997
|
|
59
59
|
tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=qf2My325azlnKOugNVMN_R1jtZcjXVy354sGVKzvZls,3546
|
|
60
|
+
tree_sitter_analyzer/mcp/tools/fd_rg_utils.py,sha256=DXfKYHl6gFz9c7sFBn2Yp9ST8XjsOcsii89cFr8Qnmo,16844
|
|
61
|
+
tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py,sha256=uYHat0kShQyreK1TXtvBG1e_HAL8ZsRHr49CzP7PLAo,20272
|
|
62
|
+
tree_sitter_analyzer/mcp/tools/list_files_tool.py,sha256=XWzk4ZHhXvvKOhebWa5tSsW5_mY4TOmCHdHoDYs6Q8Y,11937
|
|
60
63
|
tree_sitter_analyzer/mcp/tools/query_tool.py,sha256=1xY1ONNY2sIFJxoILlnNzBnwGVgzEF7vVJ2ccqR9auA,10879
|
|
61
64
|
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=BMAJF205hTIrYTQJG6N1-vVuKSby2CSm9nWzSMMWceI,11339
|
|
65
|
+
tree_sitter_analyzer/mcp/tools/search_content_tool.py,sha256=GCJQcCXfSlGD_BaDIoiomwL3E42a-7KswSItqPqz5Vs,15380
|
|
62
66
|
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=NDIiCtmZSbCmaQOp7ED83jGE5DuJhx4mcUketVHrkjs,16024
|
|
63
67
|
tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=-zZnqN9WcoyRTKM_16ADH859LSebzi34BGYwQL2zCOs,25084
|
|
64
68
|
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=TgTTKsRJAqF95g1fAp5SR_zQVDkImpc_5R0Dw529UUw,3126
|
|
@@ -76,7 +80,7 @@ tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLT
|
|
|
76
80
|
tree_sitter_analyzer/security/boundary_manager.py,sha256=3eeENRKWtz2pyZHzd8DiVaq8fdeC6s1eVOuBylSmQPg,9347
|
|
77
81
|
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
78
82
|
tree_sitter_analyzer/security/validator.py,sha256=yR4qTWEcXpR--bSFwtWvSgY0AzqujOFAqlc1Z7dlTdk,9809
|
|
79
|
-
tree_sitter_analyzer-1.2.
|
|
80
|
-
tree_sitter_analyzer-1.2.
|
|
81
|
-
tree_sitter_analyzer-1.2.
|
|
82
|
-
tree_sitter_analyzer-1.2.
|
|
83
|
+
tree_sitter_analyzer-1.2.4.dist-info/METADATA,sha256=3Aho6-du1VHRVg0rPxbzWH9QKDakAQvZByOvemyA6EE,39669
|
|
84
|
+
tree_sitter_analyzer-1.2.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
85
|
+
tree_sitter_analyzer-1.2.4.dist-info/entry_points.txt,sha256=U4tfLGXgCWubKm2PyEb3zxhQ2pm7zVotMyfyS0CodD8,486
|
|
86
|
+
tree_sitter_analyzer-1.2.4.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-1.2.3.dist-info → tree_sitter_analyzer-1.2.4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|