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.
Files changed (62) hide show
  1. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/PKG-INFO +4 -1
  2. codegraph_ai-0.3.0/codegraph/adapters/python_adapter.py +692 -0
  3. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/cli.py +218 -0
  4. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/core.py +97 -1
  5. codegraph_ai-0.3.0/codegraph/graph_export.py +730 -0
  6. codegraph_ai-0.3.0/codegraph/guided_explorer/__init__.py +54 -0
  7. codegraph_ai-0.3.0/codegraph/guided_explorer/interactive_explorer.py +515 -0
  8. codegraph_ai-0.3.0/codegraph/guided_explorer/pattern_detector.py +758 -0
  9. codegraph_ai-0.3.0/codegraph/guided_explorer/pattern_severity.yml +30 -0
  10. codegraph_ai-0.3.0/codegraph/guided_explorer/pr_explorer.py +464 -0
  11. codegraph_ai-0.3.0/codegraph/guided_explorer/pr_question_generator.py +428 -0
  12. codegraph_ai-0.3.0/codegraph/guided_explorer/pr_question_templates.yml +94 -0
  13. codegraph_ai-0.3.0/codegraph/guided_explorer/question_generator.py +503 -0
  14. codegraph_ai-0.3.0/codegraph/guided_explorer/question_templates.yml +166 -0
  15. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/models.py +111 -0
  16. codegraph_ai-0.3.0/codegraph/pr_analysis.py +1431 -0
  17. codegraph_ai-0.3.0/codegraph/pr_api.py +296 -0
  18. codegraph_ai-0.3.0/codegraph/pr_labeler.py +616 -0
  19. codegraph_ai-0.3.0/codegraph/pr_locator.py +764 -0
  20. codegraph_ai-0.3.0/codegraph/pr_review.py +672 -0
  21. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/PKG-INFO +4 -1
  22. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/SOURCES.txt +17 -0
  23. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/requires.txt +3 -0
  24. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/pyproject.toml +7 -1
  25. codegraph_ai-0.3.0/tests/test_guided_explorer.py +413 -0
  26. codegraph_ai-0.3.0/tests/test_pr_review.py +414 -0
  27. codegraph_ai-0.2.1/codegraph/adapters/python_adapter.py +0 -337
  28. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/README.md +0 -0
  29. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/__init__.py +0 -0
  30. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/__main__.py +0 -0
  31. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/__init__.py +0 -0
  32. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/base.py +0 -0
  33. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/c_adapter.py +0 -0
  34. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/java_adapter.py +0 -0
  35. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/adapters/js_adapter.py +0 -0
  36. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/analyzer.py +0 -0
  37. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/bug_locator.py +0 -0
  38. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/bug_parser.py +0 -0
  39. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/github_client.py +0 -0
  40. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/issue_cache.py +0 -0
  41. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/issue_fetcher.py +0 -0
  42. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/mcp_server.py +0 -0
  43. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph/qa.py +0 -0
  44. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/dependency_links.txt +0 -0
  45. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/entry_points.txt +0 -0
  46. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/codegraph_ai.egg-info/top_level.txt +0 -0
  47. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/setup.cfg +0 -0
  48. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_adapters.py +0 -0
  49. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_advanced.py +0 -0
  50. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_bug_locator.py +0 -0
  51. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_bug_parser.py +0 -0
  52. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_core_schema.py +0 -0
  53. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_cross_locate.py +0 -0
  54. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_impact.py +0 -0
  55. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_incremental.py +0 -0
  56. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_indexing.py +0 -0
  57. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_integration.py +0 -0
  58. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_issue_cache.py +0 -0
  59. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_java_adapter.py +0 -0
  60. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_js_adapter.py +0 -0
  61. {codegraph_ai-0.2.1 → codegraph_ai-0.3.0}/tests/test_models.py +0 -0
  62. {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.2.1
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