tree-sitter-analyzer 1.3.3__py3-none-any.whl → 1.3.5__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-1.3.3.dist-info → tree_sitter_analyzer-1.3.5.dist-info}/METADATA +14 -14
- {tree_sitter_analyzer-1.3.3.dist-info → tree_sitter_analyzer-1.3.5.dist-info}/RECORD +5 -5
- {tree_sitter_analyzer-1.3.3.dist-info → tree_sitter_analyzer-1.3.5.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-1.3.3.dist-info → tree_sitter_analyzer-1.3.5.dist-info}/entry_points.txt +0 -0
tree_sitter_analyzer/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.5
|
|
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
|
|
@@ -266,7 +266,7 @@ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | ie
|
|
|
266
266
|
|
|
267
267
|
Add the following to your configuration file:
|
|
268
268
|
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
269
|
-
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
269
|
+
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
270
270
|
- **Linux**: `~/.config/claude/claude_desktop_config.json`
|
|
271
271
|
|
|
272
272
|
**Basic Configuration (Recommended):**
|
|
@@ -353,11 +353,11 @@ uv run python -m tree_sitter_analyzer examples/BigService.java --partial-read --
|
|
|
353
353
|
### 💬 AI IDE Prompts (SMART Analysis Workflow)
|
|
354
354
|
|
|
355
355
|
> **✅ Test Verification Status:** All prompts below have been tested and verified in real environments, ensuring 100% availability
|
|
356
|
-
>
|
|
356
|
+
>
|
|
357
357
|
> **🎯 SMART Analysis Workflow:**
|
|
358
358
|
> - **S** - Setup project (set_project_path)
|
|
359
359
|
> - **M** - Map target files (precision pattern matching)
|
|
360
|
-
> - **A** - Analyze core structure (analyze_code_structure)
|
|
360
|
+
> - **A** - Analyze core structure (analyze_code_structure)
|
|
361
361
|
> - **R** - Retrieve essential code (extract_code_section)
|
|
362
362
|
> - **T** - Trace dependencies (when needed)
|
|
363
363
|
>
|
|
@@ -708,7 +708,7 @@ Tree-sitter Analyzer now features a revolutionary unified architecture that inte
|
|
|
708
708
|
|
|
709
709
|
#### **Supported Element Types:**
|
|
710
710
|
- `class` - Classes and interfaces
|
|
711
|
-
- `function` - Methods and functions
|
|
711
|
+
- `function` - Methods and functions
|
|
712
712
|
- `variable` - Fields and variables
|
|
713
713
|
- `import` - Import statements
|
|
714
714
|
- `package` - Package declarations
|
|
@@ -733,7 +733,7 @@ Get insights without reading complete files:
|
|
|
733
733
|
### 🔍 **Advanced Query Filtering**
|
|
734
734
|
Powerful code element query and filtering system:
|
|
735
735
|
- **Exact matching**: `--filter "name=main"` to find specific methods
|
|
736
|
-
- **Pattern matching**: `--filter "name=~auth*"` to find authentication-related methods
|
|
736
|
+
- **Pattern matching**: `--filter "name=~auth*"` to find authentication-related methods
|
|
737
737
|
- **Parameter filtering**: `--filter "params=2"` to find methods with specific parameter counts
|
|
738
738
|
- **Modifier filtering**: `--filter "static=true,public=true"` to find static public methods
|
|
739
739
|
- **Compound conditions**: `--filter "name=~get*,params=0,public=true"` to combine multiple conditions
|
|
@@ -742,7 +742,7 @@ Powerful code element query and filtering system:
|
|
|
742
742
|
### 🔗 **AI Assistant Integration**
|
|
743
743
|
Deep integration through MCP protocol:
|
|
744
744
|
- Claude Desktop
|
|
745
|
-
- Cursor IDE
|
|
745
|
+
- Cursor IDE
|
|
746
746
|
- Roo Code
|
|
747
747
|
- Other MCP-compatible AI tools
|
|
748
748
|
|
|
@@ -920,11 +920,11 @@ Tree-sitter Analyzer automatically detects and protects project boundaries:
|
|
|
920
920
|
- **Zero test failures** - Fully CI/CD ready
|
|
921
921
|
- **Cross-platform compatibility** - Windows, macOS, Linux
|
|
922
922
|
|
|
923
|
-
### ⚡ **Latest Quality Achievements (v1.3.
|
|
923
|
+
### ⚡ **Latest Quality Achievements (v1.3.5)**
|
|
924
924
|
- ✅ **Cross-platform path compatibility** - Fixed Windows short path names and macOS symbolic link differences
|
|
925
925
|
- ✅ **Windows environment** - Implemented robust path normalization using Windows API
|
|
926
926
|
- ✅ **macOS environment** - Fixed `/var` vs `/private/var` symbolic link differences
|
|
927
|
-
- ✅ **Comprehensive test coverage** -
|
|
927
|
+
- ✅ **Comprehensive test coverage** - 1699 tests, 74.42% coverage
|
|
928
928
|
- ✅ **GitFlow implementation** - Professional development/release branch strategy. See [GitFlow documentation](GITFLOW.md) for details.
|
|
929
929
|
|
|
930
930
|
### ⚙️ **Running Tests**
|
|
@@ -1041,9 +1041,9 @@ All AI prompts in this document have been thoroughly tested in real environments
|
|
|
1041
1041
|
|
|
1042
1042
|
**Test Environment:**
|
|
1043
1043
|
- Operating System: Windows 10
|
|
1044
|
-
- Project: tree-sitter-analyzer v1.3.
|
|
1044
|
+
- Project: tree-sitter-analyzer v1.3.5
|
|
1045
1045
|
- Test Files: BigService.java (1419 lines), sample.py (256 lines), MultiClass.java (54 lines)
|
|
1046
|
-
- Test Coverage:
|
|
1046
|
+
- Test Coverage: 1699 tests passed, 74.42% coverage
|
|
1047
1047
|
- Test Tools: All MCP tools (check_code_scale, analyze_code_structure, extract_code_section, query_code, list_files, search_content, find_and_grep)
|
|
1048
1048
|
|
|
1049
1049
|
**🚀 Start Now** → [30-Second Quick Start](#-30-second-quick-start)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=RX1QWK-8dtvwNAYAazDIKshtds7c3D-LfV8fh1_6y10,3067
|
|
2
2
|
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
3
|
tree_sitter_analyzer/api.py,sha256=N_bcf1pLwzXS3elPn30OySLR6ehsHdWpchXMycjl0PY,17399
|
|
4
4
|
tree_sitter_analyzer/cli_main.py,sha256=jWjVJ5AgNmtf6Z7CgeK3IF-zi7yIiu9zn4Oyvzl-iNQ,10349
|
|
@@ -82,7 +82,7 @@ tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLT
|
|
|
82
82
|
tree_sitter_analyzer/security/boundary_manager.py,sha256=3eeENRKWtz2pyZHzd8DiVaq8fdeC6s1eVOuBylSmQPg,9347
|
|
83
83
|
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
84
84
|
tree_sitter_analyzer/security/validator.py,sha256=yR4qTWEcXpR--bSFwtWvSgY0AzqujOFAqlc1Z7dlTdk,9809
|
|
85
|
-
tree_sitter_analyzer-1.3.
|
|
86
|
-
tree_sitter_analyzer-1.3.
|
|
87
|
-
tree_sitter_analyzer-1.3.
|
|
88
|
-
tree_sitter_analyzer-1.3.
|
|
85
|
+
tree_sitter_analyzer-1.3.5.dist-info/METADATA,sha256=gCmIBmr357jk9hjYSP4uuzqObjQyKSObAKLiqOOCTco,39700
|
|
86
|
+
tree_sitter_analyzer-1.3.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
87
|
+
tree_sitter_analyzer-1.3.5.dist-info/entry_points.txt,sha256=U4tfLGXgCWubKm2PyEb3zxhQ2pm7zVotMyfyS0CodD8,486
|
|
88
|
+
tree_sitter_analyzer-1.3.5.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-1.3.3.dist-info → tree_sitter_analyzer-1.3.5.dist-info}/entry_points.txt
RENAMED
|
File without changes
|