codegraphcontext 0.4.11__tar.gz → 0.4.13__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.
- {codegraphcontext-0.4.11/src/codegraphcontext.egg-info → codegraphcontext-0.4.13}/PKG-INFO +14 -13
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/README.md +13 -12
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/pyproject.toml +1 -1
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/api/router.py +1 -1
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/config_manager.py +10 -1
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/main.py +166 -109
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/registry_commands.py +45 -24
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/setup_wizard.py +2 -2
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/__init__.py +16 -3
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/bundle_registry.py +6 -44
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/cgc_bundle.py +142 -46
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/database_falkordb.py +13 -6
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/database_nornic.py +11 -3
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/advanced_language_query_tool.py +11 -12
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/code_finder.py +17 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/graph_builder.py +4 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/persistence/writer.py +7 -7
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/pre_scan.py +2 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/resolution/calls.py +2 -1
- codegraphcontext-0.4.13/src/codegraphcontext/tools/languages/elisp.py +682 -0
- codegraphcontext-0.4.13/src/codegraphcontext/tools/query_tool_languages/elisp_toolkit.py +73 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/scip_indexer.py +1 -11
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/tree_sitter_parser.py +4 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/git_utils.py +13 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/tree_sitter_manager.py +5 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13/src/codegraphcontext.egg-info}/PKG-INFO +14 -13
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext.egg-info/SOURCES.txt +2 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/LICENSE +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/MANIFEST.in +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/setup.cfg +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/__main__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/api/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/api/app.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/api/mcp_sse.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/api/schemas.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/cli_helpers.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/setup_macos.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/visualizer.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/cgcignore.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/database.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/database_falkordb_remote.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/database_kuzu.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/database_ladybug.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/falkor_worker.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/jobs.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/core/watcher.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/prompts.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/server.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tool_definitions.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/datasources/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/datasources/cassandra_ingester.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/datasources/mysql_ingester.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/datasources/redis_ingester.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/handlers/analysis_handlers.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/handlers/indexing_handlers.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/handlers/management_handlers.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/handlers/query_handlers.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/handlers/watcher_handlers.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/constants.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/discovery.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/embeddings.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/persistence/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/pipeline.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/resolution/__init__.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/resolution/inheritance.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/resolution/post_resolution.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/sanitize.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/schema.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/schema_contract.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/scip_pipeline.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/indexing/vector_resolver.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/c.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/cpp.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/csharp.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/css.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/dart.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/elixir.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/go.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/gradle.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/haskell.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/html.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/java.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/javascript.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/kotlin.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/lua.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/maven.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/mybatis.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/perl.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/php.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/python.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/ruby.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/rust.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/scala.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/swift.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/typescript.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/languages/typescriptjsx.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/package_resolver.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/c_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/cpp_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/csharp_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/dart_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/go_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/haskell_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/java_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/javascript_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/perl_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/python_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/ruby_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/rust_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/scala_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/swift_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/query_tool_languages/typescript_toolkit.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/report_generator.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/scip_pb2.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/system.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/tools/type_utils.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/debug_log.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/path_ignore.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/repo_path.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/tool_limits.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/utils/visualize_graph.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/__vite-browser-external-9wXp6ZBx.js +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/function-calls-BtRHrqa2.png +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/graph-total-D1fBAugo.png +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/hero-graph-2voMJp2a.jpg +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/hierarchy-DGADo0YT.png +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/index-C-187lf0.js +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/index-fNAa6jgv.css +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/parser-pyodide.worker-BgsDfaad.js +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/parser.worker-_nvrecvj.js +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/assets/tree-sitter-qKYAACSa.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/cgcIcon.png +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/favicon.ico +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/index.html +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/logo-icon.svg +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/logo.svg +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/placeholder.svg +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/preview-image.png +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/robots.txt +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-c.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-c_sharp.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-core.js +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-cpp.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-dart.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-go.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-java.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-javascript.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-kotlin.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-perl.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-php.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-python.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-ruby.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-rust.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-swift.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-tsx.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter-typescript.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/tree-sitter.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/web-tree-sitter.js +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/dist/wasm/web-tree-sitter.wasm +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/viz/server.py +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext.egg-info/dependency_links.txt +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext.egg-info/entry_points.txt +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext.egg-info/requires.txt +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext.egg-info/top_level.txt +0 -0
- {codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/tests/test_issue_806_fix.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codegraphcontext
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.13
|
|
4
4
|
Summary: An MCP server that indexes local code into a graph database to provide context to AI assistants.
|
|
5
5
|
Author-email: Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -78,7 +78,7 @@ Dynamic: license-file
|
|
|
78
78
|
- 🇰🇷 [한국어](README.kor.md)
|
|
79
79
|
- 🇺🇦 [Українська](README.uk.md)
|
|
80
80
|
- 🇷🇺 [Русский](README.ru-RU.md)
|
|
81
|
-
- 🇯🇵 日本語
|
|
81
|
+
- 🇯🇵 [日本語](README.ja.md)
|
|
82
82
|
- 🇪🇸 Español (Soon)
|
|
83
83
|
|
|
84
84
|
🌍 **Help translate CodeGraphContext to your language by raising an issue & PR on https://github.com/Shashankss1205/CodeGraphContext/issues!**
|
|
@@ -168,7 +168,7 @@ A powerful **MCP server** and **CLI toolkit** that indexes local code into a gra
|
|
|
168
168
|
---
|
|
169
169
|
|
|
170
170
|
## Project Details
|
|
171
|
-
- **Version:** 0.4.
|
|
171
|
+
- **Version:** 0.4.13
|
|
172
172
|
- **Authors:** Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
173
173
|
- **License:** MIT License (See [LICENSE](LICENSE) for details)
|
|
174
174
|
- **Website:** [CodeGraphContext](http://codegraphcontext.vercel.app/)
|
|
@@ -200,8 +200,8 @@ A powerful **MCP server** and **CLI toolkit** that indexes local code into a gra
|
|
|
200
200
|
- **Live File Watching:** Watch directories for changes and automatically update the graph in real-time (`codegraphcontext watch`).
|
|
201
201
|
- **Interactive Setup:** A user-friendly command-line wizard for easy setup.
|
|
202
202
|
- **Dual Mode:** Works as a standalone **CLI toolkit** for developers and as an **MCP server** for AI agents.
|
|
203
|
-
- **Multi-Language Support:** Full support for
|
|
204
|
-
- **Flexible Database Backend:**
|
|
203
|
+
- **Multi-Language Support:** Full support for 22 programming languages.
|
|
204
|
+
- **Flexible Database Backend:** FalkorDB Lite (Default), KuzuDB, LadybugDB, FalkorDB Remote, Nornic DB, or Neo4j (all platforms via Docker/native).
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
---
|
|
@@ -213,12 +213,13 @@ CodeGraphContext provides comprehensive parsing and analysis for the following l
|
|
|
213
213
|
| | Language | | Language | | Language |
|
|
214
214
|
| :--- | :--- | :--- | :--- | :--- | :--- |
|
|
215
215
|
| 🐍 | **Python** | 📜 | **JavaScript** | 🔷 | **TypeScript** |
|
|
216
|
-
| ☕ | **Java** |
|
|
217
|
-
|
|
|
218
|
-
|
|
|
219
|
-
|
|
|
220
|
-
|
|
|
221
|
-
|
|
|
216
|
+
| ☕ | **Java** | 🔵 | **C** | ➕ | **C++** |
|
|
217
|
+
| #️⃣ | **C#** | 🐹 | **Go** | 🦀 | **Rust** |
|
|
218
|
+
| 💎 | **Ruby** | 🐘 | **PHP** | 🍎 | **Swift** |
|
|
219
|
+
| 🎨 | **Kotlin** | 🎯 | **Dart** | 🐪 | **Perl** |
|
|
220
|
+
| 🌙 | **Lua** | 🚀 | **Scala** | λ | **Haskell** |
|
|
221
|
+
| 💧 | **Elixir** | 📜 | **Emacs Lisp (elisp)** | 🌐 | **HTML** |
|
|
222
|
+
| 🎨 | **CSS** | ⚛️ | **TSX** | | |
|
|
222
223
|
|
|
223
224
|
Each language parser extracts functions, classes, methods, parameters, inheritance relationships, function calls, and imports to build a comprehensive code graph.
|
|
224
225
|
|
|
@@ -304,8 +305,8 @@ _If you’re using CodeGraphContext in your project, feel free to open a PR and
|
|
|
304
305
|
|
|
305
306
|
3. **Database Setup (Automatic):**
|
|
306
307
|
CodeGraphContext uses an embedded graph database by default.
|
|
307
|
-
- **
|
|
308
|
-
- **
|
|
308
|
+
- **FalkorDB Lite:** Default backend.
|
|
309
|
+
- **KuzuDB:** Cross-platform embedded backend.
|
|
309
310
|
- **Neo4j:** Run `codegraphcontext neo4j setup` to use an external server.
|
|
310
311
|
|
|
311
312
|
---
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
- 🇰🇷 [한국어](README.kor.md)
|
|
9
9
|
- 🇺🇦 [Українська](README.uk.md)
|
|
10
10
|
- 🇷🇺 [Русский](README.ru-RU.md)
|
|
11
|
-
- 🇯🇵 日本語
|
|
11
|
+
- 🇯🇵 [日本語](README.ja.md)
|
|
12
12
|
- 🇪🇸 Español (Soon)
|
|
13
13
|
|
|
14
14
|
🌍 **Help translate CodeGraphContext to your language by raising an issue & PR on https://github.com/Shashankss1205/CodeGraphContext/issues!**
|
|
@@ -98,7 +98,7 @@ A powerful **MCP server** and **CLI toolkit** that indexes local code into a gra
|
|
|
98
98
|
---
|
|
99
99
|
|
|
100
100
|
## Project Details
|
|
101
|
-
- **Version:** 0.4.
|
|
101
|
+
- **Version:** 0.4.13
|
|
102
102
|
- **Authors:** Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
103
103
|
- **License:** MIT License (See [LICENSE](LICENSE) for details)
|
|
104
104
|
- **Website:** [CodeGraphContext](http://codegraphcontext.vercel.app/)
|
|
@@ -130,8 +130,8 @@ A powerful **MCP server** and **CLI toolkit** that indexes local code into a gra
|
|
|
130
130
|
- **Live File Watching:** Watch directories for changes and automatically update the graph in real-time (`codegraphcontext watch`).
|
|
131
131
|
- **Interactive Setup:** A user-friendly command-line wizard for easy setup.
|
|
132
132
|
- **Dual Mode:** Works as a standalone **CLI toolkit** for developers and as an **MCP server** for AI agents.
|
|
133
|
-
- **Multi-Language Support:** Full support for
|
|
134
|
-
- **Flexible Database Backend:**
|
|
133
|
+
- **Multi-Language Support:** Full support for 22 programming languages.
|
|
134
|
+
- **Flexible Database Backend:** FalkorDB Lite (Default), KuzuDB, LadybugDB, FalkorDB Remote, Nornic DB, or Neo4j (all platforms via Docker/native).
|
|
135
135
|
|
|
136
136
|
|
|
137
137
|
---
|
|
@@ -143,12 +143,13 @@ CodeGraphContext provides comprehensive parsing and analysis for the following l
|
|
|
143
143
|
| | Language | | Language | | Language |
|
|
144
144
|
| :--- | :--- | :--- | :--- | :--- | :--- |
|
|
145
145
|
| 🐍 | **Python** | 📜 | **JavaScript** | 🔷 | **TypeScript** |
|
|
146
|
-
| ☕ | **Java** |
|
|
147
|
-
|
|
|
148
|
-
|
|
|
149
|
-
|
|
|
150
|
-
|
|
|
151
|
-
|
|
|
146
|
+
| ☕ | **Java** | 🔵 | **C** | ➕ | **C++** |
|
|
147
|
+
| #️⃣ | **C#** | 🐹 | **Go** | 🦀 | **Rust** |
|
|
148
|
+
| 💎 | **Ruby** | 🐘 | **PHP** | 🍎 | **Swift** |
|
|
149
|
+
| 🎨 | **Kotlin** | 🎯 | **Dart** | 🐪 | **Perl** |
|
|
150
|
+
| 🌙 | **Lua** | 🚀 | **Scala** | λ | **Haskell** |
|
|
151
|
+
| 💧 | **Elixir** | 📜 | **Emacs Lisp (elisp)** | 🌐 | **HTML** |
|
|
152
|
+
| 🎨 | **CSS** | ⚛️ | **TSX** | | |
|
|
152
153
|
|
|
153
154
|
Each language parser extracts functions, classes, methods, parameters, inheritance relationships, function calls, and imports to build a comprehensive code graph.
|
|
154
155
|
|
|
@@ -234,8 +235,8 @@ _If you’re using CodeGraphContext in your project, feel free to open a PR and
|
|
|
234
235
|
|
|
235
236
|
3. **Database Setup (Automatic):**
|
|
236
237
|
CodeGraphContext uses an embedded graph database by default.
|
|
237
|
-
- **
|
|
238
|
-
- **
|
|
238
|
+
- **FalkorDB Lite:** Default backend.
|
|
239
|
+
- **KuzuDB:** Cross-platform embedded backend.
|
|
239
240
|
- **Neo4j:** Run `codegraphcontext neo4j setup` to use an external server.
|
|
240
241
|
|
|
241
242
|
---
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codegraphcontext"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.13"
|
|
4
4
|
description = "An MCP server that indexes local code into a graph database to provide context to AI assistants."
|
|
5
5
|
authors = [{ name = "Shashank Shekhar Singh", email = "shashankshekharsingh1205@gmail.com" }]
|
|
6
6
|
readme = "README.md"
|
{codegraphcontext-0.4.11 → codegraphcontext-0.4.13}/src/codegraphcontext/cli/config_manager.py
RENAMED
|
@@ -31,6 +31,7 @@ DEFAULT_CONFIG = {
|
|
|
31
31
|
"FALKORDB_PATH": str(CONFIG_DIR / "global" / "db" / "falkordb"),
|
|
32
32
|
"FALKORDB_SOCKET_PATH": str(CONFIG_DIR / "global" / "db" / "falkordb.sock"),
|
|
33
33
|
"LADYBUGDB_PATH": str(CONFIG_DIR / "global" / "db" / "ladybugdb"),
|
|
34
|
+
"KUZUDB_PATH": str(CONFIG_DIR / "global" / "db" / "kuzudb"),
|
|
34
35
|
"INDEX_VARIABLES": "true",
|
|
35
36
|
"ALLOW_DB_DELETION": "false",
|
|
36
37
|
"DEBUG_LOGS": "false",
|
|
@@ -62,6 +63,8 @@ DEFAULT_CONFIG = {
|
|
|
62
63
|
"ENABLE_VECTOR_RESOLVE": "false",
|
|
63
64
|
"CGC_EMBEDDING_MODEL": "local",
|
|
64
65
|
"CGC_EMBEDDING_BATCH_SIZE": "256",
|
|
66
|
+
# Default fuzzy matching behavior for `cgc find name` (overridable per-command with --fuzzy/--no-fuzzy)
|
|
67
|
+
"FUZZY_SEARCH": "true",
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
# Configuration key descriptions
|
|
@@ -70,6 +73,7 @@ CONFIG_DESCRIPTIONS = {
|
|
|
70
73
|
"FALKORDB_PATH": "Path to FalkorDB database file",
|
|
71
74
|
"FALKORDB_SOCKET_PATH": "Path to FalkorDB Unix socket",
|
|
72
75
|
"LADYBUGDB_PATH": "Path to LadybugDB database directory",
|
|
76
|
+
"KUZUDB_PATH": "Path to KuzuDB database directory",
|
|
73
77
|
"INDEX_VARIABLES": "Index variable nodes in the graph (lighter graph if false)",
|
|
74
78
|
"ALLOW_DB_DELETION": "Allow full database deletion commands",
|
|
75
79
|
"DEBUG_LOGS": "Enable debug logging (for development/troubleshooting)",
|
|
@@ -123,6 +127,10 @@ CONFIG_DESCRIPTIONS = {
|
|
|
123
127
|
"Number of function texts to embed per batch when ENABLE_VECTOR_RESOLVE=true. "
|
|
124
128
|
"Larger values are faster but use more RAM. Default: 256. Reduce to 64 if you hit memory errors."
|
|
125
129
|
),
|
|
130
|
+
"FUZZY_SEARCH": (
|
|
131
|
+
"Enable fuzzy matching by default for `cgc find name` (true|false). "
|
|
132
|
+
"Per-invocation overrides are available via --fuzzy / --no-fuzzy."
|
|
133
|
+
),
|
|
126
134
|
}
|
|
127
135
|
|
|
128
136
|
# Valid values for each config key
|
|
@@ -143,6 +151,7 @@ CONFIG_VALIDATORS = {
|
|
|
143
151
|
"ENABLE_INHERIT_RESOLVE": ["true", "false"],
|
|
144
152
|
"ENABLE_VECTOR_RESOLVE": ["true", "false"],
|
|
145
153
|
"CGC_EMBEDDING_MODEL": ["local", "openai"],
|
|
154
|
+
"FUZZY_SEARCH": ["true", "false"],
|
|
146
155
|
}
|
|
147
156
|
DEFAULT_CGCIGNORE_PATTERNS = """\
|
|
148
157
|
# Default .cgcignore patterns
|
|
@@ -447,7 +456,7 @@ def validate_config_value(key: str, value: str) -> tuple[bool, Optional[str]]:
|
|
|
447
456
|
except Exception as e:
|
|
448
457
|
return False, f"Cannot create log directory: {e}"
|
|
449
458
|
|
|
450
|
-
if key in ("FALKORDB_PATH", "FALKORDB_SOCKET_PATH", "LADYBUGDB_PATH"):
|
|
459
|
+
if key in ("FALKORDB_PATH", "FALKORDB_SOCKET_PATH", "LADYBUGDB_PATH", "KUZUDB_PATH"):
|
|
451
460
|
# Validate path is writable
|
|
452
461
|
db_path = Path(normalize_config_path(value, absolute=True))
|
|
453
462
|
try:
|