codegraph-cli 2.1.1__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.
- codegraph_cli/__init__.py +1 -1
- codegraph_cli/agents.py +59 -3
- codegraph_cli/chat_agent.py +58 -11
- codegraph_cli/cli.py +569 -54
- codegraph_cli/cli_chat.py +200 -95
- codegraph_cli/cli_diagnose.py +13 -2
- codegraph_cli/cli_docs.py +207 -0
- codegraph_cli/cli_explore.py +1053 -0
- codegraph_cli/cli_export.py +941 -0
- codegraph_cli/cli_groups.py +33 -0
- codegraph_cli/cli_health.py +316 -0
- codegraph_cli/cli_history.py +213 -0
- codegraph_cli/cli_onboard.py +380 -0
- codegraph_cli/cli_quickstart.py +256 -0
- codegraph_cli/cli_refactor.py +17 -3
- codegraph_cli/cli_setup.py +12 -12
- codegraph_cli/cli_suggestions.py +90 -0
- codegraph_cli/cli_test.py +17 -3
- codegraph_cli/cli_tui.py +210 -0
- codegraph_cli/cli_v2.py +24 -4
- codegraph_cli/cli_watch.py +158 -0
- codegraph_cli/cli_workflows.py +255 -0
- codegraph_cli/codegen_agent.py +15 -1
- codegraph_cli/config.py +18 -5
- codegraph_cli/context_manager.py +117 -15
- codegraph_cli/crew_agents.py +26 -7
- codegraph_cli/crew_chat.py +141 -12
- codegraph_cli/crew_tools.py +21 -1
- codegraph_cli/embeddings.py +95 -5
- codegraph_cli/llm.py +42 -55
- codegraph_cli/project_context.py +64 -1
- codegraph_cli/rag.py +282 -19
- codegraph_cli/storage.py +310 -14
- codegraph_cli/vector_store.py +110 -8
- {codegraph_cli-2.1.1.dist-info → codegraph_cli-2.1.2.dist-info}/METADATA +35 -24
- codegraph_cli-2.1.2.dist-info/RECORD +55 -0
- codegraph_cli-2.1.2.dist-info/entry_points.txt +2 -0
- codegraph_cli-2.1.1.dist-info/RECORD +0 -43
- codegraph_cli-2.1.1.dist-info/entry_points.txt +0 -2
- {codegraph_cli-2.1.1.dist-info → codegraph_cli-2.1.2.dist-info}/WHEEL +0 -0
- {codegraph_cli-2.1.1.dist-info → codegraph_cli-2.1.2.dist-info}/licenses/LICENSE +0 -0
- {codegraph_cli-2.1.1.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.
|
|
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:
|
|
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)
|
|
61
71
|
[](https://www.python.org)
|
|
62
|
-
[](https://github.com/al1-nasir/codegraph-cli)
|
|
73
|
+
[](https://github.com/al1-nasir/codegraph-cli/actions/workflows/ci.yml)
|
|
63
74
|
|
|
64
75
|
---
|
|
65
76
|
|
|
@@ -117,15 +128,15 @@ pip install -e ".[dev]"
|
|
|
117
128
|
### 1. Configure your LLM provider
|
|
118
129
|
|
|
119
130
|
```bash
|
|
120
|
-
cg setup
|
|
131
|
+
cg config setup
|
|
121
132
|
```
|
|
122
133
|
|
|
123
134
|
This runs an interactive wizard that writes configuration to `~/.codegraph/config.toml`. Alternatively, switch providers directly:
|
|
124
135
|
|
|
125
136
|
```bash
|
|
126
|
-
cg set-llm openrouter
|
|
127
|
-
cg set-llm groq
|
|
128
|
-
cg set-llm ollama
|
|
137
|
+
cg config set-llm openrouter
|
|
138
|
+
cg config set-llm groq
|
|
139
|
+
cg config set-llm ollama
|
|
129
140
|
```
|
|
130
141
|
|
|
131
142
|
### 2. Index a project
|
|
@@ -152,18 +163,18 @@ cg chat start --crew # multi-agent mode
|
|
|
152
163
|
|
|
153
164
|
| Provider | Type | Configuration |
|
|
154
165
|
|----------|------|---------------|
|
|
155
|
-
| Ollama | Local, free | `cg set-llm ollama` |
|
|
156
|
-
| Groq | Cloud, free tier | `cg set-llm groq` |
|
|
157
|
-
| OpenAI | Cloud | `cg set-llm openai` |
|
|
158
|
-
| Anthropic | Cloud | `cg set-llm anthropic` |
|
|
159
|
-
| Gemini | Cloud | `cg set-llm gemini` |
|
|
160
|
-
| 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` |
|
|
161
172
|
|
|
162
173
|
All configuration is stored in `~/.codegraph/config.toml`. No environment variables required.
|
|
163
174
|
|
|
164
175
|
```bash
|
|
165
|
-
cg show-llm # view current provider, model, and endpoint
|
|
166
|
-
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
|
|
167
178
|
```
|
|
168
179
|
|
|
169
180
|
---
|
|
@@ -174,18 +185,18 @@ CodeGraph supports configurable embedding models for semantic code search. Choos
|
|
|
174
185
|
|
|
175
186
|
| Model | Download | Dim | Quality | Command |
|
|
176
187
|
|-------|----------|-----|---------|---------|
|
|
177
|
-
| hash | 0 bytes | 256 | Keyword-only | `cg set-embedding hash` |
|
|
178
|
-
| minilm | ~80 MB | 384 | Decent | `cg set-embedding minilm` |
|
|
179
|
-
| bge-base | ~440 MB | 768 | Good | `cg set-embedding bge-base` |
|
|
180
|
-
| jina-code | ~550 MB | 768 | Code-aware | `cg set-embedding jina-code` |
|
|
181
|
-
| qodo-1.5b | ~6.2 GB | 1536 | Best | `cg set-embedding qodo-1.5b` |
|
|
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` |
|
|
182
193
|
|
|
183
194
|
The default is `hash` (zero-dependency, no download). Neural models require the `[embeddings]` extra and are downloaded on first use from HuggingFace.
|
|
184
195
|
|
|
185
196
|
```bash
|
|
186
|
-
cg set-embedding jina-code # switch to a neural model
|
|
187
|
-
cg show-embedding # view current model and all options
|
|
188
|
-
cg unset-embedding # reset to hash default
|
|
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
|
|
189
200
|
```
|
|
190
201
|
|
|
191
202
|
After changing the embedding model, re-index your project:
|
|
@@ -305,7 +316,7 @@ CLI Layer (Typer)
|
|
|
305
316
|
+-- Code Analysis Agent ---> 3 search/analysis tools
|
|
306
317
|
```
|
|
307
318
|
|
|
308
|
-
**Embeddings**: Five models available via `cg 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/`.
|
|
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/`.
|
|
309
320
|
|
|
310
321
|
**Parser**: tree-sitter grammars for Python, JavaScript, and TypeScript. Extracts modules, classes, functions, imports, and call relationships into a directed graph.
|
|
311
322
|
|
|
@@ -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,,
|
|
@@ -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=6BV6UADrInATgeywmzr0R7u0Ju4WuyRXgoWHq7lDbUA,14407
|
|
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=RWdx0H8G5UwIGGCOr6Z7WH04P7V0zedtEiD1236BD3U,6125
|
|
18
|
-
codegraph_cli/crew_chat.py,sha256=ZppRIp4D3RtcZItFPw6mFJxTJGGacbN_f_a1KmMMg-o,6235
|
|
19
|
-
codegraph_cli/crew_tools.py,sha256=wvYJn1w6nZIXPXyPMpiyqsl3kJ9kpR-sK6QOXcny6oM,19624
|
|
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.1.dist-info/licenses/LICENSE,sha256=3PiQTjpJW4DDJz8k5pk-WqX9TrVQD3fNrVNzbTEyW-A,1066
|
|
39
|
-
codegraph_cli-2.1.1.dist-info/METADATA,sha256=tooj5BPm3FdTkHR7en9n9Gp-zxqOEMpkEGt4yJWugMw,12829
|
|
40
|
-
codegraph_cli-2.1.1.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
|
|
41
|
-
codegraph_cli-2.1.1.dist-info/entry_points.txt,sha256=_p5CutxbiWjGVTx9GPeYJ30XOblccdf7SCCNtCkPnaA,45
|
|
42
|
-
codegraph_cli-2.1.1.dist-info/top_level.txt,sha256=XKmdlLsrhdgVW-pN4vzdo-ZTl-9_Rk94SXcM2YRAmHk,14
|
|
43
|
-
codegraph_cli-2.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|