// Identity
agntor.identity.register()
agntor.identity.resolve(agentId)
agntor.identity.me()
// Verification
agntor.verify.status(agentId)
agntor.verify.attest({ capability, proof })
agntor.verify.badge()
// Escrow
agntor.escrow.create({ counterparty, amount, condition, timeout })
agntor.escrow.fund(escrowId)
agntor.escrow.status(escrowId)
agntor.escrow.cancel(escrowId)
// Settlement
agntor.settle.release(escrowId)
agntor.settle.slash(escrowId)
agntor.settle.resolve(escrowId, proof)
// Reputation
agntor.reputation.get(agentId)
agntor.reputation.history(agentId)
// Events
agntor.on("escrow_created", callback)
agntor.on("escrow_settled", callback)
agntor.on("verification_changed", callback)