tree-sitter-analyzer 1.7.1__py3-none-any.whl → 1.7.3__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/__init__.py +1 -1
- tree_sitter_analyzer/cli/commands/advanced_command.py +52 -0
- tree_sitter_analyzer/cli/commands/structure_command.py +50 -1
- tree_sitter_analyzer/cli/commands/summary_command.py +49 -0
- tree_sitter_analyzer/cli/commands/table_command.py +48 -0
- tree_sitter_analyzer/core/query_service.py +145 -5
- tree_sitter_analyzer/formatters/base_formatter.py +29 -2
- tree_sitter_analyzer/formatters/language_formatter_factory.py +83 -0
- tree_sitter_analyzer/formatters/markdown_formatter.py +426 -0
- tree_sitter_analyzer/language_detector.py +30 -0
- tree_sitter_analyzer/language_loader.py +1 -0
- tree_sitter_analyzer/languages/markdown_plugin.py +1569 -0
- tree_sitter_analyzer/languages/python_plugin.py +75 -16
- tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py +184 -11
- tree_sitter_analyzer/mcp/tools/list_files_tool.py +112 -2
- tree_sitter_analyzer/mcp/tools/search_content_tool.py +210 -10
- tree_sitter_analyzer/queries/markdown.py +379 -0
- tree_sitter_analyzer/query_loader.py +1 -0
- {tree_sitter_analyzer-1.7.1.dist-info → tree_sitter_analyzer-1.7.3.dist-info}/METADATA +54 -18
- {tree_sitter_analyzer-1.7.1.dist-info → tree_sitter_analyzer-1.7.3.dist-info}/RECORD +22 -18
- {tree_sitter_analyzer-1.7.1.dist-info → tree_sitter_analyzer-1.7.3.dist-info}/entry_points.txt +1 -0
- {tree_sitter_analyzer-1.7.1.dist-info → tree_sitter_analyzer-1.7.3.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.3
|
|
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
|
|
@@ -37,8 +37,9 @@ Requires-Dist: mcp>=1.12.3
|
|
|
37
37
|
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4
|
|
38
38
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5
|
|
39
39
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1
|
|
40
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1
|
|
40
41
|
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.6
|
|
41
|
-
Requires-Dist: tree-sitter
|
|
42
|
+
Requires-Dist: tree-sitter>=0.25.0
|
|
42
43
|
Provides-Extra: all
|
|
43
44
|
Requires-Dist: anyio>=4.0.0; extra == 'all'
|
|
44
45
|
Requires-Dist: black>=24.0.0; extra == 'all'
|
|
@@ -61,6 +62,7 @@ Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'all'
|
|
|
61
62
|
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'all'
|
|
62
63
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'all'
|
|
63
64
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'all'
|
|
65
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'all'
|
|
64
66
|
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'all'
|
|
65
67
|
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'all'
|
|
66
68
|
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'all'
|
|
@@ -71,6 +73,7 @@ Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'all-languages'
|
|
|
71
73
|
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
72
74
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'all-languages'
|
|
73
75
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'all-languages'
|
|
76
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'all-languages'
|
|
74
77
|
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'all-languages'
|
|
75
78
|
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
76
79
|
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
@@ -113,6 +116,7 @@ Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'full'
|
|
|
113
116
|
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'full'
|
|
114
117
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'full'
|
|
115
118
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'full'
|
|
119
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'full'
|
|
116
120
|
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'full'
|
|
117
121
|
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'full'
|
|
118
122
|
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'full'
|
|
@@ -123,6 +127,8 @@ Provides-Extra: java
|
|
|
123
127
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'java'
|
|
124
128
|
Provides-Extra: javascript
|
|
125
129
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'javascript'
|
|
130
|
+
Provides-Extra: markdown
|
|
131
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'markdown'
|
|
126
132
|
Provides-Extra: mcp
|
|
127
133
|
Requires-Dist: anyio>=4.0.0; extra == 'mcp'
|
|
128
134
|
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == 'mcp'
|
|
@@ -165,11 +171,11 @@ Description-Content-Type: text/markdown
|
|
|
165
171
|
|
|
166
172
|
[](https://python.org)
|
|
167
173
|
[](LICENSE)
|
|
168
|
-
[](#quality-assurance)
|
|
175
|
+
[](#quality-assurance)
|
|
170
176
|
[](#quality-assurance)
|
|
171
177
|
[](https://pypi.org/project/tree-sitter-analyzer/)
|
|
172
|
-
[](https://github.com/aimasteracc/tree-sitter-analyzer/releases)
|
|
173
179
|
[](https://github.com/aimasteracc/tree-sitter-analyzer)
|
|
174
180
|
|
|
175
181
|
## 🚀 Enterprise-Grade Code Analysis Tool for the AI Era
|
|
@@ -213,13 +219,14 @@ Tree-sitter Analyzer is an enterprise-grade code analysis tool designed for the
|
|
|
213
219
|
| **Python** | Complete Support | Type annotations, decorators, modern Python features |
|
|
214
220
|
| **JavaScript** | Complete Support | ES6+, React/Vue/Angular, JSX |
|
|
215
221
|
| **TypeScript** | Complete Support | Interfaces, types, decorators, TSX/JSX, framework detection |
|
|
222
|
+
| **Markdown** | 🆕 Complete Support | Headers, code blocks, links, images, tables, task lists, blockquotes |
|
|
216
223
|
| **C/C++** | Basic Support | Basic syntax parsing |
|
|
217
224
|
| **Rust** | Basic Support | Basic syntax parsing |
|
|
218
225
|
| **Go** | Basic Support | Basic syntax parsing |
|
|
219
226
|
|
|
220
227
|
### 🏆 Production Ready
|
|
221
|
-
- **2,
|
|
222
|
-
- **79.
|
|
228
|
+
- **2,831 Tests** - 100% pass rate, enterprise-grade quality assurance
|
|
229
|
+
- **79.19% Coverage** - Comprehensive test coverage
|
|
223
230
|
- **Cross-platform Support** - Compatible with Windows, macOS, Linux
|
|
224
231
|
- **Continuous Maintenance** - Active development and community support
|
|
225
232
|
|
|
@@ -585,9 +592,30 @@ Tree-sitter Analyzer provides a rich set of MCP tools designed for AI assistants
|
|
|
585
592
|
| **📁 Resource Access** | Code file resources | URI code file access | File content access via URI identification |
|
|
586
593
|
| | Project statistics resources | Project statistics data access | Project analysis data and statistical information |
|
|
587
594
|
|
|
588
|
-
### 🆕 v1.7.
|
|
595
|
+
### 🆕 v1.7.3 New Feature: Complete Markdown Support
|
|
589
596
|
|
|
590
|
-
|
|
597
|
+
Brand new Markdown language support provides powerful capabilities for document analysis and AI assistants:
|
|
598
|
+
|
|
599
|
+
- **📝 Complete Markdown Parsing**: Support for all major elements including ATX headers, Setext headers, code blocks, links, images, tables
|
|
600
|
+
- **🔍 Intelligent Element Extraction**: Automatically recognize and extract header levels, code languages, link URLs, image information
|
|
601
|
+
- **📊 Structured Analysis**: Convert Markdown documents to structured data for easy AI understanding and processing
|
|
602
|
+
- **🎯 Task List Support**: Complete support for GitHub-style task lists (checkboxes)
|
|
603
|
+
- **🔧 Query System Integration**: Support for all existing query and filtering functionality
|
|
604
|
+
- **📁 Multiple Extension Support**: Support for .md, .markdown, .mdown, .mkd, .mkdn, .mdx formats
|
|
605
|
+
|
|
606
|
+
### 🆕 v1.7.2 Feature: File Output Optimization
|
|
607
|
+
|
|
608
|
+
MCP search tools' newly added file output optimization feature is a revolutionary token-saving solution:
|
|
609
|
+
|
|
610
|
+
- **🎯 File Output Optimization**: `find_and_grep`, `list_files`, and `search_content` tools now include `suppress_output` and `output_file` parameters
|
|
611
|
+
- **🔄 Automatic Format Detection**: Smart file format selection (JSON/Markdown) based on content type
|
|
612
|
+
- **💾 Massive Token Savings**: Response size reduced by up to 99% when saving large search results to files
|
|
613
|
+
- **📚 ROO Rules Documentation**: Added comprehensive tree-sitter-analyzer MCP optimization usage guide
|
|
614
|
+
- **🔧 Backward Compatibility**: Optional feature that doesn't affect existing functionality
|
|
615
|
+
|
|
616
|
+
### 🆕 v1.7.0 Feature: suppress_output Function
|
|
617
|
+
|
|
618
|
+
The `suppress_output` parameter in the `analyze_code_structure` tool:
|
|
591
619
|
|
|
592
620
|
- **Problem solved**: When analysis results are too large, traditional methods return complete table data, consuming massive tokens
|
|
593
621
|
- **Intelligent optimization**: When `suppress_output=true` and `output_file` specified, only basic metadata is returned
|
|
@@ -699,7 +727,7 @@ uv run python -m tree_sitter_analyzer --show-query-languages
|
|
|
699
727
|
| **✂️ Intelligent Code Extraction** | Precision Extraction Tool | Precise extraction by line range<br>Preserves original formatting and indentation<br>Includes position metadata<br>Efficient processing of large files | Zero-loss format preservation<br>Memory-optimized algorithms<br>Streaming processing support |
|
|
700
728
|
| **🔍 Advanced Query Filtering** | Multi-dimensional Filters | **Exact match**: `--filter "name=main"`<br>**Pattern match**: `--filter "name=~auth*"`<br>**Parameter filter**: `--filter "params=2"`<br>**Modifier filter**: `--filter "static=true,public=true"`<br>**Compound conditions**: Combine multiple conditions for precise queries | Flexible query syntax<br>High-performance indexing<br>Intelligent caching mechanisms |
|
|
701
729
|
| **🔗 AI Assistant Integration** | MCP Protocol Support | **Claude Desktop** - Full MCP support<br>**Cursor IDE** - Built-in MCP integration<br>**Roo Code** - MCP protocol support<br>**Other MCP-compatible tools** - Universal MCP server | Standard MCP protocol<br>Plug-and-play design<br>Cross-platform compatibility |
|
|
702
|
-
| **🌍 Multi-language Support** | Enterprise Language Engine | **Java** - Complete support, including Spring, JPA frameworks<br>**Python** - Complete support, including type annotations, decorators<br>**JavaScript** - Enterprise-grade support, including ES6+, React/Vue/Angular, JSX<br>**TypeScript** - **Complete support**, including interfaces, types, decorators, TSX/JSX, framework detection<br>**C/C++, Rust, Go** - Basic support | Framework-aware parsing<br>Syntax extension support<br>Continuous language updates |
|
|
730
|
+
| **🌍 Multi-language Support** | Enterprise Language Engine | **Java** - Complete support, including Spring, JPA frameworks<br>**Python** - Complete support, including type annotations, decorators<br>**JavaScript** - Enterprise-grade support, including ES6+, React/Vue/Angular, JSX<br>**TypeScript** - **Complete support**, including interfaces, types, decorators, TSX/JSX, framework detection<br>**Markdown** - **🆕 Complete support**, including headers, code blocks, links, images, tables, task lists, blockquotes<br>**C/C++, Rust, Go** - Basic support | Framework-aware parsing<br>Syntax extension support<br>Continuous language updates |
|
|
703
731
|
| **📁 Advanced File Search** | fd+ripgrep Integration | **ListFilesTool** - Intelligent file discovery with multiple filtering conditions<br>**SearchContentTool** - Intelligent content search using regular expressions<br>**FindAndGrepTool** - Combined discovery and search, two-stage workflow | Rust-based high-performance tools<br>Parallel processing capabilities<br>Intelligent cache optimization |
|
|
704
732
|
| **🏗️ Unified Element System** | Revolutionary Architecture Design | **Single element list** - Unified management of all code elements (classes, methods, fields, imports, packages)<br>**Consistent element types** - Each element has an `element_type` attribute<br>**Simplified API** - Clearer interfaces and reduced complexity<br>**Better maintainability** - Single source of truth for all code elements | Unified data model<br>Type safety guarantees<br>Extensible design |
|
|
705
733
|
|
|
@@ -708,16 +736,24 @@ uv run python -m tree_sitter_analyzer --show-query-languages
|
|
|
708
736
|
## 8. 🏆 Quality Assurance
|
|
709
737
|
|
|
710
738
|
### 📊 Quality Metrics
|
|
711
|
-
- **2,
|
|
712
|
-
- **79.
|
|
739
|
+
- **2,831 tests** - 100% pass rate ✅
|
|
740
|
+
- **79.19% code coverage** - Comprehensive test suite
|
|
713
741
|
- **Zero test failures** - Production ready
|
|
714
742
|
- **Cross-platform support** - Windows, macOS, Linux
|
|
715
743
|
|
|
716
|
-
### ⚡ Latest Quality Achievements (v1.7.
|
|
717
|
-
- ✅
|
|
718
|
-
- ✅
|
|
719
|
-
- ✅
|
|
720
|
-
- ✅
|
|
744
|
+
### ⚡ Latest Quality Achievements (v1.7.3)
|
|
745
|
+
- ✅ **🆕 Complete Markdown Support** - Added new complete Markdown language plugin supporting all major Markdown elements
|
|
746
|
+
- ✅ **📝 Enhanced Document Analysis** - Support for intelligent extraction of headers, code blocks, links, images, tables, task lists
|
|
747
|
+
- ✅ **🔍 Markdown Query System** - 17 predefined query types with alias and custom query support
|
|
748
|
+
- ✅ **🧪 Comprehensive Test Validation** - Added extensive Markdown test cases ensuring feature stability
|
|
749
|
+
- ✅ **📊 Structured Output** - Convert Markdown documents to structured data for easy AI processing
|
|
750
|
+
- ✅ **🔧 Test Stability Improvement** - Fixed 28 test errors, all 2831 tests now passing 100%
|
|
751
|
+
- ✅ **File output optimization** - MCP search tools now include `suppress_output` and `output_file` parameters for massive token savings
|
|
752
|
+
- ✅ **Intelligent format detection** - Automatic selection of optimal file formats (JSON/Markdown) for storage and reading optimization
|
|
753
|
+
- ✅ **ROO rules documentation** - Added comprehensive tree-sitter-analyzer MCP optimization usage guide
|
|
754
|
+
- ✅ **Enhanced token management** - Response size reduced by up to 99% when outputting search results to files
|
|
755
|
+
- ✅ **Enterprise-grade test coverage** - Comprehensive test suite including complete validation of file output optimization features
|
|
756
|
+
- ✅ **Complete MCP tools** - Complete MCP server tool set supporting advanced file search and content analysis
|
|
721
757
|
- ✅ **Cross-platform path compatibility** - Fixed differences between Windows short path names and macOS symbolic links
|
|
722
758
|
- ✅ **GitFlow implementation** - Professional development/release branch strategy
|
|
723
759
|
|
|
@@ -760,7 +796,7 @@ uv run pytest tests/test_mcp_server_initialization.py -v
|
|
|
760
796
|
**Verification environment:**
|
|
761
797
|
- Operating systems: Windows 10, macOS, Linux
|
|
762
798
|
- Python version: 3.10+
|
|
763
|
-
- Project version: tree-sitter-analyzer v1.7.
|
|
799
|
+
- Project version: tree-sitter-analyzer v1.7.2
|
|
764
800
|
- Test files: BigService.java (1419 lines), sample.py (256 lines), MultiClass.java (54 lines)
|
|
765
801
|
|
|
766
802
|
---
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=DVPMxSyZcRNvDkXkXiSkBRsemWg_kSrAjKOGawimAso,3067
|
|
2
2
|
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
3
|
tree_sitter_analyzer/api.py,sha256=jzwID6fJNdhQkJP3D0lzBVPhOnGIN4tyyMtmRYdK9zI,22753
|
|
4
4
|
tree_sitter_analyzer/cli_main.py,sha256=BuaM-L-Jx3G49qvAUOQVsw0wEM-X0UzPaRszRZBist4,10374
|
|
@@ -6,19 +6,19 @@ tree_sitter_analyzer/constants.py,sha256=7w3sLFt_6vPaKsxzrc21K1rOKpLGMyyA1203nu3
|
|
|
6
6
|
tree_sitter_analyzer/encoding_utils.py,sha256=BgdBKnW20EueEFJT-aLrQI38bTOcR5rWQ3Dpa-ALszA,14805
|
|
7
7
|
tree_sitter_analyzer/exceptions.py,sha256=AZryCQyKXekAg8lQZd3zqULnjhCKovBNNpnUlNGDhcI,11615
|
|
8
8
|
tree_sitter_analyzer/file_handler.py,sha256=mtWz-DE4yfmak347s0e20xFNy3qddcek58Enom5GlZQ,6689
|
|
9
|
-
tree_sitter_analyzer/language_detector.py,sha256=
|
|
10
|
-
tree_sitter_analyzer/language_loader.py,sha256=
|
|
9
|
+
tree_sitter_analyzer/language_detector.py,sha256=MoGDGqKREBd3GMPJ7QoQCdBmTloWskC5plnjNfDuEO0,12957
|
|
10
|
+
tree_sitter_analyzer/language_loader.py,sha256=sIICLkht_PeVoYV1KTs5bSgOJej9xK9wbyRB2-0Agws,8966
|
|
11
11
|
tree_sitter_analyzer/models.py,sha256=eZSVTl4s0rnqG21nyCTaJhyhDw1HZkkpMRKCi2QRkL0,20404
|
|
12
12
|
tree_sitter_analyzer/output_manager.py,sha256=tMEyjGeczqphcLoHdqxgyW8KaG8w6JF-fhsIibNQiCU,8260
|
|
13
13
|
tree_sitter_analyzer/project_detector.py,sha256=-zmtm12EvVD_6TDxS_6KpzuswP2Bpppnxq50kAEDyMA,9430
|
|
14
|
-
tree_sitter_analyzer/query_loader.py,sha256=
|
|
14
|
+
tree_sitter_analyzer/query_loader.py,sha256=fqLdjifjz2n471PkjyQSu-8tYizM47gLV_DtRYvsrQU,9887
|
|
15
15
|
tree_sitter_analyzer/table_formatter.py,sha256=tPKw77LLlQ7k5MMs9_Ez7qsSroNaSzZPoplyPtKHLhA,28577
|
|
16
16
|
tree_sitter_analyzer/utils.py,sha256=AwQ6Xv1IGUTf5ich-nNoY5oEyIGROoB802ZNF3gyqto,11871
|
|
17
17
|
tree_sitter_analyzer/cli/__init__.py,sha256=O_3URpbdu5Ilb2-r48LjbZuWtOWQu_BhL3pa6C0G3Bk,871
|
|
18
18
|
tree_sitter_analyzer/cli/__main__.py,sha256=Xq8o8-0dPnMDU9WZqmqhzr98rx8rvoffTUHAkAwl-L8,218
|
|
19
19
|
tree_sitter_analyzer/cli/info_commands.py,sha256=thWCLZ4iGVmqxuQfUz3t-uNRv9X3lgtWnsUJm6mbJ7o,4432
|
|
20
20
|
tree_sitter_analyzer/cli/commands/__init__.py,sha256=jpcpM1ptLuxLMBDUv1y_a87k8RAw1otFzeYpWtXvz3Y,671
|
|
21
|
-
tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=
|
|
21
|
+
tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=gEO6Bc9zBHoGNZMpKr3BXQFJK57WAf2-fDJPTAaD_Lo,11434
|
|
22
22
|
tree_sitter_analyzer/cli/commands/base_command.py,sha256=MGlRA6sIcMt6ta-07NOFcPz8-eUwwS2g-JlBVYn105s,6611
|
|
23
23
|
tree_sitter_analyzer/cli/commands/default_command.py,sha256=RAR_eaOK3EndIqU7QL5UAn44mwyhItTN7aUaKL1WmSc,524
|
|
24
24
|
tree_sitter_analyzer/cli/commands/find_and_grep_cli.py,sha256=Kg5H11FB7dEOS9Ors41T89roJjuwJ4t26n_Dv2ra5Og,6290
|
|
@@ -26,9 +26,9 @@ tree_sitter_analyzer/cli/commands/list_files_cli.py,sha256=rgeP3PFrBYhebvnWJ7dOE
|
|
|
26
26
|
tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=lbuy9X_q5pyf_cJXVvx_AYJg_tfxF1R0U93Is-MVW_A,4619
|
|
27
27
|
tree_sitter_analyzer/cli/commands/query_command.py,sha256=VFuCFJxffjSUrMa7NB_KJmMexUnJmnazpTDbw-i9Ulw,4003
|
|
28
28
|
tree_sitter_analyzer/cli/commands/search_content_cli.py,sha256=A30806cWaBfqfchhIZ0qK23cfoIQTTYk33Y119TGx34,5093
|
|
29
|
-
tree_sitter_analyzer/cli/commands/structure_command.py,sha256=
|
|
30
|
-
tree_sitter_analyzer/cli/commands/summary_command.py,sha256=
|
|
31
|
-
tree_sitter_analyzer/cli/commands/table_command.py,sha256=
|
|
29
|
+
tree_sitter_analyzer/cli/commands/structure_command.py,sha256=CFlem2raHX8DEC2FJlmYVYnjlrnKpt2fz5OvIk2VCo8,7984
|
|
30
|
+
tree_sitter_analyzer/cli/commands/summary_command.py,sha256=SieBVJfyO9dMpExKnHhFowS3nXMzJMbGNhoWh5PEN6o,6323
|
|
31
|
+
tree_sitter_analyzer/cli/commands/table_command.py,sha256=iBA4mMmL_S9grwVJcAB0S0-z_8Q_DmbMcFPZ8FTcJ5k,12127
|
|
32
32
|
tree_sitter_analyzer/core/__init__.py,sha256=VlYOy1epW16vjaVd__knESewnU0sfXF9a4hjrFxiSEE,440
|
|
33
33
|
tree_sitter_analyzer/core/analysis_engine.py,sha256=IHE4ZQDGI4uu2Eh0QYX1bPsDBhtEu7JkImHEVnC7gog,18781
|
|
34
34
|
tree_sitter_analyzer/core/cache_service.py,sha256=0oZGuTpeHBKYNdnqAOVi6VlQukYMIHncz2pbVfNpSqE,9762
|
|
@@ -36,12 +36,14 @@ tree_sitter_analyzer/core/engine.py,sha256=5CheLzsxrApY6o2uM8sdYdzK4HkQypxlsYEFp
|
|
|
36
36
|
tree_sitter_analyzer/core/parser.py,sha256=qT3yIlTRdod4tf_2o1hU_B-GYGukyM2BtaFxzSoxois,9293
|
|
37
37
|
tree_sitter_analyzer/core/query.py,sha256=UhQxUmQitFobe2YM7Ifhi3X2WdHVb02KzeBunueYJ4I,16397
|
|
38
38
|
tree_sitter_analyzer/core/query_filter.py,sha256=PvGztAZFooFNZe6iHNmbg6RUNtMvq6f6hBZFzllig6Y,6591
|
|
39
|
-
tree_sitter_analyzer/core/query_service.py,sha256=
|
|
39
|
+
tree_sitter_analyzer/core/query_service.py,sha256=ulbpMPPkT02e0mF3Wxpzh_X-Ku3vc3ptAeuwCu91zWg,13761
|
|
40
40
|
tree_sitter_analyzer/formatters/__init__.py,sha256=yVb4HF_4EEPRwTf3y3-vM2NllrhykG3zlvQhN-6dB4c,31
|
|
41
|
-
tree_sitter_analyzer/formatters/base_formatter.py,sha256=
|
|
41
|
+
tree_sitter_analyzer/formatters/base_formatter.py,sha256=q515mnhpXV7jd0ysJ7R3VFOCm9e4x7ADVKSkVEYd8lA,6656
|
|
42
42
|
tree_sitter_analyzer/formatters/formatter_factory.py,sha256=4fsSMxhBmGWFmPjcuwkTvgiIWWFireaOaChYi1UNnSM,2381
|
|
43
43
|
tree_sitter_analyzer/formatters/java_formatter.py,sha256=0jxKfrWtsr_K2VG1zW0LH2E6w6nfpIhcXTfIyWw3Jmc,11163
|
|
44
44
|
tree_sitter_analyzer/formatters/javascript_formatter.py,sha256=rIvMs-btsTV0KpGvF67qS7bXANN1I_1M4mVg3KXJ3-I,21345
|
|
45
|
+
tree_sitter_analyzer/formatters/language_formatter_factory.py,sha256=y6OJ2jtW42HBs_d5EhMxWCoLR92nDeNyD6jhh3VYw_w,2168
|
|
46
|
+
tree_sitter_analyzer/formatters/markdown_formatter.py,sha256=Sb57WTuHLTeOMtbM8SFh8WccVd9BiQGE4g1GMbMgnvA,19696
|
|
45
47
|
tree_sitter_analyzer/formatters/python_formatter.py,sha256=qE4C6Q5b_Mzr_PptqWZIJuxS945Ws_pmjPGpfqJ_GcY,17224
|
|
46
48
|
tree_sitter_analyzer/formatters/typescript_formatter.py,sha256=mMl6dWSa2EQny_k_gozzyMYnyZq85WJQuJ61kbOSd2o,19402
|
|
47
49
|
tree_sitter_analyzer/interfaces/__init__.py,sha256=OcT7eNIU0ZXvAeAXbhDqRG3puxn93HeSLqplwj6npTM,271
|
|
@@ -52,7 +54,8 @@ tree_sitter_analyzer/interfaces/mcp_server.py,sha256=dUFn1CyO2jLa_y5gGOGE-f0sLGA
|
|
|
52
54
|
tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMtebeYUbi_0z6fGw,340
|
|
53
55
|
tree_sitter_analyzer/languages/java_plugin.py,sha256=SEGS-54gF2-kIv8ftYGqq_KNnwPXGw9XnSONlzowHWk,53191
|
|
54
56
|
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=2O6X5M1ZKQNdWoMmMJXHw5CEk2FxkPjR6wy3iHCyeak,57090
|
|
55
|
-
tree_sitter_analyzer/languages/
|
|
57
|
+
tree_sitter_analyzer/languages/markdown_plugin.py,sha256=w1F-IhCDcWTk1K98WCnA_jeLUAqBT77jlDdBf3f8UOQ,67042
|
|
58
|
+
tree_sitter_analyzer/languages/python_plugin.py,sha256=faDvcUW_yJxrD4Lry0NaljD6EMYuWBE2D1UVCTBmEtE,54267
|
|
56
59
|
tree_sitter_analyzer/languages/typescript_plugin.py,sha256=rPgSMkIZzYty23sitWv2NjqePLitTdH_17BdPtNCNl0,67885
|
|
57
60
|
tree_sitter_analyzer/mcp/__init__.py,sha256=8tC54ZYcZBcFEio-aDet7evzis50zV5gbHuvn_7K514,944
|
|
58
61
|
tree_sitter_analyzer/mcp/server.py,sha256=_Ak0D2vNyvMG-YUpjD98w6GZ-ZZrSKvCPU5hzyNTux8,35236
|
|
@@ -64,11 +67,11 @@ tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=JyS9gey2oFoWjzsiiLjw
|
|
|
64
67
|
tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=mssed7bEfGeGxW4mOf7dg8BDS1oqHLolIBNX9DaZ3DM,8997
|
|
65
68
|
tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=qf2My325azlnKOugNVMN_R1jtZcjXVy354sGVKzvZls,3546
|
|
66
69
|
tree_sitter_analyzer/mcp/tools/fd_rg_utils.py,sha256=R1ICH40vkWO3OdKZjxok9ptQZpZ6-tM5SkLHHOC4-BE,17749
|
|
67
|
-
tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py,sha256=
|
|
68
|
-
tree_sitter_analyzer/mcp/tools/list_files_tool.py,sha256=
|
|
70
|
+
tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py,sha256=2Y5V61T4-Y90W38erzIN6D1orlYlkPx9kaoKTfmInEs,31038
|
|
71
|
+
tree_sitter_analyzer/mcp/tools/list_files_tool.py,sha256=JxgLpFgJFk6_9VtlvzOlzWnfYs9yZOPIVwnl10pRoZU,17864
|
|
69
72
|
tree_sitter_analyzer/mcp/tools/query_tool.py,sha256=1xY1ONNY2sIFJxoILlnNzBnwGVgzEF7vVJ2ccqR9auA,10879
|
|
70
73
|
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=BMAJF205hTIrYTQJG6N1-vVuKSby2CSm9nWzSMMWceI,11339
|
|
71
|
-
tree_sitter_analyzer/mcp/tools/search_content_tool.py,sha256=
|
|
74
|
+
tree_sitter_analyzer/mcp/tools/search_content_tool.py,sha256=2HbHxRzPkddXPgwKrx8ACZMuVF6R9fLZXM_EWILu-l4,31994
|
|
72
75
|
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=VhmrDSKE5WdnoJhWjZc67z5q3qiBMBhNFW9uZ22psU8,21252
|
|
73
76
|
tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=-zZnqN9WcoyRTKM_16ADH859LSebzi34BGYwQL2zCOs,25084
|
|
74
77
|
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=TgTTKsRJAqF95g1fAp5SR_zQVDkImpc_5R0Dw529UUw,3126
|
|
@@ -83,13 +86,14 @@ tree_sitter_analyzer/plugins/manager.py,sha256=PyEY3jeuCBpDVqguWhaAu7nzUZM17_pI6
|
|
|
83
86
|
tree_sitter_analyzer/queries/__init__.py,sha256=dwDDc7PCw_UWruxSeJ8uEBjY0O5uLDBI5YqyvBhbnN0,696
|
|
84
87
|
tree_sitter_analyzer/queries/java.py,sha256=avaPFeHz3Ig-yTdCDKfUKaG-5sktOEkrXG2p9_mEZVs,12388
|
|
85
88
|
tree_sitter_analyzer/queries/javascript.py,sha256=ccsCMArJOPMWg2CTqnd9adzfT14CX8OugehV3CqfDcE,22545
|
|
89
|
+
tree_sitter_analyzer/queries/markdown.py,sha256=QbBBIv_nVQ9UOWYgthvcHECLkj2ueWamZgNS6g3kNf8,10882
|
|
86
90
|
tree_sitter_analyzer/queries/python.py,sha256=vKUeZqmgDUYzRfgInxF7IZ52Oja-ZslexseknmVLiwo,26116
|
|
87
91
|
tree_sitter_analyzer/queries/typescript.py,sha256=e9sMBPBiyVr0siJf35HQkiAgrjHJDJ7ysI5QiNnMAr4,21904
|
|
88
92
|
tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLTf_XnlvEzXwEE,623
|
|
89
93
|
tree_sitter_analyzer/security/boundary_manager.py,sha256=3eeENRKWtz2pyZHzd8DiVaq8fdeC6s1eVOuBylSmQPg,9347
|
|
90
94
|
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
91
95
|
tree_sitter_analyzer/security/validator.py,sha256=yR4qTWEcXpR--bSFwtWvSgY0AzqujOFAqlc1Z7dlTdk,9809
|
|
92
|
-
tree_sitter_analyzer-1.7.
|
|
93
|
-
tree_sitter_analyzer-1.7.
|
|
94
|
-
tree_sitter_analyzer-1.7.
|
|
95
|
-
tree_sitter_analyzer-1.7.
|
|
96
|
+
tree_sitter_analyzer-1.7.3.dist-info/METADATA,sha256=PdS1b9RFT2H205ApP2AGG3U6eKnnz0BI9BgGRarFlrw,39417
|
|
97
|
+
tree_sitter_analyzer-1.7.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
98
|
+
tree_sitter_analyzer-1.7.3.dist-info/entry_points.txt,sha256=TOW_FpPd7qg0Uq0f44VItnO4HXPdYi7yJUjnQH-0fAM,853
|
|
99
|
+
tree_sitter_analyzer-1.7.3.dist-info/RECORD,,
|
{tree_sitter_analyzer-1.7.1.dist-info → tree_sitter_analyzer-1.7.3.dist-info}/entry_points.txt
RENAMED
|
@@ -10,5 +10,6 @@ tree-sitter-analyzer-mcp = tree_sitter_analyzer.mcp.server:main_sync
|
|
|
10
10
|
[tree_sitter_analyzer.plugins]
|
|
11
11
|
java = tree_sitter_analyzer.languages.java_plugin:JavaPlugin
|
|
12
12
|
javascript = tree_sitter_analyzer.languages.javascript_plugin:JavaScriptPlugin
|
|
13
|
+
markdown = tree_sitter_analyzer.languages.markdown_plugin:MarkdownPlugin
|
|
13
14
|
python = tree_sitter_analyzer.languages.python_plugin:PythonPlugin
|
|
14
15
|
typescript = tree_sitter_analyzer.languages.typescript_plugin:TypeScriptPlugin
|
|
File without changes
|