tree-sitter-analyzer 0.1.2__py3-none-any.whl → 0.2.0__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.

@@ -0,0 +1,331 @@
1
+ Metadata-Version: 2.4
2
+ Name: tree-sitter-analyzer
3
+ Version: 0.2.0
4
+ Summary: Extensible multi-language code analyzer framework using Tree-sitter with dynamic plugin architecture
5
+ Project-URL: Homepage, https://github.com/aimasteracc/tree-sitter-analyzer
6
+ Project-URL: Documentation, https://github.com/aimasteracc/tree-sitter-analyzer#readme
7
+ Project-URL: Repository, https://github.com/aimasteracc/tree-sitter-analyzer.git
8
+ Project-URL: Issues, https://github.com/aimasteracc/tree-sitter-analyzer/issues
9
+ Project-URL: Changelog, https://github.com/aimasteracc/tree-sitter-analyzer/blob/main/CHANGELOG.md
10
+ Project-URL: Bug Reports, https://github.com/aimasteracc/tree-sitter-analyzer/issues
11
+ Project-URL: Source Code, https://github.com/aimasteracc/tree-sitter-analyzer
12
+ Author-email: "aisheng.yu" <aimasteracc@gmail.com>
13
+ Maintainer-email: "aisheng.yu" <aimasteracc@gmail.com>
14
+ License: MIT
15
+ Keywords: ai-tools,ast,code-analysis,mcp,mcp-server,model-context-protocol,multi-language,parsing,static-analysis,tree-sitter
16
+ Classifier: Development Status :: 4 - Beta
17
+ Classifier: Framework :: AsyncIO
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: License :: OSI Approved :: MIT License
20
+ Classifier: Operating System :: OS Independent
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Topic :: Communications
27
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
28
+ Classifier: Topic :: Software Development :: Code Generators
29
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
+ Classifier: Topic :: Software Development :: Quality Assurance
31
+ Classifier: Topic :: Text Processing :: Linguistic
32
+ Classifier: Typing :: Typed
33
+ Requires-Python: >=3.10
34
+ Requires-Dist: cachetools>=5.0.0
35
+ Requires-Dist: chardet>=5.0.0
36
+ Requires-Dist: tree-sitter-cpp>=0.23.4
37
+ Requires-Dist: tree-sitter-java>=0.23.5
38
+ Requires-Dist: tree-sitter>=0.20.0
39
+ Provides-Extra: all-languages
40
+ Requires-Dist: tree-sitter-c>=0.20.0; extra == 'all-languages'
41
+ Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'all-languages'
42
+ Requires-Dist: tree-sitter-go>=0.20.0; extra == 'all-languages'
43
+ Requires-Dist: tree-sitter-java>=0.23.5; extra == 'all-languages'
44
+ Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'all-languages'
45
+ Requires-Dist: tree-sitter-python>=0.23.0; extra == 'all-languages'
46
+ Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'all-languages'
47
+ Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'all-languages'
48
+ Provides-Extra: c
49
+ Requires-Dist: tree-sitter-c>=0.20.0; extra == 'c'
50
+ Provides-Extra: cpp
51
+ Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'cpp'
52
+ Provides-Extra: dev
53
+ Requires-Dist: black>=24.0.0; extra == 'dev'
54
+ Requires-Dist: flake8>=7.0.0; extra == 'dev'
55
+ Requires-Dist: isort>=5.13.0; extra == 'dev'
56
+ Requires-Dist: memory-profiler>=0.61.0; extra == 'dev'
57
+ Requires-Dist: mypy>=1.17.0; extra == 'dev'
58
+ Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
59
+ Requires-Dist: psutil>=7.0.0; extra == 'dev'
60
+ Requires-Dist: pytest-asyncio>=1.1.0; extra == 'dev'
61
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
62
+ Requires-Dist: pytest-mock>=3.14.1; extra == 'dev'
63
+ Requires-Dist: pytest>=8.4.1; extra == 'dev'
64
+ Requires-Dist: types-psutil>=5.9.0; extra == 'dev'
65
+ Provides-Extra: full
66
+ Requires-Dist: anyio>=4.9.0; extra == 'full'
67
+ Requires-Dist: black>=24.0.0; extra == 'full'
68
+ Requires-Dist: flake8>=7.0.0; extra == 'full'
69
+ Requires-Dist: httpx>=0.28.1; extra == 'full'
70
+ Requires-Dist: isort>=5.13.0; extra == 'full'
71
+ Requires-Dist: mcp>=1.12.2; extra == 'full'
72
+ Requires-Dist: memory-profiler>=0.61.0; extra == 'full'
73
+ Requires-Dist: mypy>=1.17.0; extra == 'full'
74
+ Requires-Dist: pre-commit>=3.0.0; extra == 'full'
75
+ Requires-Dist: psutil>=7.0.0; extra == 'full'
76
+ Requires-Dist: pydantic-settings>=2.10.1; extra == 'full'
77
+ Requires-Dist: pydantic>=2.11.7; extra == 'full'
78
+ Requires-Dist: pytest-asyncio>=1.1.0; extra == 'full'
79
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'full'
80
+ Requires-Dist: pytest-mock>=3.14.1; extra == 'full'
81
+ Requires-Dist: pytest>=8.4.1; extra == 'full'
82
+ Requires-Dist: tree-sitter-c>=0.20.0; extra == 'full'
83
+ Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'full'
84
+ Requires-Dist: tree-sitter-go>=0.20.0; extra == 'full'
85
+ Requires-Dist: tree-sitter-java>=0.23.5; extra == 'full'
86
+ Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'full'
87
+ Requires-Dist: tree-sitter-python>=0.23.0; extra == 'full'
88
+ Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'full'
89
+ Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'full'
90
+ Requires-Dist: types-psutil>=5.9.0; extra == 'full'
91
+ Provides-Extra: go
92
+ Requires-Dist: tree-sitter-go>=0.20.0; extra == 'go'
93
+ Provides-Extra: java
94
+ Requires-Dist: tree-sitter-java>=0.23.5; extra == 'java'
95
+ Provides-Extra: javascript
96
+ Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'javascript'
97
+ Provides-Extra: mcp
98
+ Requires-Dist: anyio>=4.9.0; extra == 'mcp'
99
+ Requires-Dist: httpx>=0.28.1; extra == 'mcp'
100
+ Requires-Dist: mcp>=1.12.2; extra == 'mcp'
101
+ Requires-Dist: pydantic-settings>=2.10.1; extra == 'mcp'
102
+ Requires-Dist: pydantic>=2.11.7; extra == 'mcp'
103
+ Provides-Extra: popular
104
+ Requires-Dist: tree-sitter-java>=0.23.5; extra == 'popular'
105
+ Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'popular'
106
+ Requires-Dist: tree-sitter-python>=0.23.0; extra == 'popular'
107
+ Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'popular'
108
+ Provides-Extra: python
109
+ Requires-Dist: tree-sitter-python>=0.23.0; extra == 'python'
110
+ Provides-Extra: rust
111
+ Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'rust'
112
+ Provides-Extra: systems
113
+ Requires-Dist: tree-sitter-c>=0.20.0; extra == 'systems'
114
+ Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'systems'
115
+ Requires-Dist: tree-sitter-go>=0.20.0; extra == 'systems'
116
+ Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'systems'
117
+ Provides-Extra: test
118
+ Requires-Dist: pytest-asyncio>=1.1.0; extra == 'test'
119
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'test'
120
+ Requires-Dist: pytest-mock>=3.14.1; extra == 'test'
121
+ Requires-Dist: pytest>=8.4.1; extra == 'test'
122
+ Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'test'
123
+ Requires-Dist: tree-sitter-java>=0.23.5; extra == 'test'
124
+ Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'test'
125
+ Requires-Dist: tree-sitter-python>=0.23.0; extra == 'test'
126
+ Provides-Extra: typescript
127
+ Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'typescript'
128
+ Provides-Extra: web
129
+ Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'web'
130
+ Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'web'
131
+ Description-Content-Type: text/markdown
132
+
133
+ # Tree-sitter Analyzer
134
+
135
+ [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://python.org)
136
+ [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
137
+ [![Tests](https://img.shields.io/badge/tests-1283%20passed-brightgreen.svg)](#testing)
138
+
139
+ **Solve the LLM token limit problem for large code files.**
140
+
141
+ An extensible multi-language code analyzer that helps AI assistants understand code structure without reading entire files. Get code overview, extract specific sections, and analyze complexity - all optimized for LLM workflows.
142
+
143
+ ## ✨ Why Tree-sitter Analyzer?
144
+
145
+ **The Problem:** Large code files exceed LLM token limits, making code analysis inefficient or impossible.
146
+
147
+ **The Solution:** Smart code analysis that provides:
148
+ - 📊 **Code overview** without reading complete files
149
+ - 🎯 **Targeted extraction** of specific line ranges
150
+ - 📍 **Precise positioning** for accurate code operations
151
+ - 🤖 **AI assistant integration** via MCP protocol
152
+
153
+ ## 🚀 Quick Start (5 minutes)
154
+
155
+ ### For AI Assistant Users (Claude Desktop)
156
+
157
+ 1. **Install the package:**
158
+ ```bash
159
+ # Install uv (fast Python package manager)
160
+ curl -LsSf https://astral.sh/uv/install.sh | sh # macOS/Linux
161
+ # or: powershell -c "irm https://astral.sh/uv/install.ps1 | iex" # Windows
162
+
163
+ # No need to install the package separately - uv handles it
164
+ ```
165
+
166
+ 2. **Configure Claude Desktop:**
167
+
168
+ Add to your Claude Desktop config file:
169
+
170
+ **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
171
+ **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
172
+ **Linux:** `~/.config/claude/claude_desktop_config.json`
173
+
174
+ ```json
175
+ {
176
+ "mcpServers": {
177
+ "tree-sitter-analyzer": {
178
+ "command": "uv",
179
+ "args": [
180
+ "run",
181
+ "--with",
182
+ "tree-sitter-analyzer[mcp]",
183
+ "python",
184
+ "-m",
185
+ "tree_sitter_analyzer.mcp.server"
186
+ ]
187
+ }
188
+ }
189
+ }
190
+ ```
191
+
192
+ 3. **Restart Claude Desktop** and start analyzing code!
193
+
194
+ ### For CLI Users
195
+
196
+ ```bash
197
+ # Install with uv (recommended)
198
+ uv add "tree-sitter-analyzer[popular]"
199
+
200
+ # Step 1: Check file scale
201
+ uv run python -m tree_sitter_analyzer examples/Sample.java --advanced
202
+
203
+ # Step 2: Analyze structure (for large files)
204
+ uv run python -m tree_sitter_analyzer examples/Sample.java --table=full
205
+
206
+ # Step 3: Extract specific lines
207
+ uv run python -m tree_sitter_analyzer examples/Sample.java --partial-read --start-line 84 --end-line 86
208
+ ```
209
+
210
+ ## 🛠️ Core Features
211
+
212
+ ### 1. Code Structure Analysis
213
+ Get comprehensive overview without reading entire files:
214
+ - Classes, methods, fields count
215
+ - Package information
216
+ - Import dependencies
217
+ - Complexity metrics
218
+
219
+ ### 2. Targeted Code Extraction
220
+ Extract specific code sections efficiently:
221
+ - Line range extraction
222
+ - Precise positioning data
223
+ - Content length information
224
+
225
+ ### 3. AI Assistant Integration
226
+ Four powerful MCP tools for AI assistants:
227
+ - `analyze_code_scale` - Get code metrics and complexity
228
+ - `analyze_code_structure` - Generate detailed structure tables
229
+ - `read_code_partial` - Extract specific line ranges
230
+ - `analyze_code_universal` - Universal analysis with auto-detection
231
+
232
+ ### 4. Multi-Language Support
233
+ - **Java** - Full support with advanced analysis
234
+ - **Python** - Complete support
235
+ - **JavaScript/TypeScript** - Full support
236
+ - **C/C++, Rust, Go** - Basic support
237
+
238
+ ## 📖 Usage Examples
239
+
240
+ ### AI Assistant Usage (via Claude Desktop)
241
+
242
+ **Step 1: Get code overview:**
243
+ > "What's the overall complexity and size of this Java file examples/Sample.java?"
244
+
245
+ **Step 2: Analyze code structure (for large files):**
246
+ > "Please analyze the structure of examples/Sample.java and show me a detailed table"
247
+
248
+ **Step 3: Extract specific code:**
249
+ > "Show me lines 84-86 from examples/Sample.java"
250
+
251
+ ### CLI Usage
252
+
253
+ **Step 1: Basic analysis (Check file scale):**
254
+ ```bash
255
+ uv run python -m tree_sitter_analyzer examples/Sample.java --advanced
256
+ ```
257
+
258
+ **Step 2: Structure analysis (For large files that exceed LLM limits):**
259
+ ```bash
260
+ uv run python -m tree_sitter_analyzer examples/Sample.java --table=full
261
+ ```
262
+
263
+ **Step 3: Targeted extraction (Read specific code sections):**
264
+ ```bash
265
+ uv run python -m tree_sitter_analyzer examples/Sample.java --partial-read --start-line 84 --end-line 86
266
+ ```
267
+
268
+ **Additional Options:**
269
+ ```bash
270
+ # Quiet mode (suppress INFO messages, show only errors)
271
+ uv run python -m tree_sitter_analyzer examples/Sample.java --advanced --quiet
272
+
273
+ # Table output with quiet mode
274
+ uv run python -m tree_sitter_analyzer examples/Sample.java --table=full --quiet
275
+ ```
276
+
277
+ ## 🔧 Installation Options
278
+
279
+ ### For End Users
280
+ ```bash
281
+ # Basic installation
282
+ uv add tree-sitter-analyzer
283
+
284
+ # With popular languages (Java, Python, JS, TS)
285
+ uv add "tree-sitter-analyzer[popular]"
286
+
287
+ # With MCP server support
288
+ uv add "tree-sitter-analyzer[mcp]"
289
+
290
+ # Full installation
291
+ uv add "tree-sitter-analyzer[all,mcp]"
292
+ ```
293
+
294
+ ### For Developers
295
+ ```bash
296
+ # Clone and install for development
297
+ git clone https://github.com/aimasteracc/tree-sitter-analyzer.git
298
+ cd tree-sitter-analyzer
299
+ uv sync --extra all --extra mcp
300
+ ```
301
+
302
+ ## 📚 Documentation
303
+
304
+ - **[MCP Setup Guide for Users](MCP_SETUP_USERS.md)** - Simple setup for AI assistant users
305
+ - **[MCP Setup Guide for Developers](MCP_SETUP_DEVELOPERS.md)** - Local development configuration
306
+ - **[API Documentation](docs/api.md)** - Detailed API reference
307
+ - **[Contributing Guide](CONTRIBUTING.md)** - How to contribute
308
+
309
+ ## 🧪 Testing
310
+
311
+ This project maintains high code quality with **1283 passing tests**.
312
+
313
+ ```bash
314
+ # Run tests
315
+ pytest tests/ -v
316
+
317
+ # Run with coverage
318
+ pytest tests/ --cov=tree_sitter_analyzer
319
+ ```
320
+
321
+ ## 📄 License
322
+
323
+ MIT License - see [LICENSE](LICENSE) file for details.
324
+
325
+ ## 🤝 Contributing
326
+
327
+ We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
328
+
329
+ ---
330
+
331
+ **Made with ❤️ for developers who work with large codebases and AI assistants.**
@@ -1,7 +1,7 @@
1
- tree_sitter_analyzer/__init__.py,sha256=cA9bBIShO4xoQxwSKWBt--EN4G4OCfDSBlkE0Kms6zc,3003
1
+ tree_sitter_analyzer/__init__.py,sha256=2T4SssTp_5Zh1OTmBsoVN98EShxcUj19PCGR3FPrfrQ,3003
2
2
  tree_sitter_analyzer/__main__.py,sha256=25E8WFUzTFAYqwT5Pdlq6cn8Aa25ogHP3w_5ybbHbNc,317
3
3
  tree_sitter_analyzer/api.py,sha256=-Np6khuxbzBA_T2FN-Z8WDEXz7260OcwKIMP3iz2Kaw,17870
4
- tree_sitter_analyzer/cli_main.py,sha256=G75GblQnD-k_hJTOhMV31bUB_yApEfpBgAhO-67BLbU,9748
4
+ tree_sitter_analyzer/cli_main.py,sha256=WTP77Shnaa9yTKy0bMVLUj2i3xtLbIaDDOlUYbS2cGc,9656
5
5
  tree_sitter_analyzer/encoding_utils.py,sha256=bgzyec3Rm1oxyRpTmXS_B5GOcA6rU54YCPRxv-2Z3q0,15017
6
6
  tree_sitter_analyzer/exceptions.py,sha256=s--JRYJXH8Ui7ChtWuMS4npM4V0-L3aW831xQO5v6RM,10219
7
7
  tree_sitter_analyzer/file_handler.py,sha256=P2S0AOCeo1mzVj_gDrntCSWGt9E3cflSfaxsPRx2EPM,7620
@@ -11,19 +11,19 @@ tree_sitter_analyzer/language_loader.py,sha256=okZeUmEeJo_OQJSYCfjzDf29-RuNM9K8-
11
11
  tree_sitter_analyzer/models.py,sha256=2JZAQXM4nJVu7rfnsZFwpvPpv8fpk0POVHKCKeOMLMY,17039
12
12
  tree_sitter_analyzer/output_manager.py,sha256=dh_yfAmvn-XuF7RP5DM5vnqHGRzBUDOsuiVvTjcaOwg,8769
13
13
  tree_sitter_analyzer/query_loader.py,sha256=KrpNnf-plrtymDAfUF6ukw8ELtGWnqhikwPLW_z9vY8,10225
14
- tree_sitter_analyzer/table_formatter.py,sha256=FpYywpJOkXv3FfHEDFSWjfP5ZFa1WJZ6QqN_H0YtUC4,18274
14
+ tree_sitter_analyzer/table_formatter.py,sha256=4ioaIB6Sus-5Wd6ab-GMeRPVg8WH1a4XXkE4T0Ty2SA,18000
15
15
  tree_sitter_analyzer/utils.py,sha256=mL-TexPDTmapE3x7UErVQEJjXWn613KibPbZwgTpkd0,8332
16
16
  tree_sitter_analyzer/cli/__init__.py,sha256=zCYwQW0hKFfZ4w-qoSOnqVKZGtdZ-ziH60Ax0QBE2iQ,886
17
17
  tree_sitter_analyzer/cli/__main__.py,sha256=Sa02Ye57FhkDVTlGrb6U3m9V6II_TIuyzoQIwZtBkZ0,254
18
18
  tree_sitter_analyzer/cli/info_commands.py,sha256=B9fBryAJ2Ctt-wo8Tko86BKOfFCCBPhAWz9vz_3r1fs,4521
19
19
  tree_sitter_analyzer/cli/commands/__init__.py,sha256=duw37uHXggCRf08vaGQeY4dy7krZrc7YpXBNmlzhSQw,722
20
- tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=c-r406B6NlHoDvlu9vCpMpFA-r-d3MgWPXbiHqXgLhg,3587
21
- tree_sitter_analyzer/cli/commands/base_command.py,sha256=4upfagY8xGvg4vWUmyaYvBt0sEcj143fSjADQgdjde0,6055
20
+ tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=aFxkvksJr7FtzKNJebS4SqCySjJQunUnp_7SVzeU29E,3521
21
+ tree_sitter_analyzer/cli/commands/base_command.py,sha256=GrKQg_bTZuvuaS_fdzxGbhOE6JC1bMddrVMBz-qe6yo,5845
22
22
  tree_sitter_analyzer/cli/commands/default_command.py,sha256=lRy3WnCYZe3G4wpz4ZXyDc_wHByCHBhB0kdLdPJbKt0,601
23
- tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=ZX-ML22CIsK3sL9fms7JvSPdpEZJsqX3_JCgJ2JyRvE,4952
23
+ tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=OnQVk5inXeF07ClsOrMvyw80aP__MbWJ0f1ZvPaAV7M,4807
24
24
  tree_sitter_analyzer/cli/commands/query_command.py,sha256=Z3QFVD8pYauW7oUHr-X6zZqUM_GYfBXSNYdSqyEjHP8,3294
25
- tree_sitter_analyzer/cli/commands/structure_command.py,sha256=mRCn9E01C4dCu4oaIU3YpX4h5WK1dJXLc6wMyVbzC-w,5223
26
- tree_sitter_analyzer/cli/commands/summary_command.py,sha256=rTUX6-ejWouiKHWnel4eca8dhgSCDTEhdXPmai1_6Tc,3715
25
+ tree_sitter_analyzer/cli/commands/structure_command.py,sha256=rwG87-EIjiqRfaoKGhH3mNBtr7DL9E0qF311oKHvcvU,5171
26
+ tree_sitter_analyzer/cli/commands/summary_command.py,sha256=la0YEEYibmspHvIrvUSiNS45grEkHgaIC-XH1N5dIc8,3690
27
27
  tree_sitter_analyzer/cli/commands/table_command.py,sha256=vehgW7nEIF5x_ghUHytdQX5pl7_uKO1Qwmwj4OjFFx0,9604
28
28
  tree_sitter_analyzer/core/__init__.py,sha256=raWtpBZJFxo_G1q3WJxdzmcbQK0TqqDycm-GLrjv4OA,479
29
29
  tree_sitter_analyzer/core/analysis_engine.py,sha256=5xwGRd-Blkyp3M4CIkFHbD6jULm3bbnv2Hn15fRyk-8,21256
@@ -53,8 +53,8 @@ tree_sitter_analyzer/mcp/tools/__init__.py,sha256=MBX4-SX8gfUyEGs_BlsOD4toRosvw-
53
53
  tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=Bya1dsy4a-aTzyYSI32NDUgMbIVCFWpYXMtloGHx1V0,23448
54
54
  tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=xwXuy72FEfoY2TW6URddfdS9Ha_lq8_ZgG0UxC26mLM,8954
55
55
  tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=LpY_QPWbpm8ZGe3SPK7TIBFZMiwkUMpHa8zcswld2ag,1295
56
- tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=Xkk90JVFpZfW3cPyHLo1OpU8Fq671RPOO_zGbTmcrdM,11116
57
- tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=IUF7N5Je_rV88RkEVz5wet37PZLaDdzXoAC5j1xI3EI,14428
56
+ tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=m71g5RjNkBf-DxXhHGYsRsID5fYfDFs53-2bGZ_C4sQ,11097
57
+ tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=3vfJk-KF7LMkztODZY2yBA3uaaqhvHXbXDrnCZU9ags,14538
58
58
  tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=asH_2BLzT-ACLLampyHF61WFn5nSVKL94wE0mU-uui8,19635
59
59
  tree_sitter_analyzer/mcp/utils/__init__.py,sha256=f1WkdJ3XNWgh2NDN0LGNdwk5O-ChqEvnOQ-mINlHPG8,3064
60
60
  tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=VXVutTKA8AvtP_yiX__gqkbsSmK8_pfH3rF_H7yFsVI,18012
@@ -71,7 +71,7 @@ tree_sitter_analyzer/queries/java.py,sha256=hmaj7jKQ_m9nmOAnyiWQhzH-6g41xIi3fwt5
71
71
  tree_sitter_analyzer/queries/javascript.py,sha256=TSe6uSHhBuQU0r2B8YBqpEYkU4q9CYRuTUqRK0WfM5o,4183
72
72
  tree_sitter_analyzer/queries/python.py,sha256=V5MsKmI9A_FqAT2PKkrSL_Xp9bGKBUSpyVPoBmLxxWg,8018
73
73
  tree_sitter_analyzer/queries/typescript.py,sha256=T8a9PwqqGkwLr8clVsAfu0IUIrLKH8u4sBqlU1Cz-FE,7138
74
- tree_sitter_analyzer-0.1.2.dist-info/METADATA,sha256=4-E88N1Heaj0njiSxzLbhoQf8DxmQKeFxoOgfLyZ2p0,18438
75
- tree_sitter_analyzer-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
76
- tree_sitter_analyzer-0.1.2.dist-info/entry_points.txt,sha256=-XEh1racqnCT30mhKWMv5-bgX0iqd_J6b08lZS9J4eg,336
77
- tree_sitter_analyzer-0.1.2.dist-info/RECORD,,
74
+ tree_sitter_analyzer-0.2.0.dist-info/METADATA,sha256=9rRYvib9drv587S9KdVp2ihhu6_BvbPCYut_X-881z8,12409
75
+ tree_sitter_analyzer-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
76
+ tree_sitter_analyzer-0.2.0.dist-info/entry_points.txt,sha256=-XEh1racqnCT30mhKWMv5-bgX0iqd_J6b08lZS9J4eg,336
77
+ tree_sitter_analyzer-0.2.0.dist-info/RECORD,,