tersecontext 0.1.0__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.
tersecontext/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tersecontext
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Minimum context. Maximum understanding.
|
|
5
|
+
Project-URL: Homepage, https://github.com/tersecontext/tersecontext
|
|
6
|
+
Project-URL: Repository, https://github.com/tersecontext/tersecontext
|
|
7
|
+
Author-email: Your Name <you@example.com>
|
|
8
|
+
License: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: code-analysis,context,knowledge-graph,llm,rag
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# TerseContext
|
|
18
|
+
|
|
19
|
+
**Minimum Context. Maximum Understanding. For you and for an LLM.**
|
|
20
|
+
|
|
21
|
+
TerseContext is a code indexing system that produces the smallest,
|
|
22
|
+
highest-confidence context window for LLMs working with codebases.
|
|
23
|
+
It combines static analysis (AST/graph) with dynamic analysis
|
|
24
|
+
(runtime traces) to give LLMs exactly what they need — and nothing they don't.
|
|
25
|
+
|
|
26
|
+
## Status
|
|
27
|
+
|
|
28
|
+
Pre-alpha. Active development.
|
|
29
|
+
|
|
30
|
+
## How it works
|
|
31
|
+
|
|
32
|
+
- Parses your codebase into a knowledge graph using Tree-sitter
|
|
33
|
+
- Enriches nodes with observed runtime behavior from your test suite
|
|
34
|
+
- Merges static and dynamic signals with provenance tags
|
|
35
|
+
- Serializes the minimum sufficient subgraph for any given query
|
|
36
|
+
|
|
37
|
+
## Coming soon
|
|
38
|
+
|
|
39
|
+
- [ ] Python parser (Tree-sitter)
|
|
40
|
+
- [ ] Neo4j graph writer
|
|
41
|
+
- [ ] Qdrant vector writer
|
|
42
|
+
- [ ] Runtime trace instrumentation
|
|
43
|
+
- [ ] Query pipeline
|
|
44
|
+
- [ ] Serializer
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
tersecontext/__init__.py,sha256=Pru0BlFBASFCFo7McHdohtKkUtgMPDwbGfyUZlE2_Vw,21
|
|
2
|
+
tersecontext-0.1.0.dist-info/METADATA,sha256=EIn0Vq5zR9iOAgj8nxOpKg0sWau5NPVPtC0o-eA4nJE,1456
|
|
3
|
+
tersecontext-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
4
|
+
tersecontext-0.1.0.dist-info/licenses/LICENSE,sha256=LEC3QWAO-P8w8C-HqwR_saxQE9vKQAh5Kr9Xndh1AZc,1069
|
|
5
|
+
tersecontext-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 tersecontext
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|