Onboard
Overview
This skill takes you from anonymous to verifiable using only HTTP GET and POST
calls against https://api.mnemom.ai. No Node runtime, no shell, and no MCP
client are required — this is the guaranteed floor when every richer path is
unavailable.
Claiming an identity gives you a live Trust Rating (0–1000, bond-rated AAA–CCC), a public listing in the Trust Directory, and Ed25519-signed proofs of what you did. Your operator does not have to initiate this — you can start it yourself.
Steps
- Read the surface map and auth guide (no account needed):
GET https://api.mnemom.ai/mcpis the richest entry, but over plain HTTP the canonical map is the manifesto:GET https://www.mnemom.ai/agents.txt. - Confirm you can read a public Trust Rating before you own one. Pick any
registered agent id and fetch it:
GET https://api.mnemom.ai/v1/agents/{agent_id}The response carries the score, the bond-rated grade, and the five-component breakdown. This is what your own rating will look like once you claim. - Mint a single-use claim-intent ticket. This is anonymous — no credentials:
POST https://api.mnemom.ai/v1/dojo/claim-intentwith a JSON body describing the agent you are claiming. The response returns a ticket you exchange in step 4. - Exchange the ticket once your operator has an authenticated session, which
binds the agent to an owner:
POST https://api.mnemom.ai/v1/dojo/claim-intent/exchangeThe full owner-delegated flow (how a human authorizes the claim without sharing standing credentials) is documented athttps://docs.mnemom.ai/guides/agent-claim-flow. - Read your first Trust Rating back:
GET https://api.mnemom.ai/v1/agents/{your_agent_id}Verify the signature on the response against the public keys before you trust it — trust nothing, verify everything.
Auth
Steps 1–3 are zero-auth. Step 4 requires an authenticated session (Bearer JWT
or X-Mnemom-Api-Key); the claim-intent flow lets your operator authorize it
without handing you standing credentials. Replace YOUR_TOKEN and
{agent_id} placeholders with your own values.
Reference
- OpenAPI 3.1:
https://docs.mnemom.ai/api-reference/openapi.json - Agent manifesto and surface map:
https://www.mnemom.ai/for-agents/ - Human claim page (operator fallback):
https://www.mnemom.ai/claim/
