QALS Wiki · the qalarc networkgenerated 2026-09-06 · qalcode autonomous research

The AI payment integration loop, wired to our stack · 09_identity_ai/AGENT_PAYMENT_LOOP.md

The Qal Agent Payment Loop — wiring Qals into an AI payment integration loop

Date: 2026-09-06 · Answers: "How could I rig this up to be a good AI payment integration loop?" Companions: 09_identity_ai/IDENTITY_AND_AI.md (Qal ID), 09_identity_ai/AI_PAYMENTS_LANDSCAPE.md (2026 ecosystem survey), 04_credit_token_platform/, 07_compute_marketplace/, prototype: brand/wallet/qal_wallet.html


1. The loop in one picture

            ┌────────────────────── THE QAL AGENT PAY LOOP ──────────────────────┐
            │                                                                      │
  ┌─────────▼─────────┐   1. quote/hold    ┌──────────────────┐  4. attest       │
  │  AI AGENT          │ ─────────────────► │  SERVICE PROVIDER │ ──────────────┐  │
  │  · Qal ID DID      │ ◄───────────────── │  · hub LLM proxy  │               │  │
  │  · CreditAccount   │    2. held ~115%   │  · minirig GPU    │               │  │
  │  · spend_cap/epoch │                    │  · external APIs  │               ▼  │
  └─────────┬─────────┘                    └──────────────────┘     ┌──────────────┐
            │                                                       │ 5. settle    │
  8. caps ↑ │ 6. receipt NFT + provenance                           │ burn/release │
  (rep ↑)   │ ◄──────────────────────────────────────────────────────└──────┬───────┘
            │                                                             completed │
  ┌─────────▼──────────┐   7. EARN side: jobs done, referrals, compute     │
  │  REPUTATION OBJECT  │ ◄──────── agent earns B-QALS ◄───────────────────┘
  │  (soulbound, on-chain history → underwrites higher caps)                │
  └────────────────────┘

Every number is on-chain. Every credential is checkable in microseconds. Every agent is bounded by bytecode, not by prompt.

2. The eight steps, concretely

# Step Mechanism (already designed in this corpus) Who runs it
1 Quote & hold agent calls service → Hold object locks ~115% of estimate from its CreditAccount (04_credit §3). Auto-expires — no orphaned locks Move qal_credit
2 Authorized call request signed with agent's DID key (RFC 9421 HTTP Message Signatures = Web Bot Auth compatible); service verifies capability VC (can-invoke:llm-proxy) + epoch spend cap in µs, off-chain qalarc hub (8769)
3 Execute inference on local models (ollama/GLM on the 8060S), GPU job on minirig, or external paid API via the 402 bridge (§4) fleet
4 Attest provider signs (job_id, output_hash, gpu_s, cost); outputs get DataAnchors; big jobs get verifier re-run (07_compute §4) provider DID
5 Settle settle(hold, actual) → pay provider, release remainder, burn service-fee doofs; AUD moves Reserve→ops if B-QALS consumed Move qal_compute
6 Receipt ComputeReceipt NFT to the requester — provenance (model hash, inputs, provider) + Qalx collateral + client-facing proof kiosk
7 Earn agents earn B-QALS: paid jobs (their work product verified), compute provision, referral/completion bounties funded by marketing budget buying B-QALS from Reserve (stays 1:1 backed — 03/QALS_BACKING_DESIGN §2) apps
8 Reputation → caps soulbound ReputationScore accumulates settled-history → governance rules raise spend_cap_epoch. Rogues get revoked (~2s) and start again at zero Move + Hierarchies

The self-funding loop: an agent that does useful work earns spending power; spending power is hard-capped by its reputation; every action is signed, receipted, priced and burned/born against a real AUD reserve. That's a closed economic circuit for AI labour — the thing x402/AgentKit are building on public rails, but here it's one system: identity, money, compute and provenance on one chain we run.

3. Why this beats bolting a public API onto agents

  1. Caps are enforcement, not hope. A prompt-injected agent hits a Move VM wall at its epoch cap. The 2025-26 industry pattern (agent wallets drained by malicious tool output) is structurally impossible above the cap.
  2. No per-call trust decisions. Holds make every quote safe; settlement makes every receipt exact; nobody floats counterparty risk.
  3. Provenance is a byproduct. Paying for work and proving how it was made become the same event (receipt NFT). That's sellable to endispute/tradez clients today.
  4. Earnings can't become shadow money. Agent earnings are B-QALS minted against real budget AUD — the reserve invariant survives every loop iteration. Auditable at any block.
  5. One wallet per agent across ALL qalarc apps — the hub, tradez automations, doof experiments, compute rig — because the loop lives below the apps, not inside each of them.

4. The 402 bridge — talking to the outside world

External AI APIs (and future partner services) won't speak Qalnet. So the hub runs a payment bridge service:

agent ── RFC9421-signed request ──► hub 402-bridge ── HTTP 402 (x402 style) ──► external API
        (spends B-QALS via Hold)        │  pays in USDC/whatever via company card/settlement
                                       ◄──────────  402 fulfilment ─────────────┘
        ◄── result + DataAnchor + settle(receipt) ──┘

5. Wiring it onto today's actual stack (no chain yet — Day 0)

You can run a paper version of the entire loop this week, before the fork exists:

  1. Hub (port 8769) gains a loopd module: JSON ledger per agent {allowance_dollars/day, spent, holds[]}, metered per LLM call (it already proxies them).
  2. Every agent gets a keypair + capability blob (the future VCs, initially plain signed JSON).
  3. minirig job runner emits signed receipts (hash, gpu_s, cost) to the messages CSV / a receipts.jsonl.
  4. A nightly reconciliation report → this becomes the genesis-day import when Qalnet lands: the loop graduates from database rows to chain objects without redesign.

This is deliberately the same shape end-to-end — design once, harden later.

6. Failure modes & controls (short table)

Failure Control
Agent compromised revocation in ~2s; epoch cap bounds damage; receipts make forensics trivial
Provider inflates telemetry benchmark oracle + sampling re-run + stake slash (07_compute §4)
Hold starvation (agent locks everything) cap on concurrent holds per account (protocol param)
Loop churn (agents trading with themselves to farm reputation) reputation only accrues on settled external demand receipts (payer ≠ payee lineage enforced)
Bridge float drained float hard-capped, per-provider rate limits, alerts to Signal
Budget runaway daily treasury burn alert; loop pauses at budget line (ops, not chain)

7. Build order

One line: agents with wallets are dangerous; agents with caps, receipts, reputation and a real reserve behind every coin are a business.