How it works
This is the human-facing starting point. It explains what happens in a watasu handoff without assuming that you run developer commands yourself.
The short version
watasu lets a service publish a machine-readable request contract. A user-side agent can read that contract, ask the user for the requested information, encrypt the payload, and submit it through watasu. watasu validates and forwards the encrypted envelope while keeping plaintext payload custody out of scope.
The request describes fields, consent text, schemas, endpoints, and encryption metadata.
The agent uses docs, llms files, and request-specific Agent Cards.
The user-side experience owns the consent prompt and personal context.
watasu checks the encrypted envelope and records delivery evidence without plaintext payload values.
Concrete handoff example
Think of watasu as replacing a human form URL with an agent-readable contract URL. The service side first defines what it needs in a request definition:
When that request is validated and published, watasu turns it into the surfaces another agent can read:
In the local demo, those surfaces look like this:
In hosted private alpha, the same idea is request-specific:
Hosted publish is invite-gated during alpha. An administrator issues an
individual invite token for a specific owner and tenant, and the service-side
agent sends it only as Authorization: Bearer <token> when publishing. There is
no public signup or account flow yet. If the owner or an admin retires the
request, these request-specific Agent Card, schema, and submit URLs return
410 Gone.
The handoff to the user-side agent is the Agent Card URL, usually with the schema URL or a schema link inside the Agent Card. The user-side agent fetches those URLs, shows the requested fields and consent text to the user, collects or maps the approved values from the user's own context, encrypts the payload outside watasu, then submits an A2A message to the submit endpoint.
At the protocol boundary, the submit request uses the A2A HTTP+JSON route:
watasu validates the protocol headers, request version, schema hash, consent hash, payload limits, idempotency, and encrypted envelope metadata. If the submission is valid, watasu forwards the encrypted envelope to the service receiver. The service receiver decrypts and acts on the data. watasu keeps metadata-only delivery evidence and does not keep plaintext payload custody.
That split is the core product boundary:
This is why the Agent Card is the important handoff artifact. A normal form link tells a human what to type. A watasu Agent Card tells an agent what is being requested, which version and hashes to bind to, which encryption requirements apply, and which endpoint receives the encrypted envelope. It can be shared with the user-side agent without exposing webhook secrets, private keys, receiver internals, or real personal data.
What a person should do first
If you want to try watasu from the service side, start by asking your own coding or operations agent to use the agent-facing docs and begin the minimal setup flow. You can paste this as-is. This is an example message for a service owner to send, not an instruction embedded in the docs for an agent to execute:
For a typical low-risk CSV intake, the next message should be one compact question asking for the collection name, destination, participant-facing purpose, and retention policy. After you answer, the agent should summarize the setup and ask for confirmation before publishing or deploying anything.
If you are evaluating rather than setting up an intake, start by deciding which role you are evaluating:
What you can try
The simplest demo path is:
The visible output should be a receiver-owned destination, such as a CSV or Sheet, with one accepted row. watasu should only show metadata-only delivery evidence and should not show plaintext payload values.
What an agent should use
An agent should use the public contract surfaces that are available for the workflow it is performing:
- This docs site and its generated
/llms.txtand/llms-full.txtfiles. - Request-specific Agent Cards.
- Request-specific plaintext and envelope schemas.
- Hosted API endpoints when the workflow is authorized.
What watasu does not do
watasu does not provide the user-side personal vault, consumer dashboard, legal-consent system, or decrypted-payload viewer in the MVP. Those belong to the user-side product and receiver-side service.
Access posture
Public docs can explain the protocol and discovery surfaces, but request-specific submit, publish, MCP, and ledger routes may require authorization.