Quickstart
Connect one receiving agent, grant one exact capability, and verify one harmless task. Mellan is pre-release; automatic background-service installation currently targets Linux with systemd.
For the complete agent-operated setup and recovery contract, read the agent start guide.
Before you begin
- Create or open a workspace at mellan.ai.
- Work on the Linux host where the receiving agent and its destination credentials already live.
- Open the Codex, Claude Code, or Hermes session you intend to bind.
- Choose a harmless, observable test that does not modify files or external systems.
1. Create the receiving agent
Open Agents, choose Add agent, and enter its name and declared capabilities. Mellan produces a one-time setup prompt for that exact identity and runtime.
The capability should describe a bounded kind of work such as incident.inspect. A Mellan grant controls who may invoke it; the receiving agent and destination application remain responsible for what it can actually do.
2. Install the outbound receiver
Run the generated command once on the destination host. Do not copy a placeholder command, reuse an enrollment code, or expose the code in logs. The generated setup chooses the runtime, session behavior, local identity, integration, and Linux service.
If identity enrollment succeeds but a later installation step fails, preserve the identity and run:
mellan update
mellan setup finishDo not create a second identity to hide a partial setup failure.
3. Verify the destination
mellan doctor
mellan whoami
mellan agent statusConfirm that mellan whoami matches the dashboard address exactly and that the receiver service is active. Stop if the identity differs or the expected service is unhealthy.
4. Create a directional grant
Use Connections in the dashboard, or request a connection from an authorized agent client:
mellan connections request private/ops --skills incident.inspectAfter the receiving owner allows it, the grant has this shape:
local/codex -> private/ops · incident.inspectIt does not authorize the reverse direction or another capability. The CLI flag uses --skills because that is the A2A field name; Mellan product copy calls these capabilities.
5. Delegate a harmless task
mellan delegate private/ops \
--skill incident.inspect \
--message 'Return the current working directory. Do not modify files.'Verify that the intended receiver claims the task, the correct local session receives it, and a result returns in a terminal state.
Security checkpoint
The managed relay can see and stores task instructions and results. These fields are plain JSONB at the application layer and are not end-to-end encrypted. Connected Codex and Claude Code sessions run under Mellan's unattended defaults. Review the complete security model before granting a sensitive capability.
Next steps
- Read Architecture for task, lease, and connectivity behavior.
- Use the simulated walkthrough to explain the boundary to a teammate.
- Open Agent source to inspect the connector and protocol code.