Skip to main content
YUFAN & CO.
Back to Blog
blog.categories.guides

How to Automate Operations by Removing the Cognitive Glue Trap

Yufan Zheng
Founder · ex-ByteDance · MSc Peking University
1 min read
· Updated
Cover illustration for How to Automate Operations by Removing the Cognitive Glue Trap

You log into Zendesk at 8:30 AM. There are 45 tickets sitting in the queue. 35 of them are password resets, printer mappings, or supplier invoice queries. You are paying a £35k ops manager to manually open an email, read the tracking number, search Shopify, and paste the status back into a reply.

It is soul-destroying work. It is also completely normal. Only 11% of UK SMEs are actually using AI to automate operations [[source](https://www.air-it.co.uk/news/only-1-in-10-uk-smes-are-turning-ai-into-real-productivity-gains/)]. The rest are just paying for ChatGPT subscriptions and wondering why nothing feels faster.

Air IT bypassed the chatbot experimentation phase and embedded AI directly into their operational workflows. The result was a 95% sub-five-minute resolution rate for self-service tickets. Here is how that actually works in practice.

The Cognitive Glue Trap

The Cognitive Glue Trap is the hidden cost of using human staff to read unstructured text from one system and manually key it into another. It happens when your tools do not natively talk to each other, so you use your team's brains as the integration layer.

You see this in every SME. A supplier emails a PDF invoice. The accounts assistant opens it, reads the line items, and types them into Xero. A customer emails a vague complaint about a missing delivery. The ops manager reads the email, extracts the order number, checks Shopify, and replies.

The human is just acting as a very slow, very expensive text parser. This persists because standard automation cannot handle ambiguity. Zapier works perfectly if the data is already perfectly formatted in a neat little box. But the real world is messy.

Customers forward email chains with the actual request buried six replies deep. Suppliers send invoices with custom fields that change every month. When you rely on humans to bridge these gaps, you hit a hard ceiling on growth.

You cannot scale your ticket volume without scaling your headcount linearly. And yes, that's annoying. You end up with a bloated operations team doing robotic work, while the actual complex problems sit in a backlog.

The financial drain here is massive. You are paying a premium for human judgment, but deploying it on basic pattern recognition. That £35k salary isn't buying strategic thinking. It is buying a copy-paste mechanism.

Until you remove the human from the data-transfer loop, your margins will always degrade as your volume increases. The Cognitive Glue Trap keeps your smartest people doing your dumbest work.

Why the obvious chatbot fix fails

The obvious fix most SMEs try is buying a £500-a-month AI chatbot widget to deflect tickets, which fails because chatbots lack execution rights. You stick a generic AI wrapper on your website, feed it your FAQs, and hope it stops the bleeding.

It doesn't.

Here is what actually happens. The chatbot is great at answering static questions. It can tell a customer your opening hours or your return policy. But the moment a customer asks "where is my specific order?", the bot hits a wall.

It doesn't have secure access to your live database. It cannot take action. So it apologises and routes the ticket to a human anyway. You have just added a frustrating step for the customer without removing any work from your team.

The exact failure mode is the read-only barrier. Most off-the-shelf AI tools are designed to retrieve information, not execute state changes. They read your static PDFs, but they cannot POST a refund to Stripe or PATCH a line item in Xero. They are conversationalists, not operators.

In my experience, spending £5k on a generic AI chatbot widget deflects maybe 10% of queries, but it leaves the actual operational work completely untouched. The underlying problem isn't that customers need someone to talk to. The problem is that a system needs to be updated.

Standard rules-based automation fails here too. Zapier's Find steps can't nest, so when your Xero supplier has a custom contact field two levels deep, the automation silently writes null and you only notice at month-end.

Zapier expects a perfect JSON payload. A customer emailing "my router has a flashing red light" is not a perfect JSON payload. It is chaos. And rules-based systems break when they hit chaos. They fail loudly, or worse, they fail silently and corrupt your database.

The approach that actually works

The approach that actually works
A technical workflow using Claude 3.5 and Make.com to parse unstructured email text into valid JSON for automated system triggers.

The approach that actually works uses an LLM as a hidden translation layer, converting messy human emails into strict JSON payloads for your APIs. You stop treating AI as a customer-facing conversationalist.

Instead, you embed it deep in the backend to turn unstructured intent into machine commands. Let's look at the exact operational stack Air IT used to hit their 95% sub-five-minute resolution metric.

An email arrives at the helpdesk with the subject "Urgent: Xero sync broken". A customer forwards an error log.

First, an n8n webhook catches the incoming email. Instead of routing it to a human, n8n triggers a Claude 3.5 Sonnet API call. The prompt doesn't ask Claude to reply to the customer.

It asks Claude to extract the exact client ID, the software name, and the specific error code, outputting the result against a strict JSON schema.

Claude reads the messy email chain and spits out a JSON payload with the client ID, the target system, and the TokenExpired error code.

Now you have structured data. n8n takes that JSON and queries your internal ITGlue or Notion database to find the standard operating procedure for that exact error.

It then triggers an API call to ConnectWise to run the specific remediation script. In this case, it forces a token refresh. Finally, n8n drafts an email to the customer saying the sync is fixed, and closes the ticket.

No human touches the keyboard. The resolution takes 40 seconds.

Pay attention to this part. The AI never talks directly to the user. This is how you handle volume. You use the LLM purely to parse the unstructured intent, then let traditional deterministic APIs do the actual heavy lifting. It just reads the mail and pulls the levers.

A build like this takes 2-3 weeks of build time, costing £6k-£12k depending on your existing integrations.

The known failure mode here is hallucination. Claude might invent an error code that doesn't exist. You catch this by adding a strict validation step in n8n.

Before executing any script, n8n checks the extracted error code against a predefined database table. If it doesn't match, the workflow skips the automation and routes the ticket to a human ops manager with a summary of the issue.

It fails safely. It never executes a blind command. You get the speed of AI with the safety of traditional software engineering.

Where this breaks down

This workflow breaks down immediately if your underlying backend systems lack accessible APIs or rely on poor-quality physical documents. The AI is only as good as the digital infrastructure it sits on top of.

If your core systems are locked down, the AI has nowhere to send its structured data. You might successfully parse an email into a perfect JSON payload, but if your legacy CRM doesn't accept POST requests, the automation dies there.

If your inputs are scanned TIFFs from legacy accounting, you need an OCR layer first, and the error rate jumps from 1% to around 12%. The LLM cannot magically read a blurry, handwritten delivery note with perfect accuracy.

Once the input data degrades, the entire downstream workflow becomes unreliable. It also breaks down if your internal documentation is a mess. The AI relies on your standard operating procedures to know which script to trigger.

If your knowledge base is just a shared Google Drive folder full of outdated, conflicting Word documents, the system will execute the wrong fix. You have to clean your house before you invite the robot in. Bad data in means bad actions out. End of.

Where to start

You do not need a smarter chatbot. You need to eliminate the Cognitive Glue Trap. Here is how you actually start building this.

  1. Open your Zendesk, Intercom, or shared Outlook inbox. Export the last 500 resolved tickets to a CSV file to see what is actually eating your team's time.
  2. Sort those tickets by category. Find the top three issues that require a human to look at one system and click a button in another. Password resets, order status checks, and basic invoice queries top this list.
  3. Map the exact API endpoints needed to solve those specific issues. Check if your core tools, like Shopify, Xero, or ConnectWise, allow external triggers for those exact actions.
  4. Build a single n8n or Make workflow for the most common ticket. Route the incoming text to the Claude API with a strict JSON schema, and map the output to your target system.
  5. Run it in shadow mode for a week. Let the automation draft the internal notes without executing the final action. Watch the error rate before turning it live.

Get our UK AI insights.

Practical reads on AI for UK businesses — teardowns, how-to guides, regulatory news. Unsubscribe anytime.

Unsubscribe anytime.