codegraph-ai 0.2.1__tar.gz → 0.3.0__tar.gz
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.
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/PKG-INFO +4 -1
- codegraph_ai-0.3.0/codegraph/adapters/python_adapter.py +692 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/cli.py +218 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/core.py +97 -1
- codegraph_ai-0.3.0/codegraph/graph_export.py +730 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/__init__.py +54 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/interactive_explorer.py +515 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/pattern_detector.py +758 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/pattern_severity.yml +30 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/pr_explorer.py +464 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/pr_question_generator.py +428 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/pr_question_templates.yml +94 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/question_generator.py +503 -0
- codegraph_ai-0.3.0/codegraph/guided_explorer/question_templates.yml +166 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/models.py +111 -0
- codegraph_ai-0.3.0/codegraph/pr_analysis.py +1431 -0
- codegraph_ai-0.3.0/codegraph/pr_api.py +296 -0
- codegraph_ai-0.3.0/codegraph/pr_labeler.py +616 -0
- codegraph_ai-0.3.0/codegraph/pr_locator.py +764 -0
- codegraph_ai-0.3.0/codegraph/pr_review.py +672 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/PKG-INFO +4 -1
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/SOURCES.txt +17 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/requires.txt +3 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/pyproject.toml +7 -1
- codegraph_ai-0.3.0/tests/test_guided_explorer.py +413 -0
- codegraph_ai-0.3.0/tests/test_pr_review.py +414 -0
- codegraph_ai-0.2.1/codegraph/adapters/python_adapter.py +0 -337
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/README.md +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/__init__.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/__main__.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/__init__.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/base.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/c_adapter.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/java_adapter.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/js_adapter.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/analyzer.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/bug_locator.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/bug_parser.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/github_client.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/issue_cache.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/issue_fetcher.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/mcp_server.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/qa.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/dependency_links.txt +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/entry_points.txt +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/top_level.txt +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/setup.cfg +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_adapters.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_advanced.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_bug_locator.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_bug_parser.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_core_schema.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_cross_locate.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_impact.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_incremental.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_indexing.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_integration.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_issue_cache.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_java_adapter.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_js_adapter.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_models.py +0 -0
- {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_similar.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codegraph-ai
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Hybrid graph + vector code intelligence powered by NeuG and zvec
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Requires-Dist: neug
|
|
@@ -8,6 +8,9 @@ Requires-Dist: zvec
|
|
|
8
8
|
Requires-Dist: tree-sitter-language-pack
|
|
9
9
|
Requires-Dist: sentence-transformers
|
|
10
10
|
Requires-Dist: numpy
|
|
11
|
+
Requires-Dist: jinja2
|
|
12
|
+
Requires-Dist: pyyaml
|
|
13
|
+
Requires-Dist: click
|
|
11
14
|
Provides-Extra: server
|
|
12
15
|
Requires-Dist: fastmcp; extra == "server"
|
|
13
16
|
Provides-Extra: dev
|