codegraph-cli 2.1.0__py3-none-any.whl → 2.1.2__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.
Files changed (42) hide show
  1. codegraph_cli/__init__.py +1 -1
  2. codegraph_cli/agents.py +59 -3
  3. codegraph_cli/chat_agent.py +58 -11
  4. codegraph_cli/cli.py +569 -54
  5. codegraph_cli/cli_chat.py +204 -94
  6. codegraph_cli/cli_diagnose.py +13 -2
  7. codegraph_cli/cli_docs.py +207 -0
  8. codegraph_cli/cli_explore.py +1053 -0
  9. codegraph_cli/cli_export.py +941 -0
  10. codegraph_cli/cli_groups.py +33 -0
  11. codegraph_cli/cli_health.py +316 -0
  12. codegraph_cli/cli_history.py +213 -0
  13. codegraph_cli/cli_onboard.py +380 -0
  14. codegraph_cli/cli_quickstart.py +256 -0
  15. codegraph_cli/cli_refactor.py +17 -3
  16. codegraph_cli/cli_setup.py +12 -12
  17. codegraph_cli/cli_suggestions.py +90 -0
  18. codegraph_cli/cli_test.py +17 -3
  19. codegraph_cli/cli_tui.py +210 -0
  20. codegraph_cli/cli_v2.py +24 -4
  21. codegraph_cli/cli_watch.py +158 -0
  22. codegraph_cli/cli_workflows.py +255 -0
  23. codegraph_cli/codegen_agent.py +15 -1
  24. codegraph_cli/config.py +18 -5
  25. codegraph_cli/context_manager.py +117 -15
  26. codegraph_cli/crew_agents.py +32 -8
  27. codegraph_cli/crew_chat.py +146 -13
  28. codegraph_cli/crew_tools.py +30 -2
  29. codegraph_cli/embeddings.py +95 -5
  30. codegraph_cli/llm.py +42 -55
  31. codegraph_cli/project_context.py +64 -1
  32. codegraph_cli/rag.py +282 -19
  33. codegraph_cli/storage.py +310 -14
  34. codegraph_cli/vector_store.py +110 -8
  35. {codegraph_cli-2.1.0.dist-info → codegraph_cli-2.1.2.dist-info}/METADATA +75 -21
  36. codegraph_cli-2.1.2.dist-info/RECORD +55 -0
  37. codegraph_cli-2.1.2.dist-info/entry_points.txt +2 -0
  38. codegraph_cli-2.1.0.dist-info/RECORD +0 -43
  39. codegraph_cli-2.1.0.dist-info/entry_points.txt +0 -2
  40. {codegraph_cli-2.1.0.dist-info → codegraph_cli-2.1.2.dist-info}/WHEEL +0 -0
  41. {codegraph_cli-2.1.0.dist-info → codegraph_cli-2.1.2.dist-info}/licenses/LICENSE +0 -0
  42. {codegraph_cli-2.1.0.dist-info → codegraph_cli-2.1.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codegraph-cli
3
- Version: 2.1.0
3
+ Version: 2.1.2
4
4
  Summary: AI-powered code intelligence CLI with multi-agent analysis, impact graphs, and conversational coding.
5
5
  Author-email: Ali Nasir <muhammadalinasir00786@gmail.com>
6
6
  License: MIT
@@ -35,22 +35,32 @@ Requires-Dist: tree-sitter>=0.24.0
35
35
  Requires-Dist: tree-sitter-python>=0.23.0
36
36
  Requires-Dist: tree-sitter-javascript>=0.23.0
37
37
  Requires-Dist: tree-sitter-typescript>=0.23.0
38
- Requires-Dist: litellm>=1.30.0
38
+ Requires-Dist: rich>=13.0.0
39
+ Requires-Dist: python-docx>=1.0.0
40
+ Requires-Dist: pydantic>=2.0.0
39
41
  Provides-Extra: crew
40
42
  Requires-Dist: crewai>=0.80.0; extra == "crew"
43
+ Provides-Extra: explore
44
+ Requires-Dist: starlette>=0.27.0; extra == "explore"
45
+ Requires-Dist: uvicorn>=0.24.0; extra == "explore"
41
46
  Provides-Extra: dev
42
47
  Requires-Dist: pytest>=7.4.0; extra == "dev"
43
48
  Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
44
49
  Requires-Dist: pytest-mock>=3.11.0; extra == "dev"
45
50
  Requires-Dist: build>=1.0.0; extra == "dev"
46
51
  Requires-Dist: twine>=5.0.0; extra == "dev"
52
+ Provides-Extra: watch
53
+ Requires-Dist: watchdog>=3.0.0; extra == "watch"
47
54
  Provides-Extra: embeddings
48
55
  Requires-Dist: torch>=2.0.0; extra == "embeddings"
49
56
  Requires-Dist: transformers<5.0.0,>=4.48.0; extra == "embeddings"
50
57
  Provides-Extra: all
51
58
  Requires-Dist: crewai>=0.80.0; extra == "all"
59
+ Requires-Dist: starlette>=0.27.0; extra == "all"
60
+ Requires-Dist: uvicorn>=0.24.0; extra == "all"
52
61
  Requires-Dist: torch>=2.0.0; extra == "all"
53
62
  Requires-Dist: transformers<5.0.0,>=4.48.0; extra == "all"
63
+ Requires-Dist: watchdog>=3.0.0; extra == "all"
54
64
  Dynamic: license-file
55
65
 
56
66
  # CodeGraph CLI
@@ -59,7 +69,8 @@ Dynamic: license-file
59
69
 
60
70
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
61
71
  [![Python 3.9+](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://www.python.org)
62
- [![Version](https://img.shields.io/badge/version-2.0.0-blue.svg)](https://github.com/al1-nasir/codegraph-cli)
72
+ [![Version](https://img.shields.io/badge/version-2.1.1-blue.svg)](https://github.com/al1-nasir/codegraph-cli)
73
+ [![CI](https://github.com/al1-nasir/codegraph-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/al1-nasir/codegraph-cli/actions/workflows/ci.yml)
63
74
 
64
75
  ---
65
76
 
@@ -84,12 +95,24 @@ Core capabilities:
84
95
  pip install codegraph-cli
85
96
  ```
86
97
 
98
+ With neural embedding models (semantic code search):
99
+
100
+ ```bash
101
+ pip install codegraph-cli[embeddings]
102
+ ```
103
+
87
104
  With CrewAI multi-agent support:
88
105
 
89
106
  ```bash
90
107
  pip install codegraph-cli[crew]
91
108
  ```
92
109
 
110
+ Everything:
111
+
112
+ ```bash
113
+ pip install codegraph-cli[all]
114
+ ```
115
+
93
116
  For development:
94
117
 
95
118
  ```bash
@@ -105,15 +128,15 @@ pip install -e ".[dev]"
105
128
  ### 1. Configure your LLM provider
106
129
 
107
130
  ```bash
108
- cg setup
131
+ cg config setup
109
132
  ```
110
133
 
111
134
  This runs an interactive wizard that writes configuration to `~/.codegraph/config.toml`. Alternatively, switch providers directly:
112
135
 
113
136
  ```bash
114
- cg set-llm openrouter
115
- cg set-llm groq
116
- cg set-llm ollama
137
+ cg config set-llm openrouter
138
+ cg config set-llm groq
139
+ cg config set-llm ollama
117
140
  ```
118
141
 
119
142
  ### 2. Index a project
@@ -140,18 +163,46 @@ cg chat start --crew # multi-agent mode
140
163
 
141
164
  | Provider | Type | Configuration |
142
165
  |----------|------|---------------|
143
- | Ollama | Local, free | `cg set-llm ollama` |
144
- | Groq | Cloud, free tier | `cg set-llm groq` |
145
- | OpenAI | Cloud | `cg set-llm openai` |
146
- | Anthropic | Cloud | `cg set-llm anthropic` |
147
- | Gemini | Cloud | `cg set-llm gemini` |
148
- | OpenRouter | Cloud, multi-model | `cg set-llm openrouter` |
166
+ | Ollama | Local, free | `cg config set-llm ollama` |
167
+ | Groq | Cloud, free tier | `cg config set-llm groq` |
168
+ | OpenAI | Cloud | `cg config set-llm openai` |
169
+ | Anthropic | Cloud | `cg config set-llm anthropic` |
170
+ | Gemini | Cloud | `cg config set-llm gemini` |
171
+ | OpenRouter | Cloud, multi-model | `cg config set-llm openrouter` |
149
172
 
150
173
  All configuration is stored in `~/.codegraph/config.toml`. No environment variables required.
151
174
 
152
175
  ```bash
153
- cg show-llm # view current provider, model, and endpoint
154
- cg unset-llm # reset to defaults
176
+ cg config show-llm # view current provider, model, and endpoint
177
+ cg config unset-llm # reset to defaults
178
+ ```
179
+
180
+ ---
181
+
182
+ ## Embedding Models
183
+
184
+ CodeGraph supports configurable embedding models for semantic code search. Choose based on your hardware and quality needs:
185
+
186
+ | Model | Download | Dim | Quality | Command |
187
+ |-------|----------|-----|---------|---------|
188
+ | hash | 0 bytes | 256 | Keyword-only | `cg config set-embedding hash` |
189
+ | minilm | ~80 MB | 384 | Decent | `cg config set-embedding minilm` |
190
+ | bge-base | ~440 MB | 768 | Good | `cg config set-embedding bge-base` |
191
+ | jina-code | ~550 MB | 768 | Code-aware | `cg config set-embedding jina-code` |
192
+ | qodo-1.5b | ~6.2 GB | 1536 | Best | `cg config set-embedding qodo-1.5b` |
193
+
194
+ The default is `hash` (zero-dependency, no download). Neural models require the `[embeddings]` extra and are downloaded on first use from HuggingFace.
195
+
196
+ ```bash
197
+ cg config set-embedding jina-code # switch to a neural model
198
+ cg config show-embedding # view current model and all options
199
+ cg config unset-embedding # reset to hash default
200
+ ```
201
+
202
+ After changing the embedding model, re-index your project:
203
+
204
+ ```bash
205
+ cg index /path/to/project
155
206
  ```
156
207
 
157
208
  ---
@@ -252,8 +303,9 @@ CLI Layer (Typer)
252
303
  | | |
253
304
  | +-- Parser (tree-sitter) +-- VectorStore (LanceDB)
254
305
  | +-- RAGRetriever |
255
- | +-- LLM Adapter +-- Embeddings
256
- |
306
+ | +-- LLM Adapter +-- Embeddings (configurable)
307
+ | hash | minilm | bge-base
308
+ | jina-code | qodo-1.5b
257
309
  +-- ChatAgent (standard mode)
258
310
  |
259
311
  +-- CrewChatAgent (--crew mode)
@@ -264,6 +316,8 @@ CLI Layer (Typer)
264
316
  +-- Code Analysis Agent ---> 3 search/analysis tools
265
317
  ```
266
318
 
319
+ **Embeddings**: Five models available via `cg config set-embedding`. Hash (default, zero-dependency) through Qodo-Embed-1-1.5B (best quality, 6 GB). Neural models use raw `transformers` + `torch` — no sentence-transformers overhead. Models are cached in `~/.codegraph/models/`.
320
+
267
321
  **Parser**: tree-sitter grammars for Python, JavaScript, and TypeScript. Extracts modules, classes, functions, imports, and call relationships into a directed graph.
268
322
 
269
323
  **Storage**: SQLite for the code graph (nodes + edges), LanceDB for vector embeddings. All data stored under `~/.codegraph/`.
@@ -278,14 +332,14 @@ CLI Layer (Typer)
278
332
  codegraph_cli/
279
333
  cli.py # main Typer application, all top-level commands
280
334
  cli_chat.py # interactive chat REPL with styled output
281
- cli_setup.py # setup wizard, set-llm, unset-llm, show-llm
335
+ cli_setup.py # setup wizard, set-llm, unset-llm, set-embedding
282
336
  cli_v2.py # v2 code generation commands
283
337
  config.py # loads config from TOML
284
- config_manager.py # TOML read/write, provider validation
338
+ config_manager.py # TOML read/write, provider and embedding config
285
339
  llm.py # multi-provider LLM adapter
286
340
  parser.py # tree-sitter AST parsing
287
341
  storage.py # SQLite graph store
288
- embeddings.py # hash-based embedding model
342
+ embeddings.py # configurable embedding engine (5 models)
289
343
  rag.py # RAG retriever
290
344
  vector_store.py # LanceDB vector store
291
345
  orchestrator.py # coordinates parsing, search, impact
@@ -310,7 +364,7 @@ codegraph_cli/
310
364
  git clone https://github.com/al1-nasir/codegraph-cli.git
311
365
  cd codegraph-cli
312
366
  python -m venv .venv && source .venv/bin/activate
313
- pip install -e ".[dev,crew]"
367
+ pip install -e ".[dev,crew,embeddings]"
314
368
  pytest
315
369
  ```
316
370
 
@@ -0,0 +1,55 @@
1
+ codegraph_cli/__init__.py,sha256=LXK7oCTuYoX4BTUmFF0y2Z3gsxluqc1OlNNIm8_4CvI,78
2
+ codegraph_cli/agents.py,sha256=AQb2PKwnEETphvkqgs3vlYDO0J2IVUH5tMEujwK_KZg,8938
3
+ codegraph_cli/bug_detector.py,sha256=soT4luB5eQx6qrU5rgFCsG44rdo9jRpV0hn-b0f3LPo,16419
4
+ codegraph_cli/chat_agent.py,sha256=aFV51Oxhz_158-k_GIPDplejm442jNYhJd7Qjf1hu-U,15658
5
+ codegraph_cli/chat_session.py,sha256=GVey-hnfsa9fa6k2PY1sgy1wtrYSUHKE5cJDV2hG-tg,7038
6
+ codegraph_cli/cli.py,sha256=sKQOdc6sICKQI48e1b4ky07m7lov0CiGW-RIdaKySSc,29534
7
+ codegraph_cli/cli_chat.py,sha256=IzwKzxTtjFNw5oF7ukIEdiVVdE8e7CrFrvjy5Cui6A4,18230
8
+ codegraph_cli/cli_diagnose.py,sha256=s4QcA0KWzFZTGGNrP1taWoRMVVZZnL7V6-Xn56azGFY,4478
9
+ codegraph_cli/cli_docs.py,sha256=E61PtY_0fucp-xKllJaAedCwdr7EayZjHP_009n0XAE,6448
10
+ codegraph_cli/cli_explore.py,sha256=hXo93ABMgeazvZ0xxQcL2jOYOSYTYHYjcseHtv3lcNw,46364
11
+ codegraph_cli/cli_export.py,sha256=kBdb-zCCubMvFwVSWq2ABJ-B7zMgznrHzsU36yjPbN4,35326
12
+ codegraph_cli/cli_groups.py,sha256=_sRECzW2RXzTbFLKYYkbDTQUCYAiedeOg5J_FE40cdg,1201
13
+ codegraph_cli/cli_health.py,sha256=03_I0c7QlWtCjhAeZHyqRVEBCmnzO2ew1MJdCR244Uc,10413
14
+ codegraph_cli/cli_history.py,sha256=pAnQJkpQE37u1WDQVvG3_0JndAWPoeOc3HnD6J4Ngs8,6297
15
+ codegraph_cli/cli_onboard.py,sha256=0VH_TgBRRV1bGgOrN21zPjv57-NjpfXOlFl4EMJr4zg,14038
16
+ codegraph_cli/cli_quickstart.py,sha256=HYdR02zvqCkfJbpUbwgiiqx1ezfP_ZszoSVgJJWORiA,9152
17
+ codegraph_cli/cli_refactor.py,sha256=0sI58mfx0-8TGra4DMNOigNFyUXGawQXOAEnIfY6TY8,8615
18
+ codegraph_cli/cli_setup.py,sha256=1m8fqPG3O7mIt-Y9onqgHKWKjJb3bVt-F1B6ZGTTpGk,24833
19
+ codegraph_cli/cli_suggestions.py,sha256=H7S6TIb8XzaEF1M1BnljDt2R2pkCVCGuMgINFZoWXK4,3485
20
+ codegraph_cli/cli_test.py,sha256=tXp64n-HSfknTVzAZo_XaU5jGuFsXaLx9R1phAXd5k4,5936
21
+ codegraph_cli/cli_tui.py,sha256=VzU8Rki7rR1H9DFMNQ9gnQbefSABtdIFpoqCs5jRLSU,6525
22
+ codegraph_cli/cli_v2.py,sha256=3BIAb9cyDvU6WaM-GNZP7LA7OVs-9ckL1MRnUZpx4YA,9944
23
+ codegraph_cli/cli_watch.py,sha256=2zrc0wOy6M8T7jTY6u0Af5UEk52F_k0YyuBhzLiE_Wc,5287
24
+ codegraph_cli/cli_workflows.py,sha256=NGIHNks2SUGeYcfK8J1-w66QWxqo4BJeKgENGLjb9No,9931
25
+ codegraph_cli/codegen_agent.py,sha256=QU6uowy_I5ezzjGy3HqXpYWbUnB7JvjC1STfHKZXcU0,9801
26
+ codegraph_cli/config.py,sha256=oluY1A8L6V3vzJ4aotwGyx6NqFNht1_iK64oNvwt_hw,1710
27
+ codegraph_cli/config_manager.py,sha256=K81Ca7jHzHlwxoJsSeRezl8V-iGGJD_IEGE7ZWo3eG0,11422
28
+ codegraph_cli/context_manager.py,sha256=5rHw6x2aq4jeiWTaJfdFBJnezbuqoLM_NLJ7jb7_Exo,21173
29
+ codegraph_cli/crew_agents.py,sha256=idPetsrHK4x6-uWXOZLV-z2bnJkkO858_HQSZD31Zg0,7524
30
+ codegraph_cli/crew_chat.py,sha256=EVRdWIg4_Dsk0U2Vyr2osmQgivsxRiAGHwtf1NJid-k,12008
31
+ codegraph_cli/crew_tools.py,sha256=TnZ0bbtZsoIo0AGRsZ3D9lmdb3eYePT_3XIUBTh6XE0,20197
32
+ codegraph_cli/diff_engine.py,sha256=VGwPG_pZFVz8lGuVHZz_0nhrDocglugw6TumMmnHdTY,8968
33
+ codegraph_cli/embeddings.py,sha256=18Dv5cbg0ZgUrTUVr3AXD8uWDdEePBsrXw2plARGIxQ,17405
34
+ codegraph_cli/graph_export.py,sha256=gPyRrOc4_gnW-JaHmmp2pAD60PiZIj_uYA6b0xfU5O0,4562
35
+ codegraph_cli/llm.py,sha256=fCeJcuJkkpiWgvXx4WLf9BRmMwHCfGm47ojYa1Z3ZqU,22670
36
+ codegraph_cli/models.py,sha256=o6Wlu8TtWEPDWgq0AhB1xJtxzVfViBMQoCW_4AS29p0,794
37
+ codegraph_cli/models_v2.py,sha256=8zS16hT4SlIahMBwDZ7j4I8fdm3YyWv5qD0urJv1LsI,5521
38
+ codegraph_cli/orchestrator.py,sha256=AguYRsZ-xu-biM3-uZMhRf6QaoQEqSlGxC7eL3fZqXE,1790
39
+ codegraph_cli/parser.py,sha256=vtKOwirs30O9UxJ6siHzvEWLx4-PxMn5dAfhb42QBG4,29193
40
+ codegraph_cli/performance_analyzer.py,sha256=f9PNMZQ_8jWvzs4osPYgTW2eOsvDytIRmfWWO5DuWCs,10090
41
+ codegraph_cli/project_context.py,sha256=O9VcLj21RN8i_f_yNesX6s42fjENxWp333bBRQ6zLLc,9790
42
+ codegraph_cli/rag.py,sha256=xioQvKhuLddwJ0wgciNJXik9Qc9y5YfHL1FiLqRjZmo,17725
43
+ codegraph_cli/refactor_agent.py,sha256=ktQyhUn5YjhbXt7IVgKV7JgSZaT4AivWLLpMlZ7NLXw,16657
44
+ codegraph_cli/security_scanner.py,sha256=rPf8PcYMBllco4PkrxfILJEqKaj1UuEKqCupVycKpo8,15681
45
+ codegraph_cli/storage.py,sha256=vUSxS2KSKmnCmnDpwcAV8M6pbZ3aJmfzM1tBH-zBDUI,24457
46
+ codegraph_cli/testgen_agent.py,sha256=rqlKbLeEnjfzAZhQUXqLPwFKwRIpiHriTPxVgPCuR_g,10233
47
+ codegraph_cli/validation_engine.py,sha256=pzoRH_b06gWfiDZ5Yiecf0SWDWs4oJ66JokggGZZbaw,9029
48
+ codegraph_cli/vector_store.py,sha256=EbmX4-ZIqTDWQyLK2E3PhTdc_hRHqsmrODvShohoii0,13520
49
+ codegraph_cli/templates/graph_interactive.html,sha256=PFpU69DbY-Vkcu5UTiqOva_LrZjN2erdz7VXPgNSt6Q,7813
50
+ codegraph_cli-2.1.2.dist-info/licenses/LICENSE,sha256=3PiQTjpJW4DDJz8k5pk-WqX9TrVQD3fNrVNzbTEyW-A,1066
51
+ codegraph_cli-2.1.2.dist-info/METADATA,sha256=qCKui85am2gDbzA9pfJAR1pGrUSqwyngoHy8kwVkssI,13536
52
+ codegraph_cli-2.1.2.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
53
+ codegraph_cli-2.1.2.dist-info/entry_points.txt,sha256=X9M9UdR-uY2BmaTvb4GnHFbLzjLisOtXh6T72yl89_Y,50
54
+ codegraph_cli-2.1.2.dist-info/top_level.txt,sha256=XKmdlLsrhdgVW-pN4vzdo-ZTl-9_Rk94SXcM2YRAmHk,14
55
+ codegraph_cli-2.1.2.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cg = codegraph_cli.cli:cli_main
@@ -1,43 +0,0 @@
1
- codegraph_cli/__init__.py,sha256=qTFuIhMU-qKms6nhobwg3YUgDBKR0JenO_3Pq5VgHEk,78
2
- codegraph_cli/agents.py,sha256=i4VpklF2WLgpS7bmCPcH5lAzohxErZLP5wvssmEK38w,7010
3
- codegraph_cli/bug_detector.py,sha256=soT4luB5eQx6qrU5rgFCsG44rdo9jRpV0hn-b0f3LPo,16419
4
- codegraph_cli/chat_agent.py,sha256=dbkEY3zaPJh0ztYaVkCwkTw5zSLGArHkChC_6JWOneg,13685
5
- codegraph_cli/chat_session.py,sha256=GVey-hnfsa9fa6k2PY1sgy1wtrYSUHKE5cJDV2hG-tg,7038
6
- codegraph_cli/cli.py,sha256=eEzH4TOgyMAFJpVhh2hU0MD2oh61s1hBomeSFx3I3qE,11199
7
- codegraph_cli/cli_chat.py,sha256=8vk0zrhFQ6MGUa4KomZfnlBXN-Tw-D6aWjqeQPVFxL8,14172
8
- codegraph_cli/cli_diagnose.py,sha256=gT4qHayC_uWRMsr1Tf92BCFJfRcXAMq8XdEImatrSkU,4260
9
- codegraph_cli/cli_refactor.py,sha256=_u5RvsF3-KV5C_QnErA4sowlkIAmlxSeLeWKBmSusCI,8176
10
- codegraph_cli/cli_setup.py,sha256=f8KdcE0Tf9HQ_ewQm1R_4OZ91bOmi0kuM8eQ05Vs7is,24749
11
- codegraph_cli/cli_test.py,sha256=ZFPIRhbZ9YYIuSWJyPYLi9PEdHZAI9h8FkWXXRYfqcw,5561
12
- codegraph_cli/cli_v2.py,sha256=iuw3h5gtvsTg5SdUFXSdLx1Ttiq-oUDM7ZugMqMfETg,9465
13
- codegraph_cli/codegen_agent.py,sha256=F73YZIIVgE5pOvJsKBl0cv22VW3rP_SGj2viwZS-rqE,9193
14
- codegraph_cli/config.py,sha256=rOq4lDvqmoly1pfEukzPeCUb76BMqK7cUbzDSFHhsC8,1291
15
- codegraph_cli/config_manager.py,sha256=K81Ca7jHzHlwxoJsSeRezl8V-iGGJD_IEGE7ZWo3eG0,11422
16
- codegraph_cli/context_manager.py,sha256=qEKjI7llcLX9y8NFTDs3aiHDm7nDF9jTbhu3tHHOk6w,16824
17
- codegraph_cli/crew_agents.py,sha256=PKb0skEmxBy2_Ryq67XccmPizLFLgPNs43xOqjSHcGM,6006
18
- codegraph_cli/crew_chat.py,sha256=tdo8Zf9lOp5-XMdvNntLxo5hKrDcEOe3165cH22-nvQ,6149
19
- codegraph_cli/crew_tools.py,sha256=wg39mkPDHeE2Wuy3q54xl5d243MHQZBcXCWR2rHrd3M,19339
20
- codegraph_cli/diff_engine.py,sha256=VGwPG_pZFVz8lGuVHZz_0nhrDocglugw6TumMmnHdTY,8968
21
- codegraph_cli/embeddings.py,sha256=YoR6OjiIFC628EnLhNWbw2-_YWqtxSlL--tNWHGsKRk,14611
22
- codegraph_cli/graph_export.py,sha256=gPyRrOc4_gnW-JaHmmp2pAD60PiZIj_uYA6b0xfU5O0,4562
23
- codegraph_cli/llm.py,sha256=RpGjJKhUvejmtCHTb9FpGInwPtfaEkHBChBSBTwxUUo,23170
24
- codegraph_cli/models.py,sha256=o6Wlu8TtWEPDWgq0AhB1xJtxzVfViBMQoCW_4AS29p0,794
25
- codegraph_cli/models_v2.py,sha256=8zS16hT4SlIahMBwDZ7j4I8fdm3YyWv5qD0urJv1LsI,5521
26
- codegraph_cli/orchestrator.py,sha256=AguYRsZ-xu-biM3-uZMhRf6QaoQEqSlGxC7eL3fZqXE,1790
27
- codegraph_cli/parser.py,sha256=vtKOwirs30O9UxJ6siHzvEWLx4-PxMn5dAfhb42QBG4,29193
28
- codegraph_cli/performance_analyzer.py,sha256=f9PNMZQ_8jWvzs4osPYgTW2eOsvDytIRmfWWO5DuWCs,10090
29
- codegraph_cli/project_context.py,sha256=9tSEDEPRmfEQfLcyWXjPa8IGFC1sZI1ysochoxrm4y0,7672
30
- codegraph_cli/rag.py,sha256=DTijL8uZjdEeShQHWFtC_EkoINRgzT3Cr_oHuHHQcfA,7125
31
- codegraph_cli/refactor_agent.py,sha256=ktQyhUn5YjhbXt7IVgKV7JgSZaT4AivWLLpMlZ7NLXw,16657
32
- codegraph_cli/security_scanner.py,sha256=rPf8PcYMBllco4PkrxfILJEqKaj1UuEKqCupVycKpo8,15681
33
- codegraph_cli/storage.py,sha256=XR_w6nJ_ge4r72bfxuuY8Zt8qi8CtHm4EE268EB5kBE,14340
34
- codegraph_cli/testgen_agent.py,sha256=rqlKbLeEnjfzAZhQUXqLPwFKwRIpiHriTPxVgPCuR_g,10233
35
- codegraph_cli/validation_engine.py,sha256=pzoRH_b06gWfiDZ5Yiecf0SWDWs4oJ66JokggGZZbaw,9029
36
- codegraph_cli/vector_store.py,sha256=qbIBVDoNOha8JgZwrk7_Jdb7RMYUnBLphJfmqQdrVN4,9912
37
- codegraph_cli/templates/graph_interactive.html,sha256=PFpU69DbY-Vkcu5UTiqOva_LrZjN2erdz7VXPgNSt6Q,7813
38
- codegraph_cli-2.1.0.dist-info/licenses/LICENSE,sha256=3PiQTjpJW4DDJz8k5pk-WqX9TrVQD3fNrVNzbTEyW-A,1066
39
- codegraph_cli-2.1.0.dist-info/METADATA,sha256=p1GW3UN_gchcHGMyx7_mMT9zZpGkTNbHEcR2DBst6xg,11183
40
- codegraph_cli-2.1.0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
41
- codegraph_cli-2.1.0.dist-info/entry_points.txt,sha256=_p5CutxbiWjGVTx9GPeYJ30XOblccdf7SCCNtCkPnaA,45
42
- codegraph_cli-2.1.0.dist-info/top_level.txt,sha256=XKmdlLsrhdgVW-pN4vzdo-ZTl-9_Rk94SXcM2YRAmHk,14
43
- codegraph_cli-2.1.0.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- cg = codegraph_cli.cli:app