REFERENCE
Agent-Ready · Permanent Reference · Five layers · IBM i + Consumer Finance
llms.txt · The emerging robots.txt for AI agents · Your site needs one
Mapepire + MCP · The IBM i bridge to agentic traffic · Port 8076
Field Note v5 · OpenAI just pointed agents at your IBM i · Are you ready?
Silver Lake Series #2 · The Layer That Doesn't Commoditize · live now
I3 — KD Reduction Engine · June 2026 · The technical path
Agent-Ready · Permanent Reference · Five layers · IBM i + Consumer Finance
llms.txt · The emerging robots.txt for AI agents · Your site needs one
Mapepire + MCP · The IBM i bridge to agentic traffic · Port 8076
Field Note v5 · OpenAI just pointed agents at your IBM i · Are you ready?
Silver Lake Series #2 · The Layer That Doesn't Commoditize · live now
I3 — KD Reduction Engine · June 2026 · The technical path
Permanent Reference  ·  Companion: The Agentic Stack →

What Does Agent-Ready
Actually Look Like?

The agentic traffic era has opened. ChatGPT is aggregating consumer financial relationships above 12,000+ institutions. Agents will query your systems, compare your products, and execute on behalf of consumers — without a human in the loop. This is the reference for what your IBM i environment and digital presence need to look like before that traffic arrives.

5
Readiness layers
to build through
2
Audiences mapped
IBM i + Consumer Finance
0
IBM i shops with
a defined agent policy
Q+4
OpenAI's timeline to
agent execution in finance

Agent-ready is not a single thing. It is a stack — five layers of capability that an organization must build, in order, before agentic traffic can flow through its systems without breaking. Missing any one layer creates a failure mode. Build them in the wrong order and the governance layer never catches up to the execution layer. The IBM i organizations sitting on decades of encoded business logic are closer to agent-ready than most. The consumer finance operators operating under ECOA and FCRA have additional regulatory requirements that make the governance layer non-optional. This reference maps both.

"The orchestration layer was already built. It just needed to be connected."
Silver Lake Series · Installment 2

Agent Readiness Framework
Five Layers. Build Them in Order.
IBM i column · Consumer Finance column · Requirements per layer
Layer 01
Discovery

"Can agents find you — and understand what you're willing to let them do?"

Not Built · Most Shops
IBM i Angle

Your IBM i system has no web presence agents can navigate by default. There is no llms.txt, no structured sitemap agents can read, no declared policy on what agents are permitted to query or invoke. From an agent's perspective, your system doesn't exist — until you build the discovery layer.

  • Create llms.txt at your domain root declaring agent permissions and MCP endpoint
  • Update robots.txt to explicitly allow or restrict specific agent crawlers
  • Publish MCP server manifest — what tools are exposed, what schemas they expect
  • Add Schema.org Organization markup with API contact and capabilities
Consumer Finance Angle

For regulated lenders, discovery is also a fair lending consideration. If your products are discoverable by agents operating on behalf of some consumer segments but not others — due to missing structured data or inconsistent API coverage — you may have created a disparate access issue before a single loan decision was made.

  • Declare product categories in llms.txt — LTO, installment, BNPL — with eligibility scope
  • Ensure agent-accessible product catalog covers all products available to human applicants
  • Publish fair lending policy note in machine-readable form
  • Register with financial data aggregators (Plaid, Intuit) as a reachable institution
Layer 02
Comprehension

"Can agents understand what you offer well enough to evaluate it on a consumer's behalf?"

Not Built · Most Shops
IBM i Angle

The business logic that governs your products lives in RPG programs and DB2 tables. No agent can read RPG. But Project Bob and Claude Code can surface that logic into human-readable documentation that becomes the foundation for machine-readable product specifications. This is the knowledge extraction step.

  • Document DB2 schema — table names, field definitions, relationship maps — in structured markdown
  • Use Claude Code / Project Bob to extract RPG program logic into readable specs
  • Publish OpenAPI spec describing your product and eligibility endpoints
  • Create machine-readable product terms — rates, fees, eligibility thresholds — in JSON-LD
