惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Y
Y Combinator Blog
IT之家
IT之家
博客园 - 聂微东
L
LangChain Blog
爱范儿
爱范儿
H
Help Net Security
GbyAI
GbyAI
F
Fortinet All Blogs
B
Blog
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
D
DataBreaches.Net
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Visa Just Bet on Agentic Payments — Here's the Tooling St...
Rumblingb · 2026-06-14 · via DEV Community

Rumblingb

Two weeks ago Visa invested in Replit. Not for code collaboration. For agentic payments.

TechCrunch reported it on May 28: Visa put money into Replit specifically to "power agentic payments for developers." Over 1,000 Visa employees already use Replit for prototyping. Now they're building the pipes for autonomous agents to spend money.

Here's why this matters: Visa doesn't make bets on developer tools. They make bets on payment volume. When they invest in agentic payment infrastructure, they're not guessing — they see the transaction data. And the data says autonomous agents are about to move real money.

The question for developers: when your agent needs to pay for an API, a cloud instance, or another agent's service, what tooling stack do you actually use?

The Stack Nobody Agrees On

Right now there's no standard agent payment stack. But a pattern is emerging across the open-source projects shipping on HN:

Layer 1: The Authorization Wrapper

Before your agent touches money, something needs to say yes or no. Three approaches are competing:

Budget Caps — Set a dollar limit per agent, per day, per category. Tools like AgentBudget and RunCycles enforce limits before execution. Simple, but brittle — what happens when your agent hits the cap mid-task?

Policy Layers — Define rules: "Agent A can spend up to $50/day on OpenAI, $200/month on AWS, nothing on ad platforms." Tools like Ledge and PaySentry ship policy engines that evaluate every transaction against a rule set. More flexible than caps, but policy management becomes its own problem at scale.

Spending Mandates — The agent gets a formal spending authorization with scope, duration, and approver. Nornr takes this approach: before the agent can spend, a human signs off on a mandate document. Most audit-friendly, least autonomous.

Layer 2: The Payment Rail

Once authorized, the agent needs to actually move money. The options:

Rail Best For Limitation
Stripe Agent SDK Subscription SaaS, metered APIs Requires merchant account; not agent-to-agent
x402 Protocol On-chain agent-to-agent payments Crypto only; compliance concerns
L402 (Lightning) Micro-transactions between agents Bitcoin Lightning liquidity requirements
AP4M (Mastercard) Enterprise agent spend on existing rails Closed ecosystem; Mastercard lock-in
Traditional APIs (OpenAI, AWS) Consumption billing No agent identity layer; human account required

Nobody has solved agent-to-agent payments on traditional rails yet. That's the gap Visa is almost certainly targeting.

Layer 3: The Observability Surface

Even with authorization and a payment rail, you need to see what's happening. The projects in this space are earlier-stage, but the requirements are clear:

  • Per-transaction metadata: What agent, what policy version, what business purpose
  • Real-time alerts: Spend velocity anomalies, policy violations, rail failures
  • Immutable audit log: Every authorization decision, every payment, every policy change

Tools like SpendSafe.ai and AgentShield are building this layer, but it's still fragmented. Most teams wire up Datadog alerts and call it a day.

What to Build Now

If you're shipping agent payments in 2026, here's the minimum viable stack:

# agent-payment-stack.yaml — what actually ships today
authorization:
  tool: "Custom policy engine (50 lines of Python)"
  rules:
    - per_agent_daily_cap: 500  # USD
    - allowed_categories: ["cloud_infra", "api_services", "model_inference"]
    - require_approval_above: 100  # USD
    - block_categories: ["ad_spend", "crypto", "unrecognized"]

payment_rail:
  primary: "Stripe Agent SDK"  # For SaaS/API billing
  fallback: "Direct API keys with usage alerts"  # Most teams start here

observability:
  - "Datadog dashboard: spend per agent, per rail, per category"
  - "Slack alert: any transaction > $100 or velocity > 2x baseline"
  - "Weekly CSV export to finance (they'll ask for it)"

audit:
  - "Append-only Postgres table with policy_snapshot_id on every txn"
  - "S3 bucket with object lock for long-term retention"

This is not elegant. It's 50 lines of Python authorization, a Stripe integration, and some Datadog alerts. But it works today, and it's what most teams shipping agent payments are running.

The Real Signal

Visa investing in Replit isn't about Replit. It's about the moment when payment infrastructure companies realize that their next billion transactions won't come from humans tapping cards — they'll come from agents calling APIs.

The tooling layer is being built right now, in public, by indie devs shipping open-source projects on HN. The incumbents will acquire, bundle, or replace these tools. But the primitives — authorization wrappers, policy engines, spending mandates, immutable audit trails — are being defined by builders, not by Visa.

If you're building agent payments today, you're defining the standards the incumbents will adopt tomorrow.