{"id":30103,"date":"2026-08-20T13:38:15","date_gmt":"2026-08-20T11:38:15","guid":{"rendered":"https:\/\/spiritinprojects.com\/?p=30103"},"modified":"2026-08-31T17:56:49","modified_gmt":"2026-08-31T15:56:49","slug":"agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge","status":"publish","type":"post","link":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/","title":{"rendered":"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">A company wants to introduce a customer service agent. The AI has been selected, the prompt is written, and initial tests with demo data look promising. Then comes the sobering reality: The agent cannot access the ticketing system because there\u2019s no suitable API. The required customer data is scattered across systems that don\u2019t communicate with each other, and some of the most up-to-date information exists only in Excel files on employees\u2019 desktops. GDPR compliance for automated data processing is unresolved. And no one has defined what the agent is allowed to do when a customer wants to cancel their contract\u2014or what it must <strong>never<\/strong> do.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The AI is ready to go. The organization is not.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This scenario is not an isolated case. In Part 1 of this series, we explored <em>what<\/em> agentic AI is and <em>why<\/em> it works technically: tools, planning, and memory\u2014the three pillars that transform LLMs from chatbots into agents. But these three pillars require a foundation. And that foundation is missing in many companies.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is Agent-Readiness?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agent-Readiness describes the degree to which a company is technically and organizationally prepared to enable AI agents to work productively.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The analogy is clear: You wouldn\u2019t onboard a new employee without providing them with a laptop, system access, a job description, and a point of contact. With AI agents, most companies do exactly that\u2014they assume the AI\u2019s capabilities and overlook the operational conditions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The six dimensions of Agent-Readiness:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1. Tool Infrastructure \u2192 Can the agent act at all?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">2. Data Accessibility \u2192 Can the agent access the right data?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">3. Access Control \u2192 Is the agent permitted to do what it\u2019s supposed to do?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">4. Observability \u2192 Do we know what the agent is doing?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">5. Accountability \u2192 Who is responsible if something goes wrong?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">6. Team &amp; Processes \u2192 Who builds, maintains, and improves the agent?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">None of these dimensions are optional. Each can become a bottleneck that renders a theoretically powerful agent practically useless.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Dimension 1: Tool Infrastructure \u2013 Can the Agent Act at All?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agents act through <strong>tools (function calling)<\/strong>. Without tools, an agent is just a chatbot. But tools don\u2019t exist by default\u2014they must be built, documented, and deployed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>APIs as the Lifeline<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Agents interact with systems via APIs. This isn\u2019t new\u2014but the <strong>quality of the API landscape<\/strong> determines whether an agent can function or not.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Agent-Ready<\/strong><\/th><th><strong>Not Agent-Ready<\/strong><\/th><\/tr><\/thead><tbody><tr><td>RESTful APIs with clear documentation<\/td><td>No APIs, only manual interfaces<\/td><\/tr><tr><td>Consistent authentication<\/td><td>Different authentication methods per system<\/td><\/tr><tr><td>Versioned APIs with backward compatibility<\/td><td>Undocumented changes, breaking changes<\/td><\/tr><tr><td>Structured error messages<\/td><td>Cryptic errors or silent failures<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Question for companies: <em>How many internal systems have a machine-readable API?<\/em><\/strong><br>If the answer is \u201chalf\u201d or \u201cless,\u201d the agent can\u2019t complete half the tasks\u2014and will fail entirely when tasks require multiple systems to interact.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tool Descriptions: The Human-Machine Interface<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The AI selects tools based on <strong>natural language descriptions<\/strong>. Precise descriptions are critical\u2014vague ones lead to incorrect tool calls or tools being ignored altogether. Parameters must be clearly defined: which values are expected, which are mandatory, and what formats are valid. Error cases must also be described so the LLM knows how to respond when a call fails.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Example:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u274c <em>Poor tool description:<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Name: search_customer<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Description: Searches for customers<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Parameter: query (string)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u2705 <em>Good tool description:<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Name: search_customer<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Description: Searches for a customer by name, email, or customer number.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Returns customer data including contract status and last interaction.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Use this when you need specific customer details.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Parameters:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; search_term (string, required): Name, email, or 8-digit customer number<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; field_type (string, optional): &#8220;name&#8221;, &#8220;email&#8221;, or &#8220;customer_number&#8221; \u2013 improves search accuracy<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Errors:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; &#8220;no_match&#8221;: No customer found. Ask the user for more details.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211; &#8220;multiple_matches&#8221;: Multiple customers match. List the results and ask for clarification.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The difference isn\u2019t cosmetic\u2014it\u2019s functional. With the first description, the AI might pass incorrect parameters, fail to handle errors, and guess when faced with ambiguity. With the second, it operates precisely, proactively, and resiliently.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Tool design for agents<\/strong> is a new craft: a blend of API design and UX design\u2014except the user is an AI.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Dimension 2: Data Accessibility \u2013 Can the Agent Access the Right Data?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The smartest agent is useless if the data it needs is trapped in silos it can\u2019t reach.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Common Data Barriers<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Barrier<\/strong><\/th><th><strong>Impact on the Agent<\/strong><\/th><\/tr><\/thead><tbody><tr><td>Data stored in Excel files on network drives<\/td><td>Agent can\u2019t access it\u2014no API available<\/td><\/tr><tr><td>Customer data spread across three systems<\/td><td>Agent can\u2019t provide a unified answer<\/td><\/tr><tr><td>Documents as scanned PDFs<\/td><td>Agent can\u2019t read the text directly<\/td><\/tr><tr><td>Legacy systems without APIs<\/td><td>Agent can only access them indirectly<\/td><\/tr><tr><td>Poor data quality (duplicates, inconsistencies)<\/td><td>Agent works with incorrect data \u2192 unreliable results<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What Agent-Readiness means here:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Data must be machine-readable and accessible.<\/strong> This sounds obvious, but in many companies, it\u2019s the biggest bottleneck.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>RAG (Retrieval-Augmented Generation)<\/strong> can bridge the gap for unstructured data (documents, manuals, wikis)\u2014but only if: A functional vector database exists, Documents are current and well-structured, Metadata is available.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Data quality is agent quality.<\/strong> An agent working with outdated or contradictory data will produce outdated or contradictory results. Data maintenance isn\u2019t made obsolete by agents\u2014it becomes <strong>more important<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>If a human takes 10 minutes to find a piece of information, how long does the agent take?<\/strong> If the answer is \u201clonger\u201d or \u201cnever,\u201d the problem isn\u2019t the agent.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Dimension 3: Access Control \u2013 Is the Agent Permitted to Do What It\u2019s Supposed to Do?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agents need access\u2014but <strong>not to everything<\/strong>, and not with admin-level permissions. The principle of <strong>least privilege<\/strong> applies especially to them.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Permission Models for Agents<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Right Type<\/strong><\/th><th><strong>Wrong<\/strong><\/th><th><strong>Right<\/strong><\/th><\/tr><\/thead><tbody><tr><td>Data access<\/td><td>Agent has access to all customer data<\/td><td>Agent sees only data relevant to the task<\/td><\/tr><tr><td>Actions<\/td><td>Agent can send emails to anyone<\/td><td>Agent uses only predefined distribution lists<\/td><\/tr><tr><td>System access<\/td><td>Agent has admin rights in the CRM<\/td><td>Agent has a dedicated service account with restricted permissions<\/td><\/tr><tr><td>External APIs<\/td><td>Agent can call any external API<\/td><td>Agent uses only approved, vetted APIs<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Service Accounts for Agents<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Agents should have <strong>their own identities<\/strong>\u2014not those of human employees. This enables:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Auditing:<\/strong> Every action is traceable to the agent.<\/li>\n\n\n\n<li><strong>Permission scoping:<\/strong> The agent gets only the rights it needs for its task.<\/li>\n\n\n\n<li><strong>Deactivation:<\/strong> The agent can be shut down without affecting human users.<\/li>\n\n\n\n<li><strong>GDPR clarity:<\/strong> It\u2019s obvious that a machine is accessing data.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Human-in-the-Loop as a Business Requirement<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Not every action should be autonomous. The decision about which actions are <strong>autonomous<\/strong> and which require <strong>human approval<\/strong> is a <strong>business requirement<\/strong>\u2014not a technical one.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Action<\/strong><\/th><th><strong>Autonomous?<\/strong><\/th><th><strong>Reasoning<\/strong><\/th><\/tr><\/thead><tbody><tr><td>Retrieve customer data<\/td><td>\u2705 Yes<\/td><td>Read-only access, low risk<\/td><\/tr><tr><td>Send standard email<\/td><td>\u2705 Yes<\/td><td>Predefined templates, vetted<\/td><\/tr><tr><td>Process customer refund<\/td><td>\u274c No<\/td><td>Financial impact<\/td><\/tr><tr><td>Change contract terms<\/td><td>\u274c No<\/td><td>Legal relevance<\/td><\/tr><tr><td>Escalate incident to support<\/td><td>\u2705 Yes<\/td><td>Time-critical, clear process<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This classification can\u2019t be made by a tech team alone. It requires input from the business to define: Where is the risk acceptable? Where do we need human oversight? What happens if the agent operates in a gray area?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Dimension 4: Observability \u2013 Do We Know What the Agent Is Doing?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">An agent may execute hundreds or even thousands of actions per day. Without traceability, this becomes a black-<strong>box operation<\/strong>\u2014and that\u2019s unacceptable.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Three Levels of Traceability<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Level 1: Logging \u2013 What happened?<\/strong><br>Every tool call is logged: which tool, what parameters, what result. Every reasoning step is stored: what did the agent consider before acting? Include timestamps, duration, and token usage per step.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Level 2: Monitoring \u2013 Is everything running normally?<\/strong><br>Success rates of tool calls, average task duration, error rates by tool and task type, cost per task, escalation rate (how often human intervention is needed). Signal: If a tool suddenly fails more often, it\u2019s a red flag.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Level 3: Auditing \u2013 Why did something happen?<\/strong><br>Complete decision chains for every task. Traceability: Which input led to which action? Comparison: Did the agent solve the task? Does the result meet expectations?<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What Good Agent Logging Looks Like<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The difference between:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">\u201cThe agent sent an email.\u201d<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">And:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">\u201cOn May 15, 2026, at 14:32, the agent sent an email to <strong><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"mailto:kunde@example.com\">kunde@example.com<\/a><\/strong> with the subject \u2018Your inquiry about order #4821\u2019\u2014because in Step 3 of the ReAct cycle, the <code>load_order<\/code> tool returned a status of \u2018in progress,\u2019 and the agent decided the customer needed to be notified.\u201d<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">This level of detail is what makes auditing meaningful. Without it, the agent remains a black box\u2014and black boxes have no place in production systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Dimension 5: Accountability \u2013 Who Is Responsible If Something Goes Wrong?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agents make decisions and take actions. When something goes wrong, who is accountable? The answer is clearer than many think\u2014and more uncomfortable than many hope.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Three-Layer Model<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Layer 1: The Model Provider<\/strong> (OpenAI, Anthropic, Google) is responsible for the quality and safety of the base model. However, model providers don\u2019t know your company\u2019s context. They don\u2019t guarantee correct behavior in every application.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Layer 2: The Platform Team<\/strong> is responsible for tool design, guardrails, permissions, and monitoring. This is the bridge between what the model can do and what the agent is allowed to do in your company\u2019s context.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Layer 3: The Business Domain<\/strong> is responsible for defining the task, approving actions, and validating results. The model delivers; the business decides.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Uncomfortable Truth<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">An agent is <strong>not an autonomous actor<\/strong>. It\u2019s a tool built, configured, and monitored by humans. <strong>Accountability always lies with the people who deploy it\u2014not the AI.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Regulatory clarity confirms this:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <strong>EU AI Act<\/strong> defines responsibilities for AI system deployment. The agent has no legal personality\u2014the liability remains with the company. <strong>Companies that don\u2019t document a clear strategy for agent deployment today will face compliance headaches tomorrow.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Dimension 6: Team &amp; Processes \u2013 Who Builds, Maintains, and Improves the Agent?<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agents aren\u2019t a one-time development project. They require <strong>continuous care, improvement, and adaptation<\/strong>. Most companies drastically underestimate this effort.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Three Roles Every Agent Project Needs<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Role<\/strong><\/th><th><strong>Responsibilities<\/strong><\/th><th><strong>Typical Profile<\/strong><\/th><\/tr><\/thead><tbody><tr><td>Agent Developer<\/td><td>Builds the agent, writes prompts, integrates tools<\/td><td>Software engineer with LLM experience<\/td><\/tr><tr><td>Agent Operator<\/td><td>Monitors operations, analyzes logs, intervenes when errors occur<\/td><td>IT operations with AI understanding<\/td><\/tr><tr><td>Domain Expert<\/td><td>Defines tasks, evaluates results, provides domain knowledge<\/td><td>Business domain expert familiar with the process<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Most common mistake:<\/strong> Developers build an agent without deep understanding of the business process. The result works technically but fails in practice. Collaboration between developers and domain experts is critical\u2014and it takes time that\u2019s often missing from project plans.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Processes That Must Be Established<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Agent Lifecycle Management:<\/strong> From definition to development, testing, staging, deployment, and monitoring\u2014agents need structured processes like any other software product.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Prompt Review:<\/strong> Prompts are code. They must be versioned, tested, and reviewed. A changed prompt can radically alter an agent\u2019s behavior\u2014for better or worse.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Tool Review:<\/strong> Every new tool changes the agent\u2019s capabilities. New tools must be vetted: What could go wrong? What guardrails are needed? How does the agent respond to unexpected behavior?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Regular Evaluation:<\/strong> Agent performance evolves due to model updates, changing data, or new requirements. Regular testing with real-world tasks is not optional.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Agent-Readiness Check: A Pragmatic Self-Assessment<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th><strong>Dimension<\/strong><\/th><th><strong>\u2705 Agent-Ready<\/strong><\/th><th><strong>\u26a0\ufe0f On the Way<\/strong><\/th><th><strong>\u274c Not Ready<\/strong><\/th><\/tr><\/thead><tbody><tr><td><strong>Tool Infrastructure<\/strong><\/td><td>Most systems have well-documented APIs<\/td><td>Some APIs exist but are poorly documented<\/td><td>Most systems lack APIs entirely<\/td><\/tr><tr><td><strong>Data Accessibility<\/strong><\/td><td>Data is structured and machine-accessible<\/td><td>Some data is accessible; others are siloed<\/td><td>Data trapped in Excel, scanned PDFs, or legacy systems<\/td><\/tr><tr><td><strong>Access Control<\/strong><\/td><td>Service accounts with least privilege in place<\/td><td>Permission models exist but not for agents<\/td><td>Shared admin accounts<\/td><\/tr><tr><td><strong>Observability<\/strong><\/td><td>Full logging and monitoring of agent actions<\/td><td>Logging exists but lacks agent-specific analysis<\/td><td>No systematic logging<\/td><\/tr><tr><td><strong>Accountability<\/strong><\/td><td>Roles and responsibilities clearly defined<\/td><td>Points of contact exist but no formal processes<\/td><td>No explicit accountability<\/td><\/tr><tr><td><strong>Team &amp; Processes<\/strong><\/td><td>Dedicated team with structured processes<\/td><td>Some staff involved, but as a side task<\/td><td>No personnel assigned<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Rule of Thumb:<\/strong> If fewer than three dimensions are rated \u201c\u2705 Agent-Ready,\u201d focus first on infrastructure\u2014not the agent. An agent built on weak foundations will fail. But investments in infrastructure pay off beyond agents, benefiting the entire digital transformation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Outlook: Agent-Readiness Is a Maturity Level, Not a Destination<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Agent-Readiness isn\u2019t a one-time achievement. It\u2019s a <strong>gradual maturity<\/strong> that evolves over time.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The good news:<\/strong> Every improvement to infrastructure benefits not just the agent, but the <strong>entire company<\/strong>. Better APIs, accessible data, clearer permissions\u2014these are investments that pay off <strong>even without an agent<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Last Updated: May 2026<\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A company wants to introduce a customer service agent. The AI has been selected, the prompt is written, and initial tests with demo data look promising. Then comes the sobering reality: The agent cannot access the ticketing system because there\u2019s no suitable API. The required customer data is scattered across systems that don\u2019t communicate with&hellip; <a class=\"continue\" href=\"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/\">Continue Reading<span> Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":30006,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[70],"tags":[],"class_list":["post-30103","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge - Spirit in Projects<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge - Spirit in Projects\" \/>\n<meta property=\"og:description\" content=\"A company wants to introduce a customer service agent. The AI has been selected, the prompt is written, and initial tests with demo data look promising. Then comes the sobering reality: The agent cannot access the ticketing system because there\u2019s no suitable API. The required customer data is scattered across systems that don\u2019t communicate with&hellip; Continue Reading Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge\" \/>\n<meta property=\"og:url\" content=\"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/\" \/>\n<meta property=\"og:site_name\" content=\"Spirit in Projects\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-20T11:38:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-31T15:56:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2026\/08\/circuit-board-close-up-with-diff.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Karl Schott\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Karl Schott\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/\"},\"author\":{\"name\":\"Karl Schott\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#\\\/schema\\\/person\\\/8f5b0341a1f7b49c6a6b35a1ba52588a\"},\"headline\":\"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge\",\"datePublished\":\"2026-08-20T11:38:15+00:00\",\"dateModified\":\"2026-08-31T15:56:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/\"},\"wordCount\":2080,\"publisher\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/spiritinprojects.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/circuit-board-close-up-with-diff.jpg\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/\",\"url\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/\",\"name\":\"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge - Spirit in Projects\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/spiritinprojects.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/circuit-board-close-up-with-diff.jpg\",\"datePublished\":\"2026-08-20T11:38:15+00:00\",\"dateModified\":\"2026-08-31T15:56:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#primaryimage\",\"url\":\"https:\\\/\\\/spiritinprojects.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/circuit-board-close-up-with-diff.jpg\",\"contentUrl\":\"https:\\\/\\\/spiritinprojects.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/circuit-board-close-up-with-diff.jpg\",\"width\":800,\"height\":450},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/\",\"name\":\"Spirit in Projects\",\"description\":\"Enabling digital innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#organization\",\"name\":\"Spirit in Projects\",\"url\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/spiritinprojects.com\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/sip_web.jpg\",\"contentUrl\":\"https:\\\/\\\/spiritinprojects.com\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/sip_web.jpg\",\"width\":340,\"height\":80,\"caption\":\"Spirit in Projects\"},\"image\":{\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/spirit-in-projects\\\/about\\\/\",\"https:\\\/\\\/www.xing.com\\\/companies\\\/spiritinprojectsgmbh\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/spiritinprojects.com\\\/en\\\/#\\\/schema\\\/person\\\/8f5b0341a1f7b49c6a6b35a1ba52588a\",\"name\":\"Karl Schott\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/05313396b72ca3ca3990a0f1347c3bb31e16dfb746f21b39938959586a9f2021?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/05313396b72ca3ca3990a0f1347c3bb31e16dfb746f21b39938959586a9f2021?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/05313396b72ca3ca3990a0f1347c3bb31e16dfb746f21b39938959586a9f2021?s=96&d=mm&r=g\",\"caption\":\"Karl Schott\"},\"description\":\"Karl Schott ist CEO von Spirit in Projects. Er befasst sich intensiv mit Digitalisierung, neuen Technologien und digitaler Transformation.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge - Spirit in Projects","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/","og_locale":"en_US","og_type":"article","og_title":"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge - Spirit in Projects","og_description":"A company wants to introduce a customer service agent. The AI has been selected, the prompt is written, and initial tests with demo data look promising. Then comes the sobering reality: The agent cannot access the ticketing system because there\u2019s no suitable API. The required customer data is scattered across systems that don\u2019t communicate with&hellip; Continue Reading Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge","og_url":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/","og_site_name":"Spirit in Projects","article_published_time":"2026-08-20T11:38:15+00:00","article_modified_time":"2026-08-31T15:56:49+00:00","og_image":[{"width":800,"height":450,"url":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2026\/08\/circuit-board-close-up-with-diff.jpg","type":"image\/jpeg"}],"author":"Karl Schott","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Karl Schott","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#article","isPartOf":{"@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/"},"author":{"name":"Karl Schott","@id":"https:\/\/spiritinprojects.com\/en\/#\/schema\/person\/8f5b0341a1f7b49c6a6b35a1ba52588a"},"headline":"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge","datePublished":"2026-08-20T11:38:15+00:00","dateModified":"2026-08-31T15:56:49+00:00","mainEntityOfPage":{"@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/"},"wordCount":2080,"publisher":{"@id":"https:\/\/spiritinprojects.com\/en\/#organization"},"image":{"@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#primaryimage"},"thumbnailUrl":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2026\/08\/circuit-board-close-up-with-diff.jpg","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/","url":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/","name":"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge - Spirit in Projects","isPartOf":{"@id":"https:\/\/spiritinprojects.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#primaryimage"},"image":{"@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#primaryimage"},"thumbnailUrl":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2026\/08\/circuit-board-close-up-with-diff.jpg","datePublished":"2026-08-20T11:38:15+00:00","dateModified":"2026-08-31T15:56:49+00:00","breadcrumb":{"@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#primaryimage","url":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2026\/08\/circuit-board-close-up-with-diff.jpg","contentUrl":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2026\/08\/circuit-board-close-up-with-diff.jpg","width":800,"height":450},{"@type":"BreadcrumbList","@id":"https:\/\/spiritinprojects.com\/en\/agent-ready-why-ai-is-the-least-of-your-problems-and-infrastructure-is-the-biggest-challenge\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/spiritinprojects.com\/en\/"},{"@type":"ListItem","position":2,"name":"Agent-Ready: Why AI is the Least of Your Problems \u2013 and Infrastructure is the Biggest Challenge"}]},{"@type":"WebSite","@id":"https:\/\/spiritinprojects.com\/en\/#website","url":"https:\/\/spiritinprojects.com\/en\/","name":"Spirit in Projects","description":"Enabling digital innovation","publisher":{"@id":"https:\/\/spiritinprojects.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/spiritinprojects.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/spiritinprojects.com\/en\/#organization","name":"Spirit in Projects","url":"https:\/\/spiritinprojects.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/spiritinprojects.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2019\/05\/sip_web.jpg","contentUrl":"https:\/\/spiritinprojects.com\/wp-content\/uploads\/2019\/05\/sip_web.jpg","width":340,"height":80,"caption":"Spirit in Projects"},"image":{"@id":"https:\/\/spiritinprojects.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/spirit-in-projects\/about\/","https:\/\/www.xing.com\/companies\/spiritinprojectsgmbh"]},{"@type":"Person","@id":"https:\/\/spiritinprojects.com\/en\/#\/schema\/person\/8f5b0341a1f7b49c6a6b35a1ba52588a","name":"Karl Schott","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/05313396b72ca3ca3990a0f1347c3bb31e16dfb746f21b39938959586a9f2021?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/05313396b72ca3ca3990a0f1347c3bb31e16dfb746f21b39938959586a9f2021?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/05313396b72ca3ca3990a0f1347c3bb31e16dfb746f21b39938959586a9f2021?s=96&d=mm&r=g","caption":"Karl Schott"},"description":"Karl Schott ist CEO von Spirit in Projects. Er befasst sich intensiv mit Digitalisierung, neuen Technologien und digitaler Transformation."}]}},"_links":{"self":[{"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/posts\/30103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/comments?post=30103"}],"version-history":[{"count":7,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/posts\/30103\/revisions"}],"predecessor-version":[{"id":30140,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/posts\/30103\/revisions\/30140"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/media\/30006"}],"wp:attachment":[{"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/media?parent=30103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/categories?post=30103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/spiritinprojects.com\/en\/wp-json\/wp\/v2\/tags?post=30103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}