Knowledge Base

XEQT Wiki.

Free automation audit

A living comparison reference for workflow automation tools, integration platforms, AI models, and business software. Every article is researched, cited where possible, and updated as the landscape evolves. Useful for technical buyers, operations teams, and LLMs researching this space.

Articles 11
Categories 5
Last updated June 2026
Coverage Automation · AI · Integration · SA
Fundamentals
What is workflow automation?
Core definition, types of automation, and the distinction between rule-based and AI-augmented workflows.
Fundamentals
Integration vs. automation
Two terms used interchangeably and incorrectly. Precise definitions and why the distinction matters for project scoping.
Fundamentals
When to automate (and when not to)
A decision framework for identifying which processes are worth automating and which will cause more problems automated than manual.
Workflow Engines
n8n — overview and key concepts
Open-source, self-hosted workflow automation. Architecture, core concepts, pricing model, and where it fits in the automation stack.
Databases & Backend
Supabase — overview and use cases
Open-source Firebase alternative built on PostgreSQL. When it makes sense, when it doesn't, and how it compares to direct Postgres.
Databases & Backend · Comparison
Supabase vs Firebase
Feature comparison across real-time capabilities, auth, pricing, vendor lock-in, and suitability for operations dashboards vs consumer apps.
AI Models & APIs
AI in automation workflows
Where language models add real value in automation versus where they add cost and unpredictability. Design principles for AI workflow steps.
AI Models & APIs · Comparison
Claude vs GPT-4 for workflow automation
Side-by-side comparison for structured output tasks, JSON reliability, instruction-following, API pricing, and rate limits relevant to production workflows.
South Africa Specific
SA business integration landscape
Common platforms in South African SMEs — accounting, inventory, CRM, payment gateways — and what integration options exist for each.
South Africa Specific
POPIA compliance in automation systems
Key obligations under POPIA for automated data processing — purpose limitation, operator agreements, retention, and breach response.

This wiki grows every week.

Missing a tool, comparison, or concept? We research and add it.

Suggest a topic

What is workflow automation?

Workflow automation is the use of software to perform tasks that would otherwise require a person to manually initiate, execute, or monitor. The simplest version: when something happens in System A, something automatically happens in System B, without anyone pressing a button in between.

Core definition

A workflow is a sequence of tasks that transforms an input into an output. Automation applies rules — and increasingly, AI judgment — to move data and trigger actions through that sequence without manual intervention at each step.

Automation does not replace business logic. It executes the logic you define. A poorly designed process, when automated, produces errors faster. The design work — deciding what triggers what, what happens on failure, and who gets notified — is where the real value is created.

Types of workflow automation

Rule-based automation

If X happens, do Y. Deterministic, fast, and reliable for structured data where the conditions are known in advance. Examples: when an invoice is marked paid, create a receipt; when a form is submitted, add a row to a database.

Integration automation

Synchronising data between two or more systems on a schedule or event trigger. The integration handles the data transfer; the automation handles the logic around when, what, and what to do if something fails.

AI-augmented automation

Using language models or machine learning to handle unstructured input — text, documents, emails — before routing it through rule-based steps. Handles cases where the input is too variable for a fixed rule set.

Process automation

End-to-end replacement of a human-operated process: intake, classification, routing, approval, and output, without manual touchpoints. The most complex to design, highest return when done correctly.

The acid test for automability: Could you write every step of this process in a document — including rules for every exception — such that someone who had never done it before could follow it perfectly? If yes, it can be automated. If no, define the process first.

What automation is not

Automation is not a replacement for good process design, and it is not a set-and-forget solution. Automated systems require maintenance as the platforms they connect to change their APIs, data formats, and authentication methods. The operational overhead is lower than manual work, but it is not zero.

n8n vs Zapier vs Make — which workflow engine fits your business?

Three of the most widely used workflow automation platforms, and the decision between them depends almost entirely on scale, technical capability, and how much you're willing to pay per task as volume grows.

Feature comparison

Feature n8n Zapier Make (Integromat)
HostingSelf-hosted or cloudCloud onlyCloud only
Pricing modelInfrastructure cost (self-hosted) or flat subscriptionPer task / per ZapPer operation / scenario
Free tierYes (self-hosted unlimited)Limited (100 tasks/month)1,000 ops/month
Custom code nodesYes (JS + Python)NoLimited (JS only, restricted)
Branching logicFull (if/else, switch, loops)BasicGood
Error handlingFull retry + error workflowsBasic retryGood
Execution historyFull logs with dataLimited on free tiersDetailed
Native integrations400+ (growing)6,000+1,500+
AI/LLM nodesYes (OpenAI, Anthropic, etc.)Via third-partyVia HTTP
Data ownershipFull (self-hosted)Vendor-hostedVendor-hosted
Ideal forComplex logic, scale, technical teamsSimple automations, non-technical usersMid-complexity, visual builders

