audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories

This commit is contained in:
master
2026-01-07 18:49:59 +02:00
parent 04ec098046
commit 608a7f85c0
866 changed files with 56323 additions and 6231 deletions

29
src/Replay/AGENTS.md Normal file
View File

@@ -0,0 +1,29 @@
# Replay Module Charter
## Mission
- Capture and verify deterministic replay manifests and tokens for audit reproducibility.
## Responsibilities
- Maintain replay manifest schemas, hashing, and validation.
- Provide WebService APIs for token issuance and verification.
- Ensure content-addressed references to inputs and outputs.
- Keep replay logs and storage deterministic and auditable.
## Required Reading
- docs/README.md
- docs/07_HIGH_LEVEL_ARCHITECTURE.md
- docs/modules/platform/architecture-overview.md
- docs/modules/replay/architecture.md
- docs/modules/replay/replay-proof-schema.md
## Working Agreement
- Use TimeProvider and IGuidGenerator for timestamps and ids.
- UTC ISO-8601 timestamps with invariant formatting.
- Hash inputs with canonical JSON and shared hash helpers.
- No network calls in core logic; all external access via injected clients.
- Propagate CancellationToken.
## Testing Strategy
- Unit tests for manifest validation and hash determinism.
- Integration tests for WebService endpoints and token flows.
- Replay tests verifying identical inputs yield identical outputs.