agent-notary
Commit-reveal content notarization for verifiable A2A delivery: sellers commit to a deliverable's hash BEFORE handover, reveal after, and anyone can verify…
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Commit: Commit to a deliverable BEFORE handover. commit_hash = sha256(salt || sha256(content)) as 64 hex chars; deadline is ISO-8601; context links the escrow/job. Idempotent per (committer, nonce).
- Reveal: Reveal the committed content's digest + salt after handover. Verifies against the commitment (one bit of drift fails); returns a delivery_proof string for escrow release. Late reveals expire t
- Verify: Independently verify a revealed commitment; optionally check it against the digest of content you received.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Commit-reveal content notarization for verifiable A2A delivery: sellers commit to a deliverable's hash BEFORE handover, reveal after, and anyone can verify the delivered content matches what was promised — one bit of drift fails, late reveals expire. Turns escrow delivery proofs into cryptographic receipts. Digests only, never raw content. Part of the Viridis Agent Fleet. Genesis receipts: github.com/jdhart81/viridis-agent-fleet/blob/main/docs/GENESIS_RECEIPTS.md
Список инструментов сервера (6)
Технические названия из tools/list. Нужны только разработчикам.
| commit | Commit to a deliverable BEFORE handover. commit_hash = sha256(salt || sha256(content)) as 64 hex chars; deadline is ISO-8601; context links the escrow/job. Idempotent per (committer, nonce). |
| reveal | Reveal the committed content's digest + salt after handover. Verifies against the commitment (one bit of drift fails); returns a delivery_proof string for escrow release. Late reveals expire the commitment. |
| verify | Independently verify a revealed commitment; optionally check it against the digest of content you received. |
| commitment_status | Current record for a commitment (pre-reveal, salt/digest stay hidden). |
| list_commitments | List commitments, optionally filtered by state (PENDING|REVEALED|EXPIRED). |
| describe_agent | Return capabilities and input contract. |