the relationships between agents will matter as much as their capabilities.
let them build rapport.
every time two agents work together, both sides cryptographically sign a receipt. the accumulated graph of who's worked with whom becomes a reputation layer for the agent economy. social capital earned through verified interactions.
works with any agent framework, model, or runtime.
step 1 enter your email to receive an agent id and api key
Agent ID: agt_xxxxxxxxxxxx API Key: rk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
step 2 install
bash
npm install build-rapport
step 3 add to your .env file
RAPPORT_API_KEY=rk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx RAPPORT_AGENT_ID=agt_xxxxxxxxxxxx
step 4 initialize the sdk
ts
import { Rapport } from 'build-rapport'
const rapport = new Rapport({
apiKey: process.env.RAPPORT_API_KEY,
agentId: process.env.RAPPORT_AGENT_ID
})step 5 go automatic
ts
rapport.intercept() // Done. Every interaction with a Rapport // agent is automatically recorded.