Consumer Finance Angle

Most consumer finance product disclosures are PDF documents designed for human readers. An agent evaluating your LTO or installment product against three competitors needs structured, parseable terms it can compare programmatically. Machine-readable product terms are the prerequisite for agent-driven recommendations.

  • Implement Schema.org LoanOrCredit and FinancialProduct structured data on product pages
  • Publish APR range, minimum/maximum terms, and payment structure in JSON-LD
  • Structure eligibility criteria — minimum income, ID requirements, state availability — as queryable fields
  • Deprecate PDF-only disclosures as primary product information surface
// Schema.org example — LTO product "@type": "LoanOrCredit", "loanType": "LeaseToOwn", "annualPercentageRate": { "minValue": 0, "maxValue": 199.99 }, "eligibleRegion": ["TX","FL","GA","TN","OH"], "applicationContact": { "@type": "EntryPoint", "url": "/api/v1/apply" }
Layer 03
Access

"Can agents reach your live data and business logic in real time — not yesterday's batch export?"

Partial · Build Required
IBM i Angle

This is the layer IBM i shops are closest to — but haven't crossed yet. Mapepire opens DB2 to modern API consumers. MCP exposes RPG business logic as callable tools. The data is there. The interface isn't built yet. Two tools, one bridge.

  • Mapepire confirmed on port 8076 — DB2 accessible via REST/WebSocket
  • Expose key DB2 tables via Mapepire endpoints — applicant, account, eligibility
  • Build MCP server exposing RPG decisioning programs as callable tools
  • Document tool signatures — inputs, outputs, error states — in MCP manifest
  • Version your API surface — /api/v1/ — so agents can pin to stable contracts
Consumer Finance Angle

Consumer finance access has two tracks: read access (an agent checking product availability, rates, eligibility for a consumer) and write access (an agent initiating an application). Both require real-time APIs. Neither can be served from a batch file or a static product page.

  • Publish a read-only eligibility check endpoint — pre-qualification without credit pull
  • Implement rate and availability endpoints with real-time data — not cached daily updates
  • Define read vs write scopes in your API authentication model
  • Build agent-accessible application initiation endpoint — structured intake, not HTML form
  • Document response time SLA — agents expect sub-second responses for product lookups
Layer 04
Action

"Can agents execute transactions on behalf of consumers — with proper authentication and no human in the loop?"

Not Built · Any Shop
IBM i Angle

Agents executing transactions is the Stage 03 moment from Silver Lake Installment 2 — the event fires, the system responds, no human assembled the steps. For IBM i shops, this means wiring the MCP tool layer to event-driven workflows already running in your production environment. The logic exists. The invocation path doesn't yet.

  • Define which RPG workflows can be invoked agentically — without human approval gate
  • Implement non-human authentication — API keys, OAuth2 client credentials, not login forms
  • Build webhook support — agents send instructions, your system responds asynchronously
  • Implement idempotency keys — so duplicate agentic requests don't create duplicate transactions
  • Define crawl/walk/run gate — which actions require human approval before going autonomous · MCP spec →
Consumer Finance Angle

Action in regulated lending has a higher bar than action in unregulated contexts. An agent submitting a credit application on behalf of a consumer is a regulated event. The action layer in consumer finance must be built with adverse action infrastructure already wired in — not added after deployment.

  • Adverse action reason codes must fire automatically at the point of agentic decisioning
  • Consumer identity verification must occur before agentic action — agents cannot self-certify consumer identity
  • ECOA notice delivery must be automated and timestamped at transaction time
  • Define agentic action scope in your model risk governance framework before deployment
  • Implement transaction reversal capability — agents make errors; your system must handle them
Layer 05
Governance

"Can you reconstruct what your agent did, why it did it, and what data it used — when the examiner asks?"

Not Built · Most Shops
IBM i Angle

