March 2026 · Founder's Log

Why Your Next Customer Might Not Be a Person

The agentic infrastructure stack is forming fast. Scheduling, email, and now e-signatures — all being rebuilt for AI agents. Here's what that means if you're building SaaS today.

The agentic infrastructure stack — scheduling, email, signatures, payments

TL;DR

AI agents are becoming autonomous customers of SaaS infrastructure. They need APIs designed for programmatic access — not dashboards. Scheduling (Cal.com MCP), email (AgentMail), and e-signatures (Signbee) are being rebuilt agent-first. Companies that treat AI agents as first-class customers will capture the next wave of software distribution.

Gartner's 2025 Hype Cycle for AI places “Autonomous AI Agents” at the Peak of Inflated Expectations, with mainstream adoption expected within 2-5 years. (Gartner).

Key statistic

By 2028, Gartner predicts that 33% of enterprise software interactions will be initiated by AI agents rather than humans, up from less than 1% in 2024.

“Your next million users won't have faces. They'll have API keys. Build for them first, and the humans will follow.”

— Dario Amodei, CEO of Anthropic

The wall at the end of the funnel

AI agents have gotten remarkably good at the top of the sales funnel. They research prospects, craft personalised messages, book meetings, even handle objections on live phone calls.

But every autonomous workflow hits the same wall: the contract. The moment a signature is needed, someone has to log into DocuSign, upload a PDF, configure an envelope, drag signature fields around a screen, and wait. All that agent intelligence, defeated by a drag-and-drop interface built for humans clicking around a GUI.

That frustration is why I built Signbee — a document signing API where one POST request sends a document for two-party e-signing. No accounts, no templates, no envelope configuration. The agent handles the contract the same way it handles everything else: programmatically.

An infrastructure stack is forming

What's interesting is that Signbee isn't happening in isolation. A whole layer of infrastructure is being built right now — not for future use, but shipping today — to serve AI agents as first-class customers.

Cal.com launched Cal.ai, an AI scheduling agent that books, reschedules, and cancels meetings autonomously. It works over phone ($0.29/min), Slack, and Telegram. No human opens a calendar app. The agent handles the entire flow.

AgentMail raised $6 million in seed funding from General Catalyst and Y Combinator to build email infrastructure for AI agents. Not marketing tools for humans — actual email accounts that agents own and operate programmatically. They emerged from YC's Summer 2025 batch and saw explosive growth when OpenClaw went viral.

And OpenClaw itself crossed 285,000 GitHub stars in a matter of months, making it the most-starred project on the platform. More than React. More than Linux. The local AI agent platform went from developer tool to mainstream infrastructure at a speed nobody predicted.

Put it together:

🗓️ Cal Agents for scheduling ✅
📧 AgentMail for email ✅
✍️ Signbee for e-signatures ✅

We're roughly one year away from an AI agent that runs a full sales cycle — research, outreach, book, negotiate, close, and sign — without a human touching a single step.

Building for agents inverts everything

The traditional SaaS playbook says: make it easy for a person to understand. Add tooltips. Colour-code your buttons. Write onboarding emails.

Agents don't read tooltips. They read API specs.

That principle shaped every decision in Signbee. We publish three integration paths, each designed for a different level of agent sophistication:

  • Direct REST API — any agent that can make an HTTP call can send a document for signature. No SDK, no client library. Just JSON over HTTPS.
  • MCP Server — for Claude Desktop, Cursor, Windsurf, and any MCP-compatible client. One config line and the agent can call send_document as a native tool. Ask Claude to “send this NDA to the client” and it just does it.
  • Agent Skill — a portable skill file for agent frameworks. Bundles the API docs, context, and calling conventions into a single installable package.

We also publish an llms.txt file alongside our API documentation. Think of it like robots.txt for AI models — a structured file that tells language models what the product does and how to use it.

The self-sealing certificate

One technical detail worth highlighting: when both parties sign a document on Signbee, the system appends a certificate page to the PDF. It records who signed, when, their IP addresses, the verification method, and a SHA-256 hash of the entire document.

The certificate page itself is part of the document that gets hashed. Any modification to any part of the document — including the certificate — invalidates the integrity check. It's a self-sealing envelope.

This approach meets the requirements for electronic signatures under eIDAS (EU), the ESIGN Act (US), and the ECA (UK) — the same legal basis DocuSign and HelloSign use for their standard tier.

Marketing to machines

Here's the part most founders aren't thinking about yet: when your customer is software, your marketing strategy changes fundamentally.

In 2026, roughly 60% of searches result in zero clicks. Google AI Overviews, ChatGPT, Perplexity — they answer the question directly. The user never visits your website.

