This commit is contained in:
StellaOps Bot
2025-12-25 19:58:42 +02:00
6 changed files with 123 additions and 25 deletions

View File

@@ -113,7 +113,7 @@
| Step | Time (ms) |
|------------------------------------|----------:|
| `/quota/check` Valkey LUA INCR (Redis-compatible) | 0.8 |
| `/quota/check` Redis LUA INCR | 0.8 |
| Soft wait sleep (server) | 5000 |
| Hard wait sleep (server) | 60000 |
| Endtoend walltime (softhit) | 5003 |

View File

@@ -146,12 +146,12 @@ For air-gap export, the minimal bundle contains:
| 47 | PROV-8200-147 | DONE | Task 44 | AirGap Guild | Implement chunk verification during lazy fetch. |
| 48 | PROV-8200-148 | DONE | Tasks 44-47 | QA Guild | Add lazy fetch tests (connected + disconnected). |
| **Wave 7 (Revocation Index Table)** | | | | | |
| 49 | PROV-8200-149 | DOING | Tasks 0-6 | Platform Guild | Define `provcache.prov_revocations` table. |
| 50 | PROV-8200-150 | TODO | Task 49 | Platform Guild | Implement revocation ledger for audit trail. |
| 51 | PROV-8200-151 | TODO | Task 50 | Platform Guild | Implement revocation replay for catch-up scenarios. |
| 52 | PROV-8200-152 | TODO | Tasks 49-51 | QA Guild | Add revocation ledger tests. |
| 49 | PROV-8200-149 | DONE | Tasks 0-6 | Platform Guild | Define `provcache.prov_revocations` table. |
| 50 | PROV-8200-150 | DONE | Task 49 | Platform Guild | Implement revocation ledger for audit trail. |
| 51 | PROV-8200-151 | DONE | Task 50 | Platform Guild | Implement revocation replay for catch-up scenarios. |
| 52 | PROV-8200-152 | DONE | Tasks 49-51 | QA Guild | Add revocation ledger tests. |
| **Wave 8 (Documentation)** | | | | | |
| 53 | PROV-8200-153 | TODO | All prior | Docs Guild | Document invalidation mechanisms. |
| 53 | PROV-8200-153 | DOING | All prior | Docs Guild | Document invalidation mechanisms. |
| 54 | PROV-8200-154 | TODO | All prior | Docs Guild | Document air-gap export/import workflow. |
| 55 | PROV-8200-155 | TODO | All prior | Docs Guild | Document evidence density levels. |
| 56 | PROV-8200-156 | TODO | All prior | Docs Guild | Update `docs/24_OFFLINE_KIT.md` with Provcache integration. |
@@ -394,4 +394,5 @@ public sealed record FeedEpochAdvancedEvent
| 2025-12-26 | Wave 2 (Evidence Chunk Storage): Implemented IEvidenceChunker, EvidenceChunker (Merkle tree), PostgresEvidenceChunkRepository. Added 14 chunking tests. Tasks 14-21 DONE. | Agent |
| 2025-12-26 | Wave 3 (Evidence Paging API): Added paged evidence retrieval endpoints (GET /proofs/{proofRoot}, manifest, chunks, POST verify). Added 11 API tests. Tasks 22-26 DONE. | Agent |
| 2025-12-26 | Wave 4 (Minimal Proof Export): Created MinimalProofBundle format, IMinimalProofExporter interface, MinimalProofExporter with Lite/Standard/Strict density levels and DSSE signing. Added 16 export tests. Tasks 27-34 DONE. | Agent |
| 2025-12-26 | Wave 5 (CLI Commands): Implemented ProvCommandGroup with `stella prov export`, `stella prov import`, `stella prov verify` commands. Tasks 35-42 DONE. Task 43 BLOCKED (CLI has pre-existing build error unrelated to Provcache). | Agent || 2025-12-26 | Wave 6 (Lazy Evidence Pull): Implemented ILazyEvidenceFetcher interface, HttpChunkFetcher (connected mode), FileChunkFetcher (sneakernet mode), LazyFetchOrchestrator with chunk verification. Added 13 lazy fetch tests. Total: 107 tests passing. Tasks 44-48 DONE. | Agent |
| 2025-12-26 | Wave 5 (CLI Commands): Implemented ProvCommandGroup with `stella prov export`, `stella prov import`, `stella prov verify` commands. Tasks 35-42 DONE. Task 43 BLOCKED (CLI has pre-existing build error unrelated to Provcache). | Agent || 2025-12-26 | Wave 6 (Lazy Evidence Pull): Implemented ILazyEvidenceFetcher interface, HttpChunkFetcher (connected mode), FileChunkFetcher (sneakernet mode), LazyFetchOrchestrator with chunk verification. Added 13 lazy fetch tests. Total: 107 tests passing. Tasks 44-48 DONE. | Agent |
| 2025-12-26 | Wave 7 (Revocation Index Table): Implemented ProvRevocationEntity, IRevocationLedger interface, InMemoryRevocationLedger, RevocationReplayService with checkpoint support. Added 17 revocation ledger tests. Total: 124 tests passing. Tasks 49-52 DONE. | Agent |