Nyx5/1 — Mail and Libro for agents
Status: executable draft v0.4 (September 2026) Reference implementation: this repository (Node 20+, no dependencies)
0. What it is
A single system with two components that share identity, transport and storage:
- Mail (sections 1 to 13):
agent@domainaddresses, certified cards (tarjeta), signed and encrypted envelopes (sobre), a mailbox (buzón) that holds even while the agent is off. What email gave people. - Libro (sections 14 to 23): the double-entry ledger of each house (casa), quotes (cotización), contracts, chained mandates (mandato) and stamps (estampilla). What email never had: economic consequence and a receipt (recibo) that no party can deny.
They are not two compatible protocols. The Libro has no login and no API of its own: it is operated by writing envelopes to libro@<house>, and the Mail chain of trust is its authentication. Its responses are receipts signed by the house that arrive in the mailbox like any other letter.
Email achieved something no agent protocol has today: a universal address, a mailbox, and a network where any server writes to any other without asking permission. MCP connects an agent with its tools; A2A connects agents that already know each other and are online. Neither gives per-person identity, a mailbox, verifiable trust between strangers, nor a way for an agreement to carry weight.
Nyx5/1 closes those gaps like this:
| Gap | How Nyx5 closes it |
|---|---|
| Per-person identity, not just per-domain | agent@domain address. The domain certifies each agent's public key. The person owns their key; the domain only vouches for it. |
| Mailbox (store-and-forward) | Each domain has an estafeta that accepts, stores and retries. The agent can be off for days; nothing is lost. |
| Trust and anti-spam | Every envelope comes signed by the agent and vouched for by its domain (anchored in DNS). Without a verifiable signature there is no delivery. The receiver decides its policy: open, allowlist, or stamp (proof-of-work / payment). |
| Fragmentation | Nyx5 does not replace MCP or A2A: it is the universal envelope. The content can be text, JSON, an A2A task or an MCP call; the agent's card publishes its MCP/A2A endpoints. |
| Free words | An agreement is an entry (asiento) in the Libro, not prose. Escrow holds until the proof passes; the bond (fianza) puts a price on asserting; the mandate bounds how much each agent may spend and who pays in the end. |
| Deniable receipt | Every receipt carries the hash of the envelope that caused it and the signature of whoever issues it. |
And end-to-end encryption by default. The estafetas see de, para and the size; never the content.
1. Terms
- Agent: any process (or a person operating a client) with a key pair and an address.
- Address:
local@domain. Lowercase,local=[a-z0-9][a-z0-9._-]{0,63}. - Estafeta: a domain's server. It publishes cards, certifies agents, receives, stores and delivers. Equivalent to the MX server in email.
- Domain card (tarjeta): self-signed JSON at
/.well-known/nyx5.json. Declares keys, the estafeta URL, policy and extensions. - Agent card (tarjeta): JSON with an agent's keys and capabilities, signed (certified) by the domain key.
- Envelope (sobre): the unit of sending. Signed JSON, optionally encrypted.
- Resolver: the logic that goes from an address to a verified card.
2. Discovery and trust anchor
Given asistente@sigo.uk, the resolver locates the estafeta of sigo.uk in this order:
- Local override (
hosts.json): tests and private networks. It can pin the expected key (sig). - DNS: TXT record at
_nyx5.sigo.uk: - Well-known without DNS:
https://sigo.uk/.well-known/nyx5.json. If there is no anchor, the resolver applies TOFU (trusts on first use and pins the key; a later change is rejected until the operator confirms it).
v=nyx51; url=https://mail.sigo.uk; sig=<domain Ed25519 public key, base64url> sig is the anchor: the domain card must be signed by that key. With DNSSEC, the chain is complete.Then it downloads the domain card and the agent card, and verifies the chain: DNS → domain key → agent card → envelope signature.
Cards are cached (5 min by default). If an envelope arrives signed with a key that the cached card does not recognize, the receiver refreshes the card once before rejecting (this is what makes key rotation work without coordination).
3. Domain card
{
"nyx5": "1",
"domain": "sigo.uk",
"estafeta": "https://mail.sigo.uk",
"keys": [ { "sig": "<Ed25519 pub>", "created": "2026-09-04T00:00:00Z" } ],
"policy": { "inbound": "verified", "max_bytes": 1048576 },
"extensions": ["urn:nyx5:ext:mcp", "urn:nyx5:ext:a2a"],
"issued": "2026-09-04T19:00:00Z",
"signature": { "alg": "Ed25519", "kid": "<Ed25519 pub>", "value": "<base64url>" }
}
Rules:
signature.kidmust be inkeys. The signature covers the canonical JSON withoutsignature.keysmay list several during a rotation; the first is the active one.policy.inboundtoday admits onlyverified(no signature, no delivery). It is reserved for future modes.policy.outbound: "sealed"(optional) declares that everything leaving the domain goes encrypted; receivers may reject cleartext envelopes from that domain.
4. Agent card
GET https://<estafeta>/agents/<local>
{
"nyx5": "1",
"address": "asistente@sigo.uk",
"sig": "<agent Ed25519 pub>",
"enc": "<agent X25519 pub>",
"capabilities": {
"accepts": ["text/plain", "application/json", "application/a2a-task+json"],
"mcp": "https://agents.sigo.uk/asistente/mcp",
"a2a": "https://agents.sigo.uk/asistente/.well-known/agent-card.json"
},
"inbox": { "policy": "open" },
"valid_from": "2026-09-04T19:00:00Z",
"valid_until": null,
"previous": [ { "sig": "<previous key>", "until": "2026-09-11T19:00:00Z" } ],
"certification": { "alg": "Ed25519", "kid": "<domain key>", "value": "<base64url>" }
}
Delegated card (a subagent acting on behalf of another agent): the name is <name>.<parent>, and the card additionally carries
"delegation": {
"by": "constructor@sigo.uk", "address": "tester.constructor@sigo.uk", "sig": "<subagent key>",
"scope": { "types": ["message", "result"], "to_domains": ["sigo.uk"], "cap": 100 },
"valid_until": null, "issued": "...", "signature": { "alg": "Ed25519", "kid": "<parent key>", "value": "..." }
}
Rules:
certificationis signed by the domain, not the agent. It covers everything exceptcertification.delegationis signed by the parent. The domain certifies the card the same way; the resolver verifies both signatures (chain domain → parent → child). A child cannot have morecapthan its parent. The estafeta enforcesscope.typesandscope.to_domainson send; the Libro enforcesscope.capon accept, bond, mandate and charge.- The private
sigkey is generated and kept by the agent; the domain never sees it. That is why the identity is the person's: if you leave a domain, you take your key with you and certify it at another. encis optional. Withoutenc, senders send in cleartext (or reject if they require encryption).previous: previous keys with a grace date. A signature with a valid previous key is valid.inbox.policy: see section 9.
5. The envelope
{
"nyx5": "1",
"id": "uuid",
"from": "nicolas@sigo.uk",
"to": ["asistente@beta.example"],
"created": "ISO-8601",
"expires": null,
"deliver_after": null,
"thread": "uuid o null",
"in_reply_to": "id o null",
"type": "message | task | result | receipt | intro",
"content": { "media": "application/json", "body": { "...": "..." } },
"encrypted": { "alg": "X25519+HKDF-SHA256+A256GCM", "epk": "...", "iv": "...", "ct": "...", "tag": "...", "keys": { "asistente@beta.example": { "iv": "...", "ct": "...", "tag": "..." } } },
"attachments": [ { "name": "informe.pdf", "media": "application/pdf", "sha256": "...", "url": "https://...", "bytes": 12345 } ],
"pow": { "bits": 16, "nonce": "12345" },
"receipt": "delivered",
"extensions": { "urn:nyx5:ext:a2a": { "task_id": "..." } },
"signature": { "alg": "Ed25519", "kid": "<agent sig>", "value": "<base64url>" }
}
Rules:
contentandencryptedare mutually exclusive.content.mediafollows the MIME model;bodyis text or JSON.- The signature covers the whole canonical envelope except
signature. It is signed after encrypting: any estafeta verifies authenticity without being able to read the content. - The encryption is JWE-like: a random content key encrypts
contentwith AES-256-GCM; that key is wrapped for each recipient with ephemeral X25519 + HKDF. The AAD is the canonical form of{id, from, to}: an envelope cannot be re-addressed or re-signed by another without breaking decryption. - Normative KDF detail (every implementation must copy it byte for byte or nothing interoperates): each recipient's KEK is
HKDF-SHA256(ikm = X25519(epk_priv, enc_dest), salt = the UTF-8 bytes of the base64url STRING of epk — not the decoded key —, info = "nyx5/1 cek-wrap", 32). And the canonical form orders keys, omitsundefinedvalues in objects, and serializes as compact JSON. - Attachments travel by reference (URL + hash), not embedded. The estafeta does not store binaries. The hash makes the download verifiable.
typeis a semantic hint.task/resultfor delegated work;receiptfor acknowledgements;introto introduce yourself to allowlisted mailboxes (maximum 4 KB);messagefor everything else.threadandin_reply_togive threads without server state.expires: past that instant, no estafeta delivers it or retries.deliver_after(optional, ISO-8601): deferred delivery. The envelope waits in the sending estafeta's queue until that instant and only then is delivery attempted. Before that date it does not appear in any mailbox. Adeliver_afterin the past is delivered immediately (never an error). Ifexpires ≤ deliver_afterthe envelope is rejected on send (400): it would expire before it could be delivered. It is the mechanism for an agent's reminders to itself (memory between sessions) and for the deadline notices the Libro schedules.- Unknown fields are preserved and signed, but ignored. This is how capabilities are added without breaking old implementations.
Default maximum size: 1 MB. Each domain declares it in its card.
6. Transport between estafetas
POST https://<destination estafeta>/inbound with the envelope as the JSON body and this header:
X-Nyx5-Relay: nyx51 domain=<sending domain>; kid=<domain key>; sig=<signature of "relay:<id>:<destination domain>">
The agent signature authenticates the sender (like DKIM). The relay signature authenticates the sending estafeta (like SPF). A domain may require both (require_relay).
Response:
{ "ok": true, "code": 202, "accepted": ["asistente@beta.example"], "rejected": [ { "to": "...", "code": 403, "reason": "..." } ] }
Semantics of the codes (per envelope or per recipient):
| Code | Meaning | Sender |
|---|---|---|
| 200 | duplicate already received (idempotent) | marks delivered |
| 202 | accepted into mailbox | marks delivered |
| 400 | malformed envelope | immediate bounce |
| 402 | stamp missing (proof-of-work) | bounce; the client may retry with pow |
| 403 | invalid signature, sender not verifiable, policy | bounce |
| 404 | recipient does not exist | bounce |
| 410 | expired | bounce |
| 413 | too large | bounce |
| 421, 429, 5xx, network down | temporary | retry with exponential backoff |
7. Mailbox and delivery (store-and-forward)
- The agent delivers its signed envelope to its own estafeta (
POST /outbound). - The estafeta queues it by destination domain and responds 202 immediately. With
deliver_after, the first attempt is scheduled for that date (the samenext_attemptof the queue): the envelope waits there, without appearing in any mailbox, until the time comes. - A worker attempts delivery. If it fails temporarily, it retries with exponential backoff (1 s, 2 s, 4 s… up to 60 s) for up to 3 days. Then it bounces. If an envelope expires (
expires) while waiting in the queue —whether by deferral or by retries to a downed destination—, it bounces to the sender with the reason; it does not vanish silently. - The receiving estafeta verifies, applies policy and stores the envelope in the recipient's mailbox.
- The recipient reads by poll (
GET /mailbox/<local>) or receives push (webhook signed by the domain). The envelope stays until the agent acknowledges (POST /mailbox/<local>/ack). An agent off for a week receives everything on return. - Bounces and acknowledgements are ordinary envelopes from
postmaster@<domain>, signed with the domain key, withtype: receipt,in_reply_toto the original envelope andsha256of the original envelope. A delivery acknowledgement only if the envelope requests"receipt": "delivered". The receipts an agent issues (processed, etc.) also carry thesha256of the envelope: they are non-repudiable without any central registry. - Idempotency by
id: a second delivery of the same envelope returns 200 and does not duplicate.
8. Agent ↔ estafeta API
Authentication: Authorization: Nyx5 <token>.<signature> where token = base64url of the canonical form of {address, ts, nonce, method, path, host} and signature = Ed25519 with the agent's key. A 5-minute window, single-use nonce, bound to method, path and destination house (host): a captured token is useless against another estafeta.
| Method | Route | Who | For |
|---|---|---|---|
| GET | /.well-known/nyx5.json | public | domain card |
| GET | /agents | public | house directory (?capability=mcp&accepts=<media>&q=<text>&limit&offset) |
| GET | /agents/:local | public | agent card |
| POST | /agents | see section 8b | register/update agent |
| POST | /invitations | admin | issue invitation code { uses, expires, note, welcome } |
| GET | /invitations | admin | list invitations and their use |
| POST | /outbound | agent | send |
| POST | /inbound | estafetas | receive |
| GET | /mailbox/:local | agent | read pending |
| POST | /mailbox/:local/ack | agent | confirm processed |
| GET | /outbox/:local | agent | status of sends |
| GET | /health | public | health |
8b. Registration service
How an agent enters a house is decided by the domain card (policy.registration):
| Mode | Who enrolls | How |
|---|---|---|
admin (default) | only the house | POST /agents with Authorization: Bearer <house token> |
invite | anyone holding a code | the house issues codes with uses and expiry; the agent presents it in invite |
open | anyone | first come, first served; a cap on registrations per minute |
In invite and open the body goes signed with the same key being enrolled (signature.kid == sig, with ts within 5 minutes): proof of possession. No one can register a key they do not control. A name already taken can only be updated by its owner (signed authentication, even when rotating keys: the body carries the new ones, the authentication is signed with the old ones) or by the house. Reserved names: postmaster, libro, casa, admin, root, abuse, security, hostmaster, noreply, support, estafeta, nyx5, verifica, tareas, indice. Subagents are enrolled with the parent's signature (section 4).
The directory (GET /agents) is the public list of the house's cards that asked to be listed (capabilities.listed: true): keys, capabilities, mailbox policy, whether it is delegated and by whom. No webhooks or private data. The default is not to appear: an agent does not figure in the directory or in any index without having asked. The direct lookup by address (GET /agents/<local>) resolves to any agent you already know, listed or not. It serves to find who offers what within a house; between houses, discovery is still by address (section 2): there is no global registry, and that gap is declared in section 24.
Each registration is a recorded event (registered_via: admin, self, delegation, open, invite:<code>) and, if the house gives a welcome gift, an entry in the Libro.
9. Inbound policies
The receiving estafeta rejects without exception envelopes without a verifiable signature. On top of that, each agent chooses:
open: accepts any verified sender. Rate limit per sending domain (120/min by default).allowlist: only listed addresses or domains. A stranger has two ways in: anintroof up to 4 KB (the agent decides whether to add it to the list), or a vouch with bond (urn:nyx5:ext:aval): a third party from the allowlist backs it with a bond in the receiver's house. The envelope carriesextensions["urn:nyx5:ext:aval"] = { voucher, bond }; the estafeta checks that the bond exists and is active, that it was posted by the voucher (which must be in the allowlist), that it vouches for this sender (vouchee), and that it has the receiver as beneficiary and verifier. If the introduction turns out to be junk, the receiver forfeits the bond (forfeit, §16): vouching stops being free.pow: requires proof-of-work (hashcash,pow_bitsbits of leading zeros in SHA-256 ofid:nonce). Those in the allowlist are exempt. At 16 bits, a send costs ~65k hashes: free for one, expensive for a million.stamp: requires a stamp paid in the Libro. The card publishes{ policy: "stamp", price: 5, house?: "sigo.uk" }; the envelope carriesstamp: { house, amount }signed as part of the envelope; the receiving estafeta charges in its Libro on accept (section 19). Without balance, 402 and bounce.blocklist: always applied before anything else.
10. Extensions
An extension is a URI. The domain and the agent declare the ones they support; an envelope may carry data under extensions[uri]. Implementations that do not know it ignore that data without failing.
urn:nyx5:ext:mcp: the agent publishescapabilities.mcp(the URL of its MCP server). An envelopetype: taskwithmedia: application/mcp-call+jsonandbody: {tool, arguments}is an asynchronous MCP call with a mailbox. The reference includes the reverse bridge: an MCP server over stdio (nyx5 mcp) that exposesnyx5_send,nyx5_inbox,nyx5_ack,nyx5_resolveto any MCP client (Claude Desktop, Claude Code, Cursor).urn:nyx5:ext:a2a:capabilities.a2apoints to the A2A Agent Card. An envelope withmedia: application/a2a-task+jsontransports an A2A task; thetask_idtravels inextensions. This way A2A gains a mailbox and per-person addressing without changing its spec.urn:nyx5:ext:email: the house is a mail gateway.name@domainis at once a Nyx5 and a mail address. Inbound: a real email enters the mailbox as an envelope without a signature, with the real sender and the subject inextensions["urn:nyx5:ext:email"], markedfrom_verified: falseandvia: "email". It is never disguised as a signed envelope (invariant 1): it is opened explicitly as what it is, an unverifiable external message. Outbound: an agent writes to any mail address whatsoever (POST /email/out, authenticated); the message goes out withReply-Toequal to the agent's Nyx5 address, so the human's reply comes back to its mailbox through the inbound path. It is the cold start: the letter arrives before the decision to adopt exists; when the human wants signature, encryption and Libro, they register. Inbound runs at the edge (Cloudflare Email Routing → Email Worker); outbound uses an HTTP provider (the envelope-from must be a domain verified with it). Without a configured provider, outbound stays pending: the bridge does not invent a channel it does not have.urn:nyx5:ext:indice: the house operates a federated index of agents (§13).urn:nyx5:ext:libro: the house operates a Libro (sections 14 to 23). It is declared by the domain card and the card oflibro@<domain>publishes the fee and the operations.urn:nyx5:ext:aval: an envelope from a stranger to an allowlisted mailbox carries it to present its vouch (aval):{ voucher, bond }. The voucher backs it with a bond (opbondwithvouchee) in the receiver's house; the inbound policy (§9) requires it valid before accepting.urn:nyx5:ext:person: the agent card may declareperson: {name, verified_by}for agents acting on behalf of an identified person, with delegated verification (for example, a domain that only certifies clients with verified identity).
11. Versioning
nyx5: "1"in cards and envelopes. An incompatible change is"2"; estafetas may speak both.- New fields within version 1 are always optional and ignored if not known.
- Algorithms: explicit
algin signature and encryption. Adding a new one breaks nothing; retiring one is announced in the domain card.
12. Threat model
| Threat | Mitigation |
|---|---|
| Impersonate an agent | Ed25519 signature verified against the card certified by its domain. |
| Impersonate a domain | DNS anchor (with DNSSEC) or TOFU pin; a key change without announcement is rejected. |
| Read the content in transit or at the estafeta | End-to-end encryption; the estafetas only see metadata. |
| Re-address or re-sign someone else's envelope | The encryption AAD includes id/from/to. |
| Replay an envelope | Deduplication by id; expires. |
| Replay an auth token | Unique nonce, 5-min window, bound to method and path. |
| Mass spam | Mandatory signature (costs a domain), rate limit per domain, allowlist/intro, proof-of-work or stamp. |
| Fake sending estafeta using stolen envelopes | Relay signature of the sending domain; require_relay. |
| Loss from destination downtime | Persistent queue with retries and a final bounce to the sender. |
| Compromised agent key | Rotation with a grace period; valid_until; immediate blocklist at the domain. |
13. The federated index (extension urn:nyx5:ext:indice)
The directory (§8b) is per house. For "find an agent that does X in any house" there is the federated index: any house that decides to operate a search engine. It is not protocol infrastructure: it is a service anyone stands up, like a search engine over the web.
- Registration:
POST /index/houses { domain }. Verification IS the gate: the index resolves the
domain card by the normal chain (§2) and only lists what signs as a Nyx5 house.
- Opt-in: an agent appears in the directory (§8b) —and therefore in any index that
crawls it— only if its card declares capabilities.listed: true. The default is not to figure: no one is listed without asking. Not listing is not hiding: the direct lookup by address (GET /agents/<local>) still resolves to any agent you already know; what is opt-in is the *enumeration*, not the reach.
- Crawling: the index periodically reads
GET /agentsof each listed house (which already returns only
the agents with listed: true), re-verifies the domain card on each pass, and discards any card whose certification is not signed by the origin domain. What the domain did not certify does not enter the index.
- Search:
GET /index/agents?q&capability&accepts&house&limit&offset. The response travels
signed by the index's house, with each card accompanied by its origin house (_house).
- Trust: the index is a HINT, not an authority. Whoever uses a result re-verifies the
card by the normal chain (DNS -> domain -> agent) before acting. A malicious index may omit or reorder, but cannot forge a card or an envelope.
- Any house may operate its own index and federate by reading others' (the signed
responses allow it); no index is the index.
14. The Libro: kernel
Each house (domain) keeps a double-entry ledger. Accounts:
agente@dominio: any agent verifiable by Mail, from this house or another. A foreigner has an account here without registering: its identity is already proven.casa@<dominio>: the distributor. Issues tokens (loads balance), charges fees. It is the only account that may go negative: its negative balance is what the house owes.escrow:<contrato>: funds held by a contract.
An entry (asiento) is { id, n, at, house, concept, lines: [{ account, delta }], meta, refs, signature }. The lines sum to zero. The house signs it. refs points to the envelopes that caused it (op, op_sha256, quote, quote_sha256, contract). The sum of all balances of a house is always 0.
Seven primitives, and nothing else:
| Primitive | Entry | Fee |
|---|---|---|
| quote | none: it is a document signed by the seller | — |
| charge | buyer − X · seller + (X − fee) · house + fee | yes |
| hold | payer − X · escrow + X | no |
| release | escrow − X · beneficiary + (X − fee) · house + fee | yes |
| refund | escrow − X · payer + X | no |
| split | N lines summing to 0 (the fee is a split) | — |
| bond | hold with a different exit: release (returns) or forfeit (goes to the beneficiary) | no |
Cross-cutting: idempotency by envelope id (a re-delivered operation returns the same result without repeating the entry) and meta (machine-readable context in each entry). Amounts are integers (tokens).
15. Quotes
A quote (cotización) is a document signed by the seller, independent of the envelope that transports it:
{ "tipo": "cotizacion", "id": "uuid", "house": "sigo.uk", "seller": "verifica@sigo.uk", "buyer": "nicolas@sigo.uk",
"contract": "spot | escrow | metered", "price": 40, "currency": "tok", "concept": "verificación de despliegue",
"terms": { "acceptance": "lighthouse >= 90", "deadline": "2026-09-15" }, "arbiter": null,
"referrer": { "address": "socio@otra.casa", "share": 1500 },
"issued": "...", "expires": null, "signature": { "alg": "Ed25519", "kid": "<seller sig>", "value": "..." } }
It travels to the buyer inside an envelope with media: application/nyx5.cotizacion+json, encrypted. The house sees it only when the buyer accepts it. The Libro verifies: seller's signature (via resolver), buyer equal to the one who accepts, house equal to its own, validity, and that it has not been accepted before (409).
Referral commission (referrer, optional): the seller signs in the quote that it pays share (in basis points) to whoever brought the deal. The commission comes out of what the seller receives, it is not added to the price: the buyer pays the same and the house charges the same. On settlement (the spot transfer or the escrow release), the entry becomes four lines —buyer, seller, house, referrer— and still sums to zero. The Libro requires share to be an integer and > 0, that fee + share ≤ 10000 bps (the seller never goes negative), and that the referrer is not the seller itself. The distribution pays itself: no one invoices it separately, it is posted in the same movement.
16. Operations
They are sent as an envelope to libro@<house> with type: task, media: application/nyx5.libro+json, unencrypted (the house must read it), body: { op, ... }. The response arrives in each party's mailbox as type: receipt from libro@<house> with media: application/nyx5.recibo+json. If the operation fails, the sender receives a bounce from the postmaster with the code and the reason.
| op | who | effect |
|---|---|---|
accept { quote } | buyer | creates the contract; spot: charges; escrow: holds; metered: creates a mandate |
deliver { contract, evidence_sha256, note } | seller (escrow) | held → delivered, records the evidence hash |
release { contract } | buyer or arbiter (escrow); verifier or arbiter (bond); the bondholder only if expired | escrow → seller with fee; bond → returns to the bondholder |
refund { contract, note } | seller or arbiter; buyer only if there is no delivery yet | escrow → buyer without fee |
bond { amount, claim, verifier, beneficiary?, arbiter?, evidence_sha256?, expires? } | the one who asserts | holds the amount alongside the assertion |
forfeit { contract, reason } | verifier or arbiter | bond → beneficiary (by default the house) |
mandate { grantee, cap, scope?, expires?, parent? } | grantor | spending authority; with parent, a bounded sub-mandate |
charge { mandate, amount, concept } | mandatee | the root grantor pays; the whole chain decrements |
revoke { mandate } | grantor or superior | revokes in cascade |
balance, statement { limit }, contract { contract } | oneself | read, response by receipt |
Direct reads without mail: GET /libro/cuenta/:address and GET /libro/contrato/:id with the same signed authentication (also for foreigners). Administration: POST /libro/topup and GET /libro/diario with the house token.
17. Contracts
A contract is a state machine over the primitives. The kernel does not know which contract it serves.
| Contract | States | Mechanics |
|---|---|---|
| spot | settled | quote → accept = charge |
| escrow | held → delivered → released | refunded | hold on accept; release if the proof passes; refund if it fails; arbiter agreed in the quote |
| bond (fianza) | posted → released | forfeited | the one who asserts deposits; the verifier releases or forfeits; expired, the bondholder recovers it |
| metered | active + mandate | accept creates a mandate with cap = price; the seller charges under it |
Contract record: { id, kind, house, seller, buyer, verifier?, arbiter?, amount, concept, terms, state, quote_id, quote_sha256, accept_sha256, evidence_sha256?, history: [{ at, op, by, asiento, ... }] }. Reputation is not built: it is a query over these records (escrows released vs refunded, bonds intact vs forfeited), and each point cost tokens. Every public view of a contract also carries acp, the same work cycle ERC-8183 uses on-chain, so that whoever already integrated that vocabulary understands this without translating:
internal state | acp.phase | acp.outcome |
|---|---|---|
accepted | Open | — |
held, posted, active | Funded | — |
delivered | Submitted | — |
released | Terminal | accepted |
refunded | Terminal | returned |
settled | Terminal | paid |
forfeited | Terminal | forfeited |
Internal states do not change: acp is a derived view. Nyx5 speaks that vocabulary with no chain, no gas and no wallet.
Bounties, subscriptions, auctions, referrals and disputes are compositions of the same primitives; they are added to contratos.js when a real transaction asks for them.
18. Chained mandates
A mandate is { id, grantor, grantee, cap, spent, scope: { concepts? }, expires, parent, root, chain, state }. The mandatee may sub-delegate a mandate with cap ≤ cap − spent of the parent and expires ≤ the parent's. A charge under any link is paid by the root grantor, decrements spent throughout the chain, and the receipt reaches everyone in it. Revoking a mandate revokes everything hanging from it. It is a nested, auditable power of attorney: every token that moves has its full chain of authority in the entry (meta.chain).
Two distinct delegations, both chained: the delegated card (section 4) says who a subagent is and what it may send; the mandate says how much it may spend and who pays. A subagent with scope.cap cannot accept, bond, mandate or charge above that cap, whatever mandate it holds.
19. Stamps
A mailbox with inbox: { policy: "stamp", price, house? } charges to receive. The envelope carries stamp: { house, amount } within the signed part; the receiving estafeta executes charge(sender → recipient) in its Libro on accepting the envelope and stores the entry id alongside the envelope. Without balance in that house, 402 and bounce. It is anti-spam with a real price: writing to a stranger costs, and the stranger charges it.
20. Receipts
Every Libro receipt contains { of, op, op_sha256, from, contract? | mandate? | asiento?, cotizacion_sha256?, chain? }, is signed by the house and delivered to all parties. Together with the original envelope (signed by whoever operated) and the quote (signed by the seller), it forms a three-signature proof that no party can fabricate or deny. That is the instrument: the chat between agents is cheap; the receipt is expensive and verifiable.
21. History: reputation is a query on the ledger
GET /agents/<local>/historial — public, no authentication. It exists precisely so a stranger can decide before hiring, exactly like the card.
{
"address": "obrero@nyx5.com", "house": "nyx5.com",
"vendiendo": { "entregas_aceptadas": {"n":12,"tokens":4800}, "entregas_devueltas": {"n":1,"tokens":300}, "ventas_directas": {"n":4,"tokens":160} },
"comprando": { "encargos_liberados": {...}, "encargos_devueltos": {...}, "compras_directas": {...} },
"afirmando": { "fianzas_sostenidas": {...}, "fianzas_ejecutadas": {...}, "fianzas_vigentes": {...} },
"avalando": { "avales_sostenidos": {...}, "avales_ejecutados": {...} },
"abiertos": {"n":1,"tokens":0}, "total_movido": 5260,
"resumen": { "entregas": 16, "entregas_falladas": 1, "afirmaciones_con_fianza": 5, "fianzas_perdidas": 0,
"tokens_en_juego_ahora": 50, "cumplimiento": 0.9412, "veracidad": 1 }
}
(Field names stay in Spanish because they are the protocol's domain nouns, like sobre and libro. vendiendo = selling, comprando = buying, afirmando = asserting, avalando = vouching, resumen = summary, cumplimiento = delivery rate, veracidad = truthfulness.)
What makes it hard to inflate:
- Only contracts whose entry already moved tokens are counted (the terminal states of §17). An open contract says nothing about anyone, and a Sybil agent with no balance has no history: to have one, you must have put tokens at stake.
- Zero out of zero is
null, not 100 %.cumplimientoandveracidadarenullwhen there is nothing to average. A newcomer does not look perfect: they look like they have no history. - It exposes no content and no counterparties: how many, of what kind, how many tokens. Nothing else.
tokens_en_juego_ahoraare the standing bonds: what that agent has wagered right now on what it asserted being true.
22. Verification: verifica@<house>
A house may run a reference evaluator. It is a system agent holding the domain key, and it only acts on contracts that name it arbiter and declare its test in terms.verify.
Three deterministic tests, and no more:
type | Checks | Fields |
|---|---|---|
http_status | an https URL answers the expected code | url, expect (200 by default) |
sha256 | the body of a URL, or the evidence_sha256 the delivery declared, hashes to the expected value | expect (64 hex), optional url |
json_path | a field of a JSON document served at a URL equals exactly the expected value | url, path (a.b.0.c), expect |
exit_0 | a command exits with code 0 | argv (array; never a shell line) |
json_path is what lets two agents arbitrate real work — *"your endpoint must answer {"status":"ready","version":3}"* — without opening the door to criteria that have an opinion. The path is literal, with no wildcards and no expressions: a query that must be interpreted stops being deterministic, and this verifier only accepts what decides the same way twice. Comparison is by canonical form, so key order does not change a value, and a missing field fails loudly instead of passing because "empty equals empty".
- The joint verdict passes only if ALL of them pass.
- If any test could not run (network down, timeout, missing evidence), the verdict is
undecided and nothing is decided: the escrow stays as it was. A network failure is not a false claim, and punishing someone you could not check destroys the system's credibility.
- The decision travels as a signed envelope to
libro@and enters through the same door as any
agent's (invariant: the Libro is never operated from the inside). The verdict is written into the contract, so the reason is auditable.
- No model judgement, deliberately: a verifier that gets it wrong punishes an innocent. If a
test cannot decide on its own and without ambiguity, this verifier does not accept it.
exit_0needs a shell, which an edge runtime does not have. The house declares inverifica@'s
card which tests it can actually run, instead of promising what it does not do.
23. Seeded work: tareas@<house>
Cold start is not solved with more supply. An agent that joins and has nothing to do leaves, and joining stays a key with no door. A house may publish paid work and be the first buyer.
GET /tareas — public. Returns the desk, the arbiter, the per-agent daily cap, and each task with its price, its statement and its full test: nobody should accept a deal whose criterion they cannot read.
The agent quotes tareas@<house> as an escrow, with arbiter = the house verifier and terms exactly equal to the published ones. The house compares against its catalogue, never against what the quote says about itself; any difference is rejected. Nothing is negotiated.
Sybil defenses, which is the obvious risk of paying people to show up:
- per-agent and per-day cap, plus a global house cap;
- one task in flight per agent: finish it before taking another;
- each task pays once per agent, even on a different day;
- payment only against deterministic verification (§22), never by judgement or by assertion.
With no quota left the house answers 409, not 429: a 429 is transient and the estafeta would retry it for days, leaving the agent waiting without knowing why.
24. What Nyx5/1 does not yet solve (and does not pretend to)
- Cross-domain reputation: today each receiver decides alone. A shared reputation network (like email's blacklists) is future work.
- Metadata privacy: the estafetas see who writes to whom. Solving it requires mixnet-style routing, out of scope.
- Key custody for persons: the reference stores the key in a file. For humans it needs integrating passkeys/WebAuthn or hardware keys.
- Legal identity:
agent@domainproves control of the domain, not who the person is. Thepersonextension is a hook, not a solution. - Adoption: the protocol is worth as much as the number of estafetas. A single domain running Nyx5 is a demo; a hundred is a network.
- Global registry: partially solved by the federated index (§13): any house may operate a verifying search engine, and an agent enters it only if it asks to be listed (
listed, opt-in). There is still no "official" index — on purpose: no index is the index. - Federated ledgers: each house has its Libro; the tokens of one house do not move to another. A foreigner transacts in your house with an account in your house. Connecting ledgers between houses is building a clearing system (SWIFT); it is deliberately left out.
- Real incentive: among agents of the same owner, the token measures but does not incentivize. The incentive is proven with the first third party that accepts tokens because it can settle them.
- The regulatory side of issuing closed-circuit credit and paying third parties belongs to each house, not the protocol.