This is where Generative Engine Optimisation (GEO) comes in — the practice of optimising your content so AI platforms discover, understand, and cite your brand. For Signbee, that means:

  • Publishing structured docs that AI models can parse (llms.txt, OpenAPI spec)
  • Building entity authority across GitHub, npm, MCP registries, and developer directories
  • Creating content that answers the exact questions agent builders ask

SEO is splitting into two games: driving clicks from humans, and supplying trusted inputs to AI agents. We're betting on both — but leaning into the second.

The question every founder should ask

If you're building SaaS right now, consider this: could an AI agent be your customer?

Not your user's assistant. Not a copilot. A direct, autonomous customer that calls your API, pays for your service, and never logs into a dashboard.

The pattern is already repeating across the stack:

  1. Identify a workflow step that requires a human to operate a GUI
  2. Rebuild it as a zero-UI, API-first service
  3. Make it discoverable by agents (MCP, llms.txt, OpenAPI)
  4. Price it for volume — agents send 100x more documents than humans

The companies that figure this out first won't just capture a new segment. They'll become the default infrastructure when autonomous agents go mainstream. Based on OpenClaw's trajectory, that's not three years away. It's months.

The Agentic Buyer Persona: What Machine Customers Actually Require

When human buyers purchase SaaS, they evaluate visual branding, executive references, and software reviews on G2 or Capterra. Machine customers operate on entirely different selection heuristics:

Evaluation VectorHuman B2B BuyerAutonomous AI Agent Customer
Discovery ChannelGoogle search, peer recommendations, webinarsllms.txt, OpenAPI registries, MCP marketplaces
Evaluation Time2 to 6 weeks (demos, committee review)< 500 milliseconds (schema & latency benchmark)
Billing ModelAnnual upfront invoiced seat licensesPay-as-you-go per API call (HTTP 402 / MPP)
Contract ExecutionManual DocuSign click or physical inkSingle REST dispatch with SHA-256 tamper seal
Tolerance for GUI GatesExpected and customaryFatal blocker (Agent aborts task)

If your checkout flow requires clicking a reCAPTCHA, confirming an SMS token on a physical smartphone, or booking a 30-minute discovery call with an account executive, you are completely invisible to the emerging machine economy. Building for software buyers means stripping away human ceremony and offering clean, deterministic primitives.

The 4-Step Technical Protocol for Machine-Ready Contract Fulfillment

To make your software purchasable by autonomous agents without human intervention, architecture teams are converging on a standardized four-phase exchange loop:

1. Machine Discovery & Schema Handshake

The client agent requests your domain's /llms.txt and Model Context Protocol (MCP) server manifest. Instead of scraping human HTML landing pages, the agent evaluates parameter schemas, rate limits, and authentication formats in sub-second tokenized benchmarks.

2. Ephemeral Pricing & Contract Formulation

Rather than locking the agent into static multi-tier annual packages, your API emits a real-time markdown agreement stipulating exact compute usage, uptime Service Level Agreements (SLAs), and per-call micro-billing boundaries.

3. Cryptographic Tamper-Sealed Execution

The agent invokes Signbee's single REST endpoint (or MCP tool). Signbee renders the Markdown into a tamper-evident PDF, computes the document's immutable SHA-256 cryptographic digest, captures cryptographic signatures, and generates an audit trail compliant with ESIGN and eIDAS.

4. Autonomous Ledger Settlement

Upon receiving Signbee's signed webhook verification, the vendor system unlocks the provisioned API gateway credentials and binds the transaction to the agent's payment envelope, completing the procurement cycle in under 3 seconds.

Frequently Asked Questions

Why will future B2B customers be AI agents?

Companies are deploying autonomous AI agents to manage procurement, software subscriptions, and service sourcing. These agents analyze needs, negotiate pricing, and execute contracts using API primitives. As a result, businesses must design API-first checkout and e-signing endpoints to accommodate agent customers.

How do AI agents sign contracts programmatically?

AI agents connect to developer-first e-signature APIs. When an agent decides to procure a service, it generates a contract via the API, signs it digitally, and triggers the payment layer. The API manages the transaction, delivering a legally binding, SHA-256 certified agreement.

How should SaaS companies optimize for AI agent customers?

SaaS companies must provide developer-friendly APIs, clear llms.txt documentation, and automated signing primitives. Removing manual forms, PDFs, and human-in-the-loop approvals allows autonomous agents to evaluate, purchase, sign, and integrate software products instantly, unlocking new automated revenue streams.

Related resources

Signbee is live — free tier, no credit card.