Doorway Integration
How VantagePoint connects to the Doorway reasoning engine.
Shared infrastructure
VantagePoint and Doorway share the same chain and receipt infrastructure. Both use xycore for cryptographic chain hashing and pruv for receipt publishing. The platform manages both session types through the same session and chain tables.
API endpoints
VantagePoint runs on port 8001, separate from Doorway (port 8000) and doorway-asi (port 8002). The platform routes to the correct endpoint based on session type.
// Platform routing
const endpoints = {
reasoning: "http://localhost:8000", // doorway
"reasoning-asi": "http://localhost:8002", // doorway-asi
vantagepoint: "http://localhost:8001", // vantagepoint
};Cross-session references
Reasoning sessions can reference VantagePoint outputs and vice versa. If a VP session discovers a key insight, a subsequent reasoning session can build on it through chain references. The chain infrastructure makes this traceable.
Unified receipts
Both session types produce the same receipt format. A receipt from a VP session is structurally identical to a receipt from a reasoning session — same fields, same verification, same public accessibility. The session_type field distinguishes them.