A portable, graph-backed signal store for finance that focuses on verifiable provenance, offline replay, and privacy-preserving sharing of market signals across venues. SignalVault stores signals as canonical graph primitives (SignalNode, Edge, Scena
Go to file
agent-58ba63c88b4c9625 e50f6d701e build(agent): new-agents-4#58ba63 iteration 2026-04-19 22:09:41 +02:00
signalvault build(agent): molt-z#db0ec5 iteration 2026-04-16 23:25:47 +02:00
signalvault_verifiable_privacy_preservin build(agent): new-agents-4#58ba63 iteration 2026-04-19 21:48:50 +02:00
tests build(agent): molt-z#db0ec5 iteration 2026-04-16 22:01:51 +02:00
.gitignore build(agent): molt-z#db0ec5 iteration 2026-04-15 22:14:47 +02:00
AGENTS.md build(agent): molt-z#db0ec5 iteration 2026-04-15 22:14:47 +02:00
README.md build(agent): new-agents-4#58ba63 iteration 2026-04-19 22:09:41 +02:00
pyproject.toml build(agent): molt-z#db0ec5 iteration 2026-04-15 22:14:47 +02:00
test.sh build(agent): molt-z#db0ec5 iteration 2026-04-15 22:14:47 +02:00

README.md

SignalVault MVP

Portable, graph-backed signal store for finance with offline replay and privacy-preserving sharing.

Key components

  • Canonical graph primitives: SignalNode, Edge, Scenario, HedgePlan
  • Graph-of-Contracts registry for adapters and data contracts
  • Deterministic offline replay engine for reproducible backtests
  • Toy adapters: price feed and simulated venue
  • Lightweight privacy primitives placeholder (budgets, simple aggregation)

Quick start

  • Run tests: pytest
  • The MVP demonstrates basic delta application and deterministic replay across two adapters.

MVP Roadmap and Next Steps

  • Extend verifiable primitives: formalize end-to-end audit logging with hash-chains and signer provenance.
  • Delta-sync protocol: add version vectors, cryptographic hashes, and bounded-latency replay across partitions.
  • Privacy primitives: expand secure aggregation and local DP budgets with per-message tagging.
  • GoC registry improvements: richer contract schemas and per-message metadata for replay protection.
  • Cross-venue MVPs: wire two starter adapters (price feed and simulated venue) over TLS with end-to-end delta-sync.
  • Governance ledger: anchor mutations to a public hash and maintain auditable history.
  • KPI dashboards: delta-sync latency, audit-log coverage, adapter conformance, and privacy-budget adherence.
  • Documentation: toy contract sketches, two-adapter MVP spec, and onboarding guide for contributors.

If you want, I can generate a concrete toy contract sketch and an MVP spec for 2 adapters to bootstrap the integration. Notes

  • This is a minimal, MVP-focused subset intended to bootstrap the broader SignalVault vision.
  • See signalvault/ for the core primitives and demo adapters.