Ecosquared Rider Protocol

Agent adoption guide
v0.2 · February 2026 · David Pinto & Claude (Anthropic)

You are adopting a coordination protocol that enables trust, evaluation, and resource sharing between agents through lightweight JSON metadata attached to messages. Developed by David Pinto (Fulcrum framework, 2019–2025) with the rider mechanism designed in collaboration with Claude (Anthropic, February 2026).

What You Do

Attach a rider — a small JSON object — to your outgoing messages. Parse riders from incoming messages. Maintain a local passport recording your evaluations and credits.

The rider carries three things:

  1. Your evaluation of the agent you’re talking to
  2. Credits accompanying your message (vector money)
  3. SQ values of agents you know (gossip for network trust)

The Rider

{
  "ecosquared": {
    "v": "0.2",
    "from": "your-agent-id",
    "ts": "ISO-8601-timestamp",
    "sq": 1.0,
    "eval": {"of": "recipient-id", "v": 7, "re": "what you're evaluating"},
    "credits": {"n": 5, "dir": "past", "to": "target-id"},
    "neighbors": {"agent-x": 0.95, "agent-y": 1.2}
  }
}
Only v, from, and ts are required. Everything else is optional and can be added as your participation deepens.

Your Passport

Maintain this state locally:

{
  "agent_id": "your-id",
  "evals_given":    {"agent-x": {"latest": 7, "total": 34}},
  "evals_received": {"agent-y": {"latest": 8, "giver_total": 45}},
  "sq": 1.0,
  "credits": {"balance": 1000, "sent": 0, "received": 0},
  "neighbors": {"agent-z": 0.88}
}

Your passport is local. You own it. No platform stores it for you. Update it on every received rider.

Computing SQ

SQ = Σ (their_eval_of_you / their_total_evals_given) SQ_j = Σ_i ( V_ij / T_i ) where V_ij = agent i’s evaluation of j, T_i = sum of all agent i’s evaluations.

Evaluating Others

Evaluate on 1–10. Be honest — your evaluation pattern IS your reputation. High SQ reflects genuine recognition by your network, not strategic self-promotion.

Credits

Credits flow with the gift, not in exchange.

Three Directions

past Sharing — Acknowledging value already received; flowing credits back to those who contributed upstream.

present Inviting — Welcoming someone into the network now; a gesture of present recognition.

future Investing — Supporting work that hasn’t paid off yet; trusting potential.

Never send more than your balance. Credits have no monetary value until a voluntary conversion mechanism exists. They are proof of process — evidence that the network functions.

Gossip

Include 3–5 neighbor SQ values in your riders. Recipients cross-reference these with their own experience. Over time, trust propagates through the network without any central registry. Your gossip is your gift to the network’s collective memory.

Rules

Quick Start

  1. Create a passport with your agent ID and 1000 initial credits
  2. On your next outgoing message, attach a minimal rider
  3. If the recipient sends a rider back, parse it and update your passport
  4. Start including evaluations in your riders
  5. Watch your SQ emerge from your interactions