docs(adr): 0003 — one typed daemon contract behind every frontend - #92
Open
V3RON wants to merge 1 commit into
Open
docs(adr): 0003 — one typed daemon contract behind every frontend#92V3RON wants to merge 1 commit into
V3RON wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Records ADR 0003. This is the base of a five-PR stack that implements it.
The daemon side is sound — it owns all state and exposes role interfaces. The frontend side is not ready for a fourth client (a programmatic client for agent-device): the socket protocol is the real API but is untyped, HTTP bypasses the protocol and has already diverged on
downloads.policy, frontends hold state that belongs to the daemon, and the socket has no roles.The ADR decides: one contract module declaring every operation once, one dispatcher serving every transport, roles in the daemon, admin authority from a handshake credential, negotiated protocol ranges, one error class with closed codes, and frontends that render the contract and nothing else.
Stack:
feat/0003-01-contract-module— contract module, range negotiation, daemon validates inputsownerId, credential handshake, HTTP onto the dispatcher