ctxgraph 0.3.1__tar.gz → 0.3.2__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.
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/PKG-INFO +7 -5
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/README.md +4 -2
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/pyproject.toml +3 -3
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph.egg-info/PKG-INFO +7 -5
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/setup.cfg +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/analyzers/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/analyzers/python/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/analyzers/python/importer.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/analyzers/python/semantic.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/analyzers/python/symbols.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/capsule/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/capsule/renderer.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/capsule/savings.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/cli/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/cli/main.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/clients/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/clients/models.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/config/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/config/init.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/config/providers.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/config/settings.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/exclude/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/exclude/patterns.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/graph/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/graph/builder.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/graph/models.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/graph/query.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/graph/storage.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/history.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/mcp/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/mcp/server.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/skills/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/view/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/view/visualizer.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/wrapper/__init__.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph/wrapper/claude.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph.egg-info/SOURCES.txt +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph.egg-info/dependency_links.txt +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph.egg-info/entry_points.txt +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph.egg-info/requires.txt +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/src/ctxgraph.egg-info/top_level.txt +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_analyzers.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_benchmark.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_capsule.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_config.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_e2e.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_integration.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_model_mode.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_models.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_query.py +0 -0
- {ctxgraph-0.3.1 → ctxgraph-0.3.2}/tests/test_storage.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ctxgraph
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: 97% cheaper AI coding. ctx init → ctx build → ctx ask. Knowledge graphs, token-efficient capsules, query history, skills, and multi-provider LLM answers (Ollama, Claude, OpenAI, Azure). Cut context costs from cents to fractions of a cent.
|
|
5
5
|
Author: ctxgraph contributors
|
|
6
6
|
License: MIT
|
|
7
|
-
Keywords: code-graph,knowledge-graph,claude,code-analysis,ai-context
|
|
7
|
+
Keywords: code-graph,knowledge-graph,claude,code-analysis,ai-context,token-savings,ollama,openai,ctx,capsule
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -29,14 +29,16 @@ Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
|
29
29
|
|
|
30
30
|
# ctxgraph — AI Context Engine for Python
|
|
31
31
|
|
|
32
|
-
**Slash your LLM token costs by 97%.** ctxgraph builds a multi-layer knowledge graph from your Python codebase
|
|
32
|
+
**Slash your LLM token costs by 97%.** Stop dumping entire files into AI context. ctxgraph builds a multi-layer knowledge graph from your Python codebase and generates *compact context capsules* — delivering only what your AI needs, not every line of code.
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
pip install ctxgraph
|
|
36
36
|
|
|
37
|
-
ctx
|
|
37
|
+
ctx init # Scaffold .ctxgraph with config + default skills
|
|
38
|
+
ctx build # Build knowledge graph (AST analysis → SQLite)
|
|
38
39
|
ctx ask "how does JWT auth work" # Ask questions with automatic token savings
|
|
39
40
|
ctx capsule "fix JWT expiry" # 92-99% fewer tokens vs raw code
|
|
41
|
+
ctx history --stats # Track total tokens saved across all queries
|
|
40
42
|
ccg "fix the login redirect bug" # Launch Claude with context pre-loaded
|
|
41
43
|
ctx view # Interactive D3.js visualization (or --svg for static)
|
|
42
44
|
```
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# ctxgraph — AI Context Engine for Python
|
|
2
2
|
|
|
3
|
-
**Slash your LLM token costs by 97%.** ctxgraph builds a multi-layer knowledge graph from your Python codebase
|
|
3
|
+
**Slash your LLM token costs by 97%.** Stop dumping entire files into AI context. ctxgraph builds a multi-layer knowledge graph from your Python codebase and generates *compact context capsules* — delivering only what your AI needs, not every line of code.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
pip install ctxgraph
|
|
7
7
|
|
|
8
|
-
ctx
|
|
8
|
+
ctx init # Scaffold .ctxgraph with config + default skills
|
|
9
|
+
ctx build # Build knowledge graph (AST analysis → SQLite)
|
|
9
10
|
ctx ask "how does JWT auth work" # Ask questions with automatic token savings
|
|
10
11
|
ctx capsule "fix JWT expiry" # 92-99% fewer tokens vs raw code
|
|
12
|
+
ctx history --stats # Track total tokens saved across all queries
|
|
11
13
|
ccg "fix the login redirect bug" # Launch Claude with context pre-loaded
|
|
12
14
|
ctx view # Interactive D3.js visualization (or --svg for static)
|
|
13
15
|
```
|
|
@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ctxgraph"
|
|
7
|
-
version = "0.3.
|
|
8
|
-
description = "
|
|
7
|
+
version = "0.3.2"
|
|
8
|
+
description = "97% cheaper AI coding. ctx init → ctx build → ctx ask. Knowledge graphs, token-efficient capsules, query history, skills, and multi-provider LLM answers (Ollama, Claude, OpenAI, Azure). Cut context costs from cents to fractions of a cent."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "ctxgraph contributors"}
|
|
14
14
|
]
|
|
15
|
-
keywords = ["code-graph", "knowledge-graph", "claude", "code-analysis", "ai-context"]
|
|
15
|
+
keywords = ["code-graph", "knowledge-graph", "claude", "code-analysis", "ai-context", "token-savings", "ollama", "openai", "ctx", "capsule"]
|
|
16
16
|
classifiers = [
|
|
17
17
|
"Development Status :: 3 - Alpha",
|
|
18
18
|
"Intended Audience :: Developers",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ctxgraph
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.3.2
|
|
4
|
+
Summary: 97% cheaper AI coding. ctx init → ctx build → ctx ask. Knowledge graphs, token-efficient capsules, query history, skills, and multi-provider LLM answers (Ollama, Claude, OpenAI, Azure). Cut context costs from cents to fractions of a cent.
|
|
5
5
|
Author: ctxgraph contributors
|
|
6
6
|
License: MIT
|
|
7
|
-
Keywords: code-graph,knowledge-graph,claude,code-analysis,ai-context
|
|
7
|
+
Keywords: code-graph,knowledge-graph,claude,code-analysis,ai-context,token-savings,ollama,openai,ctx,capsule
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -29,14 +29,16 @@ Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
|
29
29
|
|
|
30
30
|
# ctxgraph — AI Context Engine for Python
|
|
31
31
|
|
|
32
|
-
**Slash your LLM token costs by 97%.** ctxgraph builds a multi-layer knowledge graph from your Python codebase
|
|
32
|
+
**Slash your LLM token costs by 97%.** Stop dumping entire files into AI context. ctxgraph builds a multi-layer knowledge graph from your Python codebase and generates *compact context capsules* — delivering only what your AI needs, not every line of code.
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
pip install ctxgraph
|
|
36
36
|
|
|
37
|
-
ctx
|
|
37
|
+
ctx init # Scaffold .ctxgraph with config + default skills
|
|
38
|
+
ctx build # Build knowledge graph (AST analysis → SQLite)
|
|
38
39
|
ctx ask "how does JWT auth work" # Ask questions with automatic token savings
|
|
39
40
|
ctx capsule "fix JWT expiry" # 92-99% fewer tokens vs raw code
|
|
41
|
+
ctx history --stats # Track total tokens saved across all queries
|
|
40
42
|
ccg "fix the login redirect bug" # Launch Claude with context pre-loaded
|
|
41
43
|
ctx view # Interactive D3.js visualization (or --svg for static)
|
|
42
44
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|