codegraph-cli 2.1.1__py3-none-any.whl → 2.1.3__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 +29 -10
- codegraph_cli/crew_chat.py +152 -13
- codegraph_cli/crew_tools.py +31 -4
- 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/security_scanner.py +39 -1
- codegraph_cli/storage.py +310 -14
- codegraph_cli/vector_store.py +126 -22
- codegraph_cli-2.1.3.dist-info/METADATA +431 -0
- codegraph_cli-2.1.3.dist-info/RECORD +55 -0
- codegraph_cli-2.1.3.dist-info/entry_points.txt +2 -0
- codegraph_cli-2.1.1.dist-info/METADATA +0 -364
- 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.3.dist-info}/WHEEL +0 -0
- {codegraph_cli-2.1.1.dist-info → codegraph_cli-2.1.3.dist-info}/licenses/LICENSE +0 -0
- {codegraph_cli-2.1.1.dist-info → codegraph_cli-2.1.3.dist-info}/top_level.txt +0 -0
|
@@ -1,364 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: codegraph-cli
|
|
3
|
-
Version: 2.1.1
|
|
4
|
-
Summary: AI-powered code intelligence CLI with multi-agent analysis, impact graphs, and conversational coding.
|
|
5
|
-
Author-email: Ali Nasir <muhammadalinasir00786@gmail.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/al1-nasir/codegraph-cli
|
|
8
|
-
Project-URL: Documentation, https://github.com/al1-nasir/codegraph-cli#readme
|
|
9
|
-
Project-URL: Repository, https://github.com/al1-nasir/codegraph-cli
|
|
10
|
-
Project-URL: Issues, https://github.com/al1-nasir/codegraph-cli/issues
|
|
11
|
-
Project-URL: Changelog, https://github.com/al1-nasir/codegraph-cli/blob/main/CHANGELOG.md
|
|
12
|
-
Keywords: code-analysis,code-intelligence,cli,ai,code-graph,rag,impact-analysis,refactoring,crewai,multi-agent
|
|
13
|
-
Classifier: Development Status :: 4 - Beta
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Topic :: Software Development :: Code Generators
|
|
16
|
-
Classifier: Topic :: Software Development :: Quality Assurance
|
|
17
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
-
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
-
Classifier: Environment :: Console
|
|
26
|
-
Requires-Python: >=3.9
|
|
27
|
-
Description-Content-Type: text/markdown
|
|
28
|
-
License-File: LICENSE
|
|
29
|
-
Requires-Dist: requests>=2.31.0
|
|
30
|
-
Requires-Dist: typer<1.0.0,>=0.12.0
|
|
31
|
-
Requires-Dist: toml>=0.10.2
|
|
32
|
-
Requires-Dist: lancedb>=0.4.0
|
|
33
|
-
Requires-Dist: pyarrow>=14.0.0
|
|
34
|
-
Requires-Dist: tree-sitter>=0.24.0
|
|
35
|
-
Requires-Dist: tree-sitter-python>=0.23.0
|
|
36
|
-
Requires-Dist: tree-sitter-javascript>=0.23.0
|
|
37
|
-
Requires-Dist: tree-sitter-typescript>=0.23.0
|
|
38
|
-
Requires-Dist: litellm>=1.30.0
|
|
39
|
-
Provides-Extra: crew
|
|
40
|
-
Requires-Dist: crewai>=0.80.0; extra == "crew"
|
|
41
|
-
Provides-Extra: dev
|
|
42
|
-
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
43
|
-
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
44
|
-
Requires-Dist: pytest-mock>=3.11.0; extra == "dev"
|
|
45
|
-
Requires-Dist: build>=1.0.0; extra == "dev"
|
|
46
|
-
Requires-Dist: twine>=5.0.0; extra == "dev"
|
|
47
|
-
Provides-Extra: embeddings
|
|
48
|
-
Requires-Dist: torch>=2.0.0; extra == "embeddings"
|
|
49
|
-
Requires-Dist: transformers<5.0.0,>=4.48.0; extra == "embeddings"
|
|
50
|
-
Provides-Extra: all
|
|
51
|
-
Requires-Dist: crewai>=0.80.0; extra == "all"
|
|
52
|
-
Requires-Dist: torch>=2.0.0; extra == "all"
|
|
53
|
-
Requires-Dist: transformers<5.0.0,>=4.48.0; extra == "all"
|
|
54
|
-
Dynamic: license-file
|
|
55
|
-
|
|
56
|
-
# CodeGraph CLI
|
|
57
|
-
|
|
58
|
-
**Code intelligence from the terminal. Semantic search, impact analysis, multi-agent code generation, and conversational coding — all backed by your choice of LLM.**
|
|
59
|
-
|
|
60
|
-
[](LICENSE)
|
|
61
|
-
[](https://www.python.org)
|
|
62
|
-
[](https://github.com/al1-nasir/codegraph-cli)
|
|
63
|
-
|
|
64
|
-
---
|
|
65
|
-
|
|
66
|
-
## Overview
|
|
67
|
-
|
|
68
|
-
CodeGraph CLI (`cg`) parses your codebase into a semantic graph, then exposes that graph through search, impact analysis, visualization, and a conversational interface. It supports six LLM providers and optionally runs a CrewAI multi-agent system that can read, write, patch, and rollback files autonomously.
|
|
69
|
-
|
|
70
|
-
Core capabilities:
|
|
71
|
-
|
|
72
|
-
- **Semantic Search** — find code by meaning, not string matching
|
|
73
|
-
- **Impact Analysis** — trace multi-hop dependencies before making changes
|
|
74
|
-
- **Graph Visualization** — interactive HTML and Graphviz DOT exports
|
|
75
|
-
- **Conversational Chat** — natural language coding sessions with RAG context
|
|
76
|
-
- **Multi-Agent System** — CrewAI-powered agents for code generation, refactoring, and analysis
|
|
77
|
-
- **File Rollback** — automatic backups before every file modification
|
|
78
|
-
|
|
79
|
-
---
|
|
80
|
-
|
|
81
|
-
## Installation
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
pip install codegraph-cli
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
With neural embedding models (semantic code search):
|
|
88
|
-
|
|
89
|
-
```bash
|
|
90
|
-
pip install codegraph-cli[embeddings]
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
With CrewAI multi-agent support:
|
|
94
|
-
|
|
95
|
-
```bash
|
|
96
|
-
pip install codegraph-cli[crew]
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
Everything:
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
pip install codegraph-cli[all]
|
|
103
|
-
```
|
|
104
|
-
|
|
105
|
-
For development:
|
|
106
|
-
|
|
107
|
-
```bash
|
|
108
|
-
git clone https://github.com/al1-nasir/codegraph-cli.git
|
|
109
|
-
cd codegraph-cli
|
|
110
|
-
pip install -e ".[dev]"
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
---
|
|
114
|
-
|
|
115
|
-
## Quick Start
|
|
116
|
-
|
|
117
|
-
### 1. Configure your LLM provider
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
cg setup
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
This runs an interactive wizard that writes configuration to `~/.codegraph/config.toml`. Alternatively, switch providers directly:
|
|
124
|
-
|
|
125
|
-
```bash
|
|
126
|
-
cg set-llm openrouter
|
|
127
|
-
cg set-llm groq
|
|
128
|
-
cg set-llm ollama
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
### 2. Index a project
|
|
132
|
-
|
|
133
|
-
```bash
|
|
134
|
-
cg index /path/to/project --name myproject
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
This parses the source tree using tree-sitter, builds a dependency graph in SQLite, and generates embeddings for semantic search.
|
|
138
|
-
|
|
139
|
-
### 3. Use it
|
|
140
|
-
|
|
141
|
-
```bash
|
|
142
|
-
cg search "authentication logic"
|
|
143
|
-
cg impact UserService --hops 3
|
|
144
|
-
cg graph process_payment --depth 2
|
|
145
|
-
cg chat start
|
|
146
|
-
cg chat start --crew # multi-agent mode
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
---
|
|
150
|
-
|
|
151
|
-
## Supported LLM Providers
|
|
152
|
-
|
|
153
|
-
| Provider | Type | Configuration |
|
|
154
|
-
|----------|------|---------------|
|
|
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` |
|
|
161
|
-
|
|
162
|
-
All configuration is stored in `~/.codegraph/config.toml`. No environment variables required.
|
|
163
|
-
|
|
164
|
-
```bash
|
|
165
|
-
cg show-llm # view current provider, model, and endpoint
|
|
166
|
-
cg unset-llm # reset to defaults
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
---
|
|
170
|
-
|
|
171
|
-
## Embedding Models
|
|
172
|
-
|
|
173
|
-
CodeGraph supports configurable embedding models for semantic code search. Choose based on your hardware and quality needs:
|
|
174
|
-
|
|
175
|
-
| Model | Download | Dim | Quality | Command |
|
|
176
|
-
|-------|----------|-----|---------|---------|
|
|
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` |
|
|
182
|
-
|
|
183
|
-
The default is `hash` (zero-dependency, no download). Neural models require the `[embeddings]` extra and are downloaded on first use from HuggingFace.
|
|
184
|
-
|
|
185
|
-
```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
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
After changing the embedding model, re-index your project:
|
|
192
|
-
|
|
193
|
-
```bash
|
|
194
|
-
cg index /path/to/project
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
---
|
|
198
|
-
|
|
199
|
-
## Commands
|
|
200
|
-
|
|
201
|
-
### Project Management
|
|
202
|
-
|
|
203
|
-
```bash
|
|
204
|
-
cg index <path> [--name NAME] # parse and index a codebase
|
|
205
|
-
cg list-projects # list all indexed projects
|
|
206
|
-
cg load-project <name> # switch active project
|
|
207
|
-
cg current-project # print active project name
|
|
208
|
-
cg delete-project <name> # remove a project index
|
|
209
|
-
cg merge-projects <src> <dst> # merge two project graphs
|
|
210
|
-
cg unload-project # unload without deleting
|
|
211
|
-
```
|
|
212
|
-
|
|
213
|
-
### Search and Analysis
|
|
214
|
-
|
|
215
|
-
```bash
|
|
216
|
-
cg search <query> [--top-k N] # semantic search across the graph
|
|
217
|
-
cg impact <symbol> [--hops N] # multi-hop dependency impact analysis
|
|
218
|
-
cg graph <symbol> [--depth N] # ASCII dependency graph
|
|
219
|
-
cg rag-context <query> [--top-k N] # raw RAG retrieval for debugging
|
|
220
|
-
```
|
|
221
|
-
|
|
222
|
-
### Graph Export
|
|
223
|
-
|
|
224
|
-
```bash
|
|
225
|
-
cg export-graph --format html # interactive vis.js visualization
|
|
226
|
-
cg export-graph --format dot # Graphviz DOT format
|
|
227
|
-
cg export-graph MyClass -f html -o out.html # focused subgraph
|
|
228
|
-
```
|
|
229
|
-
|
|
230
|
-
### Interactive Chat
|
|
231
|
-
|
|
232
|
-
```bash
|
|
233
|
-
cg chat start # start or resume a session
|
|
234
|
-
cg chat start --new # force a new session
|
|
235
|
-
cg chat start --crew # multi-agent mode (CrewAI)
|
|
236
|
-
cg chat start -s <id> # resume a specific session
|
|
237
|
-
cg chat list # list all sessions
|
|
238
|
-
cg chat delete <id> # delete a session
|
|
239
|
-
```
|
|
240
|
-
|
|
241
|
-
In-chat commands:
|
|
242
|
-
|
|
243
|
-
| Command | Mode | Description |
|
|
244
|
-
|---------|------|-------------|
|
|
245
|
-
| `/help` | Both | Show available commands |
|
|
246
|
-
| `/clear` | Both | Clear conversation history |
|
|
247
|
-
| `/new` | Both | Start a fresh session |
|
|
248
|
-
| `/exit` | Both | Save and exit |
|
|
249
|
-
| `/apply` | Standard | Apply pending code proposal |
|
|
250
|
-
| `/preview` | Standard | Preview pending file changes |
|
|
251
|
-
| `/backups` | Crew | List all file backups |
|
|
252
|
-
| `/rollback <file>` | Crew | Restore a file from backup |
|
|
253
|
-
| `/undo <file>` | Crew | Alias for rollback |
|
|
254
|
-
|
|
255
|
-
### Code Generation (v2)
|
|
256
|
-
|
|
257
|
-
```bash
|
|
258
|
-
cg v2 generate "add a REST endpoint for user deletion"
|
|
259
|
-
cg v2 review src/auth.py --check-security
|
|
260
|
-
cg v2 refactor rename-symbol OldName NewName
|
|
261
|
-
cg v2 refactor extract-function target_fn 45 60
|
|
262
|
-
cg v2 test unit process_payment
|
|
263
|
-
cg v2 diagnose check src/
|
|
264
|
-
cg v2 diagnose fix src/auth.py
|
|
265
|
-
cg v2 rollback <file>
|
|
266
|
-
cg v2 list-backups
|
|
267
|
-
```
|
|
268
|
-
|
|
269
|
-
---
|
|
270
|
-
|
|
271
|
-
## Multi-Agent System
|
|
272
|
-
|
|
273
|
-
When you run `cg chat start --crew`, CodeGraph launches a CrewAI pipeline with four specialized agents:
|
|
274
|
-
|
|
275
|
-
| Agent | Role | Tools |
|
|
276
|
-
|-------|------|-------|
|
|
277
|
-
| Project Coordinator | Routes tasks to the right specialist | Delegation only |
|
|
278
|
-
| File System Engineer | File I/O, directory traversal, backups | list_directory, read_file, write_file, patch_file, delete_file, rollback_file, file_tree |
|
|
279
|
-
| Senior Software Developer | Code generation, refactoring, bug fixes | All tools (file ops + code analysis) |
|
|
280
|
-
| Code Intelligence Analyst | Search, dependency tracing, explanations | search_code, grep, project_summary, read_file |
|
|
281
|
-
|
|
282
|
-
Every file modification automatically creates a timestamped backup in `~/.codegraph/backups/`. Files can be rolled back to any previous state via `/rollback` or `cg v2 rollback`.
|
|
283
|
-
|
|
284
|
-
---
|
|
285
|
-
|
|
286
|
-
## Architecture
|
|
287
|
-
|
|
288
|
-
```
|
|
289
|
-
CLI Layer (Typer)
|
|
290
|
-
|
|
|
291
|
-
+-- MCPOrchestrator ----------> GraphStore (SQLite)
|
|
292
|
-
| | |
|
|
293
|
-
| +-- Parser (tree-sitter) +-- VectorStore (LanceDB)
|
|
294
|
-
| +-- RAGRetriever |
|
|
295
|
-
| +-- LLM Adapter +-- Embeddings (configurable)
|
|
296
|
-
| hash | minilm | bge-base
|
|
297
|
-
| jina-code | qodo-1.5b
|
|
298
|
-
+-- ChatAgent (standard mode)
|
|
299
|
-
|
|
|
300
|
-
+-- CrewChatAgent (--crew mode)
|
|
301
|
-
|
|
|
302
|
-
+-- Coordinator Agent
|
|
303
|
-
+-- File System Agent -----> 8 file operation tools
|
|
304
|
-
+-- Code Gen Agent --------> all 11 tools
|
|
305
|
-
+-- Code Analysis Agent ---> 3 search/analysis tools
|
|
306
|
-
```
|
|
307
|
-
|
|
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/`.
|
|
309
|
-
|
|
310
|
-
**Parser**: tree-sitter grammars for Python, JavaScript, and TypeScript. Extracts modules, classes, functions, imports, and call relationships into a directed graph.
|
|
311
|
-
|
|
312
|
-
**Storage**: SQLite for the code graph (nodes + edges), LanceDB for vector embeddings. All data stored under `~/.codegraph/`.
|
|
313
|
-
|
|
314
|
-
**LLM Adapter**: Unified interface across six providers. For CrewAI, models are routed through LiteLLM. Configuration is read exclusively from `~/.codegraph/config.toml`.
|
|
315
|
-
|
|
316
|
-
---
|
|
317
|
-
|
|
318
|
-
## Project Structure
|
|
319
|
-
|
|
320
|
-
```
|
|
321
|
-
codegraph_cli/
|
|
322
|
-
cli.py # main Typer application, all top-level commands
|
|
323
|
-
cli_chat.py # interactive chat REPL with styled output
|
|
324
|
-
cli_setup.py # setup wizard, set-llm, unset-llm, set-embedding
|
|
325
|
-
cli_v2.py # v2 code generation commands
|
|
326
|
-
config.py # loads config from TOML
|
|
327
|
-
config_manager.py # TOML read/write, provider and embedding config
|
|
328
|
-
llm.py # multi-provider LLM adapter
|
|
329
|
-
parser.py # tree-sitter AST parsing
|
|
330
|
-
storage.py # SQLite graph store
|
|
331
|
-
embeddings.py # configurable embedding engine (5 models)
|
|
332
|
-
rag.py # RAG retriever
|
|
333
|
-
vector_store.py # LanceDB vector store
|
|
334
|
-
orchestrator.py # coordinates parsing, search, impact
|
|
335
|
-
graph_export.py # DOT and HTML export
|
|
336
|
-
project_context.py # unified file access layer
|
|
337
|
-
crew_tools.py # 11 CrewAI tools (file ops + analysis)
|
|
338
|
-
crew_agents.py # 4 specialized CrewAI agents
|
|
339
|
-
crew_chat.py # CrewAI orchestrator with rollback
|
|
340
|
-
chat_agent.py # standard chat agent
|
|
341
|
-
chat_session.py # session persistence
|
|
342
|
-
models.py # core data models
|
|
343
|
-
models_v2.py # v2 models (ChatSession, CodeProposal)
|
|
344
|
-
templates/
|
|
345
|
-
graph_interactive.html # vis.js graph template
|
|
346
|
-
```
|
|
347
|
-
|
|
348
|
-
---
|
|
349
|
-
|
|
350
|
-
## Development
|
|
351
|
-
|
|
352
|
-
```bash
|
|
353
|
-
git clone https://github.com/al1-nasir/codegraph-cli.git
|
|
354
|
-
cd codegraph-cli
|
|
355
|
-
python -m venv .venv && source .venv/bin/activate
|
|
356
|
-
pip install -e ".[dev,crew,embeddings]"
|
|
357
|
-
pytest
|
|
358
|
-
```
|
|
359
|
-
|
|
360
|
-
---
|
|
361
|
-
|
|
362
|
-
## License
|
|
363
|
-
|
|
364
|
-
MIT. See [LICENSE](LICENSE).
|
|
@@ -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
|