codythia 0.0.1__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.
- codythia-0.0.1/PKG-INFO +28 -0
- codythia-0.0.1/README.md +18 -0
- codythia-0.0.1/codythia/__init__.py +8 -0
- codythia-0.0.1/codythia.egg-info/PKG-INFO +28 -0
- codythia-0.0.1/codythia.egg-info/SOURCES.txt +7 -0
- codythia-0.0.1/codythia.egg-info/dependency_links.txt +1 -0
- codythia-0.0.1/codythia.egg-info/top_level.txt +1 -0
- codythia-0.0.1/pyproject.toml +18 -0
- codythia-0.0.1/setup.cfg +4 -0
codythia-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codythia
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Local Graph-RAG for code — structure × semantics × time, in a single SQLite file. (Name placeholder — release pending.)
|
|
5
|
+
Classifier: Development Status :: 1 - Planning
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# codythia
|
|
12
|
+
|
|
13
|
+
> Local Graph-RAG for code — **structure × semantics × time**, in a single SQLite file.
|
|
14
|
+
|
|
15
|
+
**This is a name placeholder.** The package is under development and not yet released; installing
|
|
16
|
+
this version gives you nothing but the reserved name. The first functional release will supersede it.
|
|
17
|
+
|
|
18
|
+
## What codythia will be
|
|
19
|
+
|
|
20
|
+
One AST node is simultaneously three things:
|
|
21
|
+
|
|
22
|
+
- a **graph entity** — functions/classes/calls parsed by AST into nodes + edges,
|
|
23
|
+
- a **RAG chunk** — carrying its own embedding for semantic entry,
|
|
24
|
+
- a **versioned object** — with a validity range across git commits.
|
|
25
|
+
|
|
26
|
+
Because one object carries all three, codythia answers not only *"where is X?"* but *"what changed
|
|
27
|
+
around this bug — and why?"* — the intersection of **semantically relevant × structurally connected ×
|
|
28
|
+
recently and behaviorally changed** that no single tool (git, RAG, or graph) delivers alone.
|
codythia-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# codythia
|
|
2
|
+
|
|
3
|
+
> Local Graph-RAG for code — **structure × semantics × time**, in a single SQLite file.
|
|
4
|
+
|
|
5
|
+
**This is a name placeholder.** The package is under development and not yet released; installing
|
|
6
|
+
this version gives you nothing but the reserved name. The first functional release will supersede it.
|
|
7
|
+
|
|
8
|
+
## What codythia will be
|
|
9
|
+
|
|
10
|
+
One AST node is simultaneously three things:
|
|
11
|
+
|
|
12
|
+
- a **graph entity** — functions/classes/calls parsed by AST into nodes + edges,
|
|
13
|
+
- a **RAG chunk** — carrying its own embedding for semantic entry,
|
|
14
|
+
- a **versioned object** — with a validity range across git commits.
|
|
15
|
+
|
|
16
|
+
Because one object carries all three, codythia answers not only *"where is X?"* but *"what changed
|
|
17
|
+
around this bug — and why?"* — the intersection of **semantically relevant × structurally connected ×
|
|
18
|
+
recently and behaviorally changed** that no single tool (git, RAG, or graph) delivers alone.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""codythia — name placeholder.
|
|
2
|
+
|
|
3
|
+
Local Graph-RAG for code: structure x semantics x time, in a single SQLite file.
|
|
4
|
+
This distribution reserves the name only; it contains no functionality. The first
|
|
5
|
+
functional release will supersede it.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codythia
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Local Graph-RAG for code — structure × semantics × time, in a single SQLite file. (Name placeholder — release pending.)
|
|
5
|
+
Classifier: Development Status :: 1 - Planning
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# codythia
|
|
12
|
+
|
|
13
|
+
> Local Graph-RAG for code — **structure × semantics × time**, in a single SQLite file.
|
|
14
|
+
|
|
15
|
+
**This is a name placeholder.** The package is under development and not yet released; installing
|
|
16
|
+
this version gives you nothing but the reserved name. The first functional release will supersede it.
|
|
17
|
+
|
|
18
|
+
## What codythia will be
|
|
19
|
+
|
|
20
|
+
One AST node is simultaneously three things:
|
|
21
|
+
|
|
22
|
+
- a **graph entity** — functions/classes/calls parsed by AST into nodes + edges,
|
|
23
|
+
- a **RAG chunk** — carrying its own embedding for semantic entry,
|
|
24
|
+
- a **versioned object** — with a validity range across git commits.
|
|
25
|
+
|
|
26
|
+
Because one object carries all three, codythia answers not only *"where is X?"* but *"what changed
|
|
27
|
+
around this bug — and why?"* — the intersection of **semantically relevant × structurally connected ×
|
|
28
|
+
recently and behaviorally changed** that no single tool (git, RAG, or graph) delivers alone.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
codythia
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "codythia"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Local Graph-RAG for code — structure × semantics × time, in a single SQLite file. (Name placeholder — release pending.)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Development Status :: 1 - Planning",
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"Topic :: Software Development :: Libraries",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[tool.setuptools.packages.find]
|
|
18
|
+
include = ["codythia*"]
|
codythia-0.0.1/setup.cfg
ADDED