Skip to content

Commit 3e2b08c

Browse files
cert: define Chronos certification schema and boundary (#17)
1 parent b7d1f17 commit 3e2b08c

3 files changed

Lines changed: 80 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,21 @@ MIT
102102

103103
Inacio F. Vasquez
104104
Independent Researcher
105+
106+
## Chronos Certification (Defined)
107+
108+
This repository supports a defined but unreleased certification layer.
109+
110+
Status:
111+
- Defined
112+
- Not released
113+
- No signed claims
114+
115+
Scope:
116+
- Structural definitions and bounds only
117+
- Deterministic, audit-ready artifacts
118+
119+
Non-scope:
120+
- No Clay problem resolution
121+
- No algorithmic prescriptions
122+
- No performance claims beyond EntropyDepth bounds
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"cert_id": "CHRONOS-CERT-0001",
3+
"claim": "EntropyDepth definitions and bounds are internally consistent under declared constraints",
4+
"artifacts": [
5+
"docs",
6+
"src",
7+
"theory"
8+
],
9+
"constraints": [
10+
"no external network access",
11+
"deterministic evaluation",
12+
"finite transcript capacity"
13+
],
14+
"capacity": {
15+
"tokens": 10000,
16+
"time_sec": 180,
17+
"memory_mb": 2048
18+
},
19+
"non_claims": [
20+
"no claim to solve P vs NP",
21+
"no performance guarantees",
22+
"no heuristic algorithm design"
23+
]
24+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"title": "CHRONOS_CERT",
4+
"type": "object",
5+
"required": [
6+
"cert_id",
7+
"claim",
8+
"artifacts",
9+
"constraints",
10+
"capacity",
11+
"non_claims"
12+
],
13+
"properties": {
14+
"cert_id": { "type": "string" },
15+
"claim": { "type": "string" },
16+
"artifacts": {
17+
"type": "array",
18+
"items": { "type": "string" }
19+
},
20+
"constraints": {
21+
"type": "array",
22+
"items": { "type": "string" }
23+
},
24+
"capacity": {
25+
"type": "object",
26+
"required": ["tokens","time_sec","memory_mb"],
27+
"properties": {
28+
"tokens": { "type": "integer", "minimum": 1 },
29+
"time_sec": { "type": "integer", "minimum": 1 },
30+
"memory_mb": { "type": "integer", "minimum": 1 }
31+
}
32+
},
33+
"non_claims": {
34+
"type": "array",
35+
"items": { "type": "string" }
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)