tereo 0.1.0__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.
- tereo-0.1.0/LICENSE +21 -0
- tereo-0.1.0/PKG-INFO +128 -0
- tereo-0.1.0/README.md +115 -0
- tereo-0.1.0/runtime/src/tereo/__init__.py +3 -0
- tereo-0.1.0/runtime/src/tereo/__main__.py +5 -0
- tereo-0.1.0/runtime/src/tereo/cli.py +595 -0
- tereo-0.1.0/runtime/src/tereo/constants.py +40 -0
- tereo-0.1.0/runtime/src/tereo/judge.py +290 -0
- tereo-0.1.0/runtime/src/tereo/measure.py +271 -0
- tereo-0.1.0/runtime/src/tereo/receipt.py +433 -0
- tereo-0.1.0/runtime/src/tereo.egg-info/PKG-INFO +128 -0
- tereo-0.1.0/runtime/src/tereo.egg-info/SOURCES.txt +16 -0
- tereo-0.1.0/runtime/src/tereo.egg-info/dependency_links.txt +1 -0
- tereo-0.1.0/runtime/src/tereo.egg-info/entry_points.txt +2 -0
- tereo-0.1.0/runtime/src/tereo.egg-info/top_level.txt +1 -0
- tereo-0.1.0/setup.cfg +29 -0
- tereo-0.1.0/setup.py +4 -0
tereo-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
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.
|
tereo-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tereo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Proof layer for software changes. Keep only what proves itself.
|
|
5
|
+
Home-page: https://github.com/kim-woojoo/tereo
|
|
6
|
+
Author: Woojoo Kim
|
|
7
|
+
Author-email: hello@kimwoojoo.me
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
|
|
14
|
+
# TEREO
|
|
15
|
+
|
|
16
|
+
AI writes. TEREO proves.
|
|
17
|
+
|
|
18
|
+
TEREO is a proof layer for AI coding.
|
|
19
|
+
`keep only if gain > noise`
|
|
20
|
+
Each kept receipt becomes the next baseline.
|
|
21
|
+
|
|
22
|
+
It watches one small change, reruns one fixed check, and writes one readable receipt.
|
|
23
|
+
The check can prove a bug fix, a behavior change, or a speedup.
|
|
24
|
+
|
|
25
|
+
TEREO comes from Ancient Greek `τηρέω` (`tēréō`):
|
|
26
|
+
to watch over, guard, preserve.
|
|
27
|
+
|
|
28
|
+
One proofboard.
|
|
29
|
+
|
|
30
|
+
<p>
|
|
31
|
+
<img
|
|
32
|
+
src="https://raw.githubusercontent.com/kim-woojoo/tereo/main/assets/readme/tereo-proofboard.svg"
|
|
33
|
+
alt="TEREO proofboard"
|
|
34
|
+
width="860"
|
|
35
|
+
/>
|
|
36
|
+
</p>
|
|
37
|
+
|
|
38
|
+
## Demo
|
|
39
|
+
|
|
40
|
+
1. Install TEREO.
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pip install git+https://github.com/kim-woojoo/tereo.git
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
2. Feel the loop.
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
tereo demo
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
If you are working inside this repo instead:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
pip install -e .
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
The demo should close with something like this:
|
|
59
|
+
|
|
60
|
+
```text
|
|
61
|
+
scorecard: latency: 10.000000 ms -> 8.000000 ms; 2.000000 ms better (20.00%)
|
|
62
|
+
verdict: keep
|
|
63
|
+
confidence: high
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Quick Start
|
|
67
|
+
|
|
68
|
+
1. Install TEREO.
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
pip install git+https://github.com/kim-woojoo/tereo.git
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
2. Run TEREO locally.
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
tereo --help
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
3. If you prefer module execution, run:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
python3 -m tereo --help
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Use your own check.
|
|
87
|
+
Keep your own workflow.
|
|
88
|
+
Make it yours.
|
|
89
|
+
|
|
90
|
+
TEREO is small on purpose.
|
|
91
|
+
Fork it. Keep it. Make it yours.
|
|
92
|
+
|
|
93
|
+
## Public Commands
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
tereo demo
|
|
97
|
+
tereo prove
|
|
98
|
+
tereo show
|
|
99
|
+
tereo log
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Everything else is there to support this surface, not to replace it.
|
|
103
|
+
|
|
104
|
+
## Why This Is Hard
|
|
105
|
+
|
|
106
|
+
- one good-looking run can lie
|
|
107
|
+
- gains drift
|
|
108
|
+
- noise changes verdicts
|
|
109
|
+
- checks matter more than vibes
|
|
110
|
+
- `hold` is different from `keep`
|
|
111
|
+
|
|
112
|
+
## Narrow By Design
|
|
113
|
+
|
|
114
|
+
TEREO is strongest when one fixed check can judge one small change.
|
|
115
|
+
That is a feature, not a full replacement for broader product judgment.
|
|
116
|
+
|
|
117
|
+
## Read Next
|
|
118
|
+
|
|
119
|
+
- [START.md](START.md)
|
|
120
|
+
Start here.
|
|
121
|
+
- [runtime/README.md](runtime/README.md)
|
|
122
|
+
The runtime, advanced commands, receipts, and proofboard.
|
|
123
|
+
- [skill/README.md](skill/README.md)
|
|
124
|
+
The portable rulebook for humans and agents.
|
|
125
|
+
- [WHY.md](WHY.md)
|
|
126
|
+
Why TEREO stays this small.
|
|
127
|
+
|
|
128
|
+
If the project is easy to explain, it is easy to trust.
|
tereo-0.1.0/README.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# TEREO
|
|
2
|
+
|
|
3
|
+
AI writes. TEREO proves.
|
|
4
|
+
|
|
5
|
+
TEREO is a proof layer for AI coding.
|
|
6
|
+
`keep only if gain > noise`
|
|
7
|
+
Each kept receipt becomes the next baseline.
|
|
8
|
+
|
|
9
|
+
It watches one small change, reruns one fixed check, and writes one readable receipt.
|
|
10
|
+
The check can prove a bug fix, a behavior change, or a speedup.
|
|
11
|
+
|
|
12
|
+
TEREO comes from Ancient Greek `τηρέω` (`tēréō`):
|
|
13
|
+
to watch over, guard, preserve.
|
|
14
|
+
|
|
15
|
+
One proofboard.
|
|
16
|
+
|
|
17
|
+
<p>
|
|
18
|
+
<img
|
|
19
|
+
src="https://raw.githubusercontent.com/kim-woojoo/tereo/main/assets/readme/tereo-proofboard.svg"
|
|
20
|
+
alt="TEREO proofboard"
|
|
21
|
+
width="860"
|
|
22
|
+
/>
|
|
23
|
+
</p>
|
|
24
|
+
|
|
25
|
+
## Demo
|
|
26
|
+
|
|
27
|
+
1. Install TEREO.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install git+https://github.com/kim-woojoo/tereo.git
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
2. Feel the loop.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
tereo demo
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If you are working inside this repo instead:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pip install -e .
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
The demo should close with something like this:
|
|
46
|
+
|
|
47
|
+
```text
|
|
48
|
+
scorecard: latency: 10.000000 ms -> 8.000000 ms; 2.000000 ms better (20.00%)
|
|
49
|
+
verdict: keep
|
|
50
|
+
confidence: high
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Quick Start
|
|
54
|
+
|
|
55
|
+
1. Install TEREO.
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
pip install git+https://github.com/kim-woojoo/tereo.git
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
2. Run TEREO locally.
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
tereo --help
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
3. If you prefer module execution, run:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
python3 -m tereo --help
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Use your own check.
|
|
74
|
+
Keep your own workflow.
|
|
75
|
+
Make it yours.
|
|
76
|
+
|
|
77
|
+
TEREO is small on purpose.
|
|
78
|
+
Fork it. Keep it. Make it yours.
|
|
79
|
+
|
|
80
|
+
## Public Commands
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
tereo demo
|
|
84
|
+
tereo prove
|
|
85
|
+
tereo show
|
|
86
|
+
tereo log
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Everything else is there to support this surface, not to replace it.
|
|
90
|
+
|
|
91
|
+
## Why This Is Hard
|
|
92
|
+
|
|
93
|
+
- one good-looking run can lie
|
|
94
|
+
- gains drift
|
|
95
|
+
- noise changes verdicts
|
|
96
|
+
- checks matter more than vibes
|
|
97
|
+
- `hold` is different from `keep`
|
|
98
|
+
|
|
99
|
+
## Narrow By Design
|
|
100
|
+
|
|
101
|
+
TEREO is strongest when one fixed check can judge one small change.
|
|
102
|
+
That is a feature, not a full replacement for broader product judgment.
|
|
103
|
+
|
|
104
|
+
## Read Next
|
|
105
|
+
|
|
106
|
+
- [START.md](START.md)
|
|
107
|
+
Start here.
|
|
108
|
+
- [runtime/README.md](runtime/README.md)
|
|
109
|
+
The runtime, advanced commands, receipts, and proofboard.
|
|
110
|
+
- [skill/README.md](skill/README.md)
|
|
111
|
+
The portable rulebook for humans and agents.
|
|
112
|
+
- [WHY.md](WHY.md)
|
|
113
|
+
Why TEREO stays this small.
|
|
114
|
+
|
|
115
|
+
If the project is easy to explain, it is easy to trust.
|