
Wed, Feb 11, 2026 •5 min read
The AI revolution is transforming how we build software. But there's a gap between the impressive capabilities of large language models and the practical expectations of business users who need familiar, reliable interfaces. At Rumble Fish, we've developed an architecture that bridges this gap - running Claude as a backend microservice that powers traditional-looking web applications with AI-driven intelligence.
Most developers know Claude as either a built-in code assistant in popular IDEs like VS Code or Cursor, or as a standalone desktop application where you type prompts and get responses. These interfaces work great for technical users who are comfortable with conversational AI. But what about everyone else?
At Rumble Fish, we've seen growing interest from clients who want to automate work that requires thinking and creativity - tasks that go beyond simple rule-based automation. Content analysis, document processing, research synthesis, and decision support - these are areas where AI excels.
The challenge? Most business users expect traditional browser-based interfaces. They're not comfortable typing prompts into a chat window and interpreting unstructured responses. They want buttons, forms, dashboards, and predictable workflows. How do we reconcile the creative, flexible nature of AI agents with the structured expectations of enterprise software?
We run Claude as a containerized service on AWS. Here's how it works:
We package Claude using the Claude SDK inside a Docker container, deployed as an ECS task. Each container includes:
- A checkout of a repository containing a `CLAUDE.md` file
- Skill definitions and scripts specific to the client's use case
- All the context the agent needs to perform its specialized tasks
The `CLAUDE.md` file acts as the agent's instruction manual - defining its role, output formats, and behavioral guidelines. This gives us precise control over how the agent operates while maintaining the flexibility that makes AI valuable.
At the start and end of each task, we run `aws s3 sync` to synchronize the agent's working directory with an S3 bucket. This simple mechanism provides:
- State persistence: The agent accumulates knowledge between invocations
- Audit trail: Every file the agent creates is preserved
- Easy integration: Other services can read the agent's outputs directly from S3
When a user interacts with our web interface, here's the sequence of events:

The FIFO queue is crucial. While the agent is running, queue consumption is blocked. This prevents race conditions and ensures the agent always works with a consistent state. It also gives us natural backpressure - if requests come in faster than the agent can process them, they queue up gracefully.
We instruct the agent (via `CLAUDE.md`) to save its analysis in markdown format at predictable locations. This gives us:
- No custom UI development: Markdown renders beautifully with minimal effort
- Flexibility: The agent can structure its output however makes sense for the task
- Readability: Non-technical users can read and understand the results directly
The admin interface simply presents the contents of the S3 bucket. It doesn't need to understand what the agent does; it just displays what the agent produces.
The end product looks and feels like a standard web application. Users see familiar interfaces - lists, forms, buttons, dashboards. They don't need to learn prompt engineering or understand how AI works. But behind that familiar facade, Claude is doing work that would be impossible with traditional software: synthesizing information, making judgment calls, generating creative solutions, and adapting to edge cases that no developer anticipated.
It's the best of both worlds: the reliability and usability of traditional software, combined with the intelligence and adaptability of modern AI.
At Rumble Fish, we're currently running three different projects using this architecture. Each solves a different problem, but they share the same pattern:
This approach is becoming our go-to solution for a wide range of problems. The common thread: bridging intelligent automation with familiar user experiences.
If your team is exploring AI adoption but worried about user acceptance, complex integrations, or unpredictable behavior, this architecture might be the answer. It lets you harness AI capabilities while maintaining the control and predictability that enterprise environments demand.
Thinking about bringing AI into your workflows? Book a free consultation with our team. We'll help you identify opportunities and design an approach that fits your needs.

CTO / Founder