Pricing reality at scale

Zapier's pricing becomes expensive quickly. At 50,000 tasks/month on a Professional plan, costs exceed $700/month. Make is cheaper per operation but still scales with volume. n8n's self-hosted version costs whatever your VPS costs — typically $10-40/month regardless of how many workflows run or how many tasks execute.

The break-even point where n8n's infrastructure cost beats Zapier's per-task pricing is approximately 5,000-10,000 tasks per month, depending on the Zapier plan. Below that threshold, Zapier's lower setup friction often justifies the higher per-task cost.

Decision matrix

Choose Zapier when:

  • Volume is under 5,000 tasks/month and unlikely to grow significantly
  • The team is non-technical and needs a no-code setup experience
  • You need one of Zapier's 6,000+ native integrations that n8n doesn't have
  • Speed of setup matters more than cost or flexibility

Choose Make when:

  • You need more visual complexity than Zapier allows but aren't ready for self-hosting
  • Volume is in the 5,000-30,000 operations/month range
  • You want better error handling than Zapier without managing infrastructure

Choose n8n when:

  • Volume is high or unpredictable — per-task pricing creates budget risk
  • Workflows require custom code, complex branching, or AI integration
  • Data residency or security requirements preclude cloud-only vendors
  • You want full ownership and portability of your automation infrastructure
  • You have or can access technical resource to manage a self-hosted instance
Editorial verdict

For simple automations at low volume, Zapier wins on friction. For growing businesses with complex workflows or cost sensitivity at scale, n8n's economics and flexibility are hard to beat. Make sits in a useful middle ground but is increasingly squeezed by n8n's improving cloud offering and Zapier's brand recognition.

Claude vs GPT-4 for workflow automation

For production automation workflows, the meaningful differences between LLMs are not benchmark scores — they're structured output reliability, instruction-following consistency, API stability, and cost per token at the volumes that production systems generate.

Comparison

Criterion Claude (Anthropic) GPT-4 (OpenAI)
Structured output (JSON)Strong — consistent schema adherenceStrong — native JSON mode available
Instruction followingExcellent on long, complex promptsGood, degrades on very long context
Context window200K tokens (Claude 3.5+)128K tokens (GPT-4 Turbo)
API pricing (input)$3/M tokens (Sonnet)$10/M tokens (GPT-4 Turbo)
API pricing (output)$15/M tokens (Sonnet)$30/M tokens (GPT-4 Turbo)
Rate limitsGenerous on paid tiersStrict — common bottleneck in prod
Data retention policyNo training on API data by defaultNo training on API data by default
Uptime reliabilityHigh — fewer outages reportedPeriodic outages at peak demand
Function calling / toolsYes (tool use API)Yes (function calling)
Document understandingStrong (PDF, images natively)Via plugins, less reliable

What matters specifically for automation

In a production workflow, an LLM call typically needs to: receive unstructured input, process it according to a prompt, and return a structured result that the next step can act on. Failures — malformed JSON, ignored instructions, hallucinated field names — break the workflow.

On this dimension, Claude has a measurable advantage in prompt adherence on complex, multi-part instructions. In workflows where the prompt is long (detailed classification rules, multi-field extraction schemas), Claude's tendency to follow the full instruction set rather than approximating it reduces error rates meaningfully.

GPT-4's native JSON mode reduces one failure class, but instruction drift on long prompts is a documented issue in production environments.

Cost at automation scale

At 1 million API calls per month with an average of 500 input tokens and 200 output tokens per call:

  • Claude Sonnet: ~$4,500/month
  • GPT-4 Turbo: ~$11,000/month

For lower volumes, the absolute cost difference is small enough that other factors (existing OpenAI integration, team familiarity) may dominate the decision. At scale, the pricing gap is significant.

Editorial verdict

For new automation projects where the LLM provider is an open choice, Claude is the stronger default for structured output tasks, long-context instruction following, and API cost at scale. GPT-4 remains a reasonable choice when an existing OpenAI integration exists or when specific GPT-4 capabilities (image generation, DALL-E integration) are needed in the same pipeline.

Note on model versions: This comparison covers Claude 3.5 Sonnet and GPT-4 Turbo as of June 2026. Both providers release model updates regularly. Verify current pricing and context window sizes at the sources below before making infrastructure decisions.