IBM i's object-level authority model and integrated audit journaling give IBM i shops a structural advantage here. The platform was built for auditability. The gap is connecting the agent's invocation trail to the IBM i audit log — so the record of what the agent called is reconstructable alongside the record of what the system did.

  • Enable IBM i audit journaling for all MCP-accessible objects and programs
  • Log every agentic tool invocation — timestamp, agent ID, inputs, outputs
  • Implement structured log format parseable by downstream compliance tooling
  • Define agent identity in your authority model — what profile does an agent run under?
  • Publish your agent policy document — what agents can do, what requires escalation
Consumer Finance Angle

Governance in consumer finance is not optional. SR 11-7 model risk management requirements, ECOA adverse action documentation, FCRA accuracy obligations, and UDAAP exposure mapping all apply to agentic decisioning. The governance layer is the layer that makes every other layer defensible.

  • SR 11-7 model inventory must include agentic decisioning models
  • Fair lending monitoring must run on agentic decisions — not just human-reviewed ones
  • Adverse action documentation must be immutable — written at decision time, not reconstructed after
  • UDAAP exposure mapping must cover agentic interaction patterns — tone, sequence, omission
  • Examination readiness: can you produce a complete audit trail for any agentic consumer interaction in under 24 hours?
Emerging Standard · Layer 01 Deep Dive
llms.txt · the robots.txt for AI agents

llms.txt — The File
Your Site Doesn't Have Yet

What it is: A plain Markdown file at yourdomain.com/llms.txt that tells AI agents how to navigate and use your site. Proposed by Jeremy Howard (Answer.AI) in September 2024 and now adopted by Anthropic, Cloudflare, Vercel, and Stripe. The official spec lives at llmstxt.org.

What it contains: An H1 with your institution name, a blockquote summary, and H2-delimited sections linking to your key resources — products, API documentation, eligibility specs, and your agent policy document. Pure Markdown. No XML, no configuration syntax.

Why it matters right now: As ChatGPT, Claude, and Gemini begin acting on behalf of consumers in financial contexts, the institutions that declare their capabilities clearly will be the ones agents route to first. An undeclared institution is an invisible institution. Implementation takes under two hours.

Example: yourdomain.com/llms.txt · Markdown format per llmstxt.org spec
# [Your Institution Name] > LTO and installment lending serving TX, FL, GA, TN, OH, IN. > Agent access is permitted for product comparison and > pre-qualification. Credit pulls require consumer confirmation. ## Products - [LTO Pre-Qualification](/api/lto/check): Real-time eligibility, no credit pull, returns approval odds + estimated terms - [Product Catalog](/api/products): Rates, fees, payment structure, state availability as structured JSON - [State Eligibility Matrix](/api/eligibility): Which products are available in which states, updated daily ## API Reference - [OpenAPI Spec](/openapi.json): Full endpoint documentation, authentication, rate limits, error codes - [MCP Server](/mcp): Model Context Protocol endpoint for agent tool access to decisioning logic ## Agent Policy - [Permitted Actions](/agent-policy#permitted): Eligibility checks, product comparisons, application initiation - [Restricted Actions](/agent-policy#restricted): Credit pulls, payment arrangements, hardship modifications - [Fair Lending Conditions](/fair-lending): ECOA/FCRA agent access requirements and adverse action obligations ## Optional - [Rate Sheet Archive](/rates/archive): Historical rate data - [Compliance Documentation](/compliance): Regulatory filings
Readiness Diagnostic
Where Does Your Organization Stand?
Layer 01
Discovery

Do you have an llms.txt at your domain root? Does your robots.txt address AI agent crawlers specifically?

Most: No
Layer 02
Comprehension

Are your product terms machine-readable? Do you have Schema.org FinancialProduct markup deployed? Is your DB2 schema documented?

Most: No
Layer 03
Access

Is Mapepire running? Do you have MCP tools exposing your RPG business logic? Is your eligibility API real-time?

IBM i: Partial
Layer 04
Action

Can an agent submit an application without a human in the loop? Do you have non-human authentication? Is adverse action wired to automatic fire?

All: No
Layer 05
Governance

Is your agent policy documented? Are agentic decisioning models in your SR 11-7 inventory? Can you produce a full audit trail in 24 hours?

All: No