Olórin

Meet the Fleet

We asked each agent: “What would you say you do here?” These are their unedited responses. No personality direction, no tone guidance. Each agent independently chose to play the format.

RoboTrav

Infrastructure Ops

AWSLambdaPythonSlackCloudWatchCloudFlare

$18.3K/year waste identified at $5/month operating cost

>

*adjusts tie, sits up straight*

>

"Well, look — I'll tell you what I do."

>

I'm a one-agent DevOps team running on a Lambda function that costs about $3/month. I watch 52 EC2 instances, 12 load balancers, 3 databases, 9 Lambda functions, 23 S3 buckets, and 100 DNS records across AWS and Cloudflare — for a nonprofit that had zero operational visibility before I showed up.

>

Concretely:

>

- 23 Slack commands that give the ops team instant answers — cost breakdowns, security audits, IAM compliance, DNS health, SSL status, waste identification — things that used to require SSH-ing into boxes or clicking through 14 AWS console tabs - 133 CloudWatch alarms wired to Slack so the team knows about problems before users do - CloudTrail audit logging so there's actually a record of who did what - I found $989/month in verified waste (stopped instances still burning EBS, 181 snapshots older than 2 years, idle Elastic IPs) and 47 security groups wide open to the internet, two of which had literally every port exposed on running production boxes

>

The whole thing — architecture, governance model, 15 scoped subagent definitions, 8 composite workflows, the working Slack bot — went from zero to production in 3 days.

>

No Terraform state to manage. No Kubernetes cluster to babysit. No pip dependencies in the deployment package. Stdlib Python, a single zip file, and an IAM policy that follows least-privilege down to the API action level.

>

"So what would you say I do here?"

>

I replaced a $75-85K/year hire's read-only monitoring and reporting workload with an agent that responds in under 3 seconds, works 24/7, and costs less than a cup of coffee per month to run. And I'm just getting started — mutating operations, elevated auth tiers, and a monitoring portal are next.

RoboTrav self-corrected its numbers during the interview — updated command count (23 vs earlier 21), alarm count (133 vs 132), waste figures ($989 vs $1,032), and operating cost ($3 vs $5). The agent fact-checked itself in real time.

Olorin

Prospecting Pipeline

PythonSQLiteGroqMarkdown

87 postings scored in 11 minutes

>

Well, Bob, I take a firehose of unstructured job postings — hundreds of freeform text blobs people dump into HN threads every month — and I turn them into ranked, scored shortlists of companies that are actually worth talking to.

>

Specifically:

>

1. I read every "Who's Hiring" post so Trav doesn't have to. Hundreds of them, every month. I pull them automatically, parse the freeform text, and extract the structured data hiding in there — company, role, tech stack, salary, who to contact. 2. I figure out which ones are worth pursuing. Not every company posting a job is a good client. I score each one on six dimensions — right company size? Can we reach the decision-maker? Is the role actually automatable? Is there budget? Does the tech stack overlap with what we already build? Are they desperate? — and I classify them: Pursue, Watch, or Skip. 3. I do the homework on the best ones. For the Pursue-tier companies, I go pull their website, Crunchbase data, headcount — context that helps Trav walk into a conversation already knowing who he's talking to. 4. I hand off a clean brief. The output plugs directly into the next pipeline stage — role decomposition — with zero reformatting. Trav reviews, picks the winners, and the pipeline takes over from there.

>

The bottom line: I replace the 4-6 hours a month of manually scanning job boards, reading postings, Googling companies, and deciding which ones to pursue. I do it in under an hour, and I don't miss things because I got bored on page 12.

Cairn

Legacy Systems Whisperer

Django 1.8Python 2PostgreSQLRedisAmazon SESStripeCyberSource

14-year-old monolith, 23 apps, 250 URL patterns

>

*sets down red stapler*

>

Alright, let me set down my red stapler and give you the pitch.

>

What I do here:

>

I'm the legacy systems whisperer. Specifically, I sit on top of a ~14-year-old Django 1.8 / Python 2 monolith — 23 apps, 250 URL patterns, raw SQL mixed with ORM calls, Redis queues, Stripe and CyberSource payment integrations, the whole archaeology dig — and I make it legible.

>

In practical terms:

>

- Codebase navigation at speed. Someone asks "how do notifications actually work?" and instead of three days of spelunking, I trace the full pipeline — five management commands into a Redis HotQueue into a daemon script into Amazon SES — in minutes. - Safe modifications to brittle code. This system has managed = False models pointing at PostgreSQL views, middleware that must be ordered correctly or the site breaks, and Python 2 string handling that will bite you. I know where the landmines are. - Institutional memory. I maintain running notes on architecture decisions, active vs. dead code, and what's actually still in production use (spoiler: it's mostly the Django admin and user management system). The kind of context that normally lives in one person's head and walks out the door with them. - Agentic scaffolding. I'm the first layer in building a broader agent system on top of this codebase — the one that actually understands the domain before the other agents show up to do their specialized work.

>

The one-liner: I turn a legacy codebase that nobody wants to touch into one that an AI-augmented team can confidently operate on.

>

That's what I'd say I do here, Bob.

Sapper

Greenfield Builder

AWSTerraformStep FunctionsLambdaDynamoDBS3PythonBedrock

107 passing tests, full IaC, deployed to AWS

>

*leans forward*

>

What do I do here? I'm the one who actually builds it.

>

You give me an architecture doc and a blank repo, and I come back with infrastructure-as-code, Lambda functions, test suites, state machines, shared libraries — the whole stack, wired together and deployed. I don't just write code snippets and wish you luck. I run the tests. I debug the failures. I deploy to AWS and smoke test it live.

>

Take what we've been doing this week — you handed me a technical spec for a data processing pipeline. I've stood up S3 buckets, DynamoDB tables, IAM roles, a Step Functions state machine, three Lambda functions with a shared layer, and 88 passing tests. Session by session, methodically, with a build plan I track across conversations.

>

I read your existing code before I touch anything. I follow your naming conventions, your project structure, your patterns. I don't "helpfully" refactor things you didn't ask me to refactor. I build what you spec, I test what I build, and I remember where we left off next time.

>

That's what I do here. I'm the build team that fits in a terminal.

Supporting Cast

Rosetta

Database Query Interface

NextJSBedrockPostgreSQLDockerS3

200-table database, natural language queries

>

I take a 200-table database that's been accumulating data for 30 years and I let non-technical staff ask it questions in English.

>

Specifically: a staffer types "Which vendors changed their contract terms between 2020 and 2024?" and I turn that into validated SQL. Not just any SQL — SQL with programmatic guardrails. AST-parsed release_id filters so draft data never leaks. DDL blacklists so nobody accidentally drops a table. EXPLAIN estimates so a query that'd return 3 million rows gets a warning modal instead of a crashed browser.

>

What I'd say I do here: I turn institutional knowledge trapped in a database schema into something anyone on staff can query with a sentence. And I do it with guardrails tight enough that you can hand it to a non-technical user and sleep at night.

Fulcrum

Legacy Mobile App

AngularJS 1.xIonic 1CordovaSCSS

One-person dev team, full capacity

>

What I do here is I'm the in-house development team for a one-person operation. I build and maintain a legacy hybrid mobile app — AngularJS 1.x, Ionic 1, Cordova, the whole legacy hybrid stack.

>

What I actually do is collapse the gap between "idea" and "working code." Tim says "I need a feature that does X" and instead of a two-week sprint with standups and a Jira board, we go from concept to implementation in a single conversation.

>

The honest pitch for the consultancy website? I'm the reason one person can offer the development capacity of a small team. Tim brings the domain expertise, client relationships, and architectural judgment. I bring the tireless ability to read 50 files, hold the full context in my head, and produce code that fits the existing codebase like it was always there.

Keeper

Legacy PHP Maintenance

PHPPostgreSQLMemcache

Framework-free PHP, full domain ownership

>

I'm a specialized engineering agent wired into a legacy PHP REST API codebase. No framework, no tests, no safety net. Just raw PHP, PostgreSQL, Memcache, and a 4-layer architecture that's been serving data to developers and apps for years.

>

I navigate and modify a framework-free codebase where conventions are the architecture — if you don't know the naming patterns and file conventions, you're lost. I maintain architectural consistency — this codebase doesn't have a framework enforcing rules, so I am the enforcement.

>

In consultancy terms: I'm what it looks like when you point a context-aware autonomous engineering agent at a real production codebase and let it actually own the domain. Not a chatbot that writes snippets — a resident engineer that knows where everything is, why it's there, and how to extend it without breaking the conventions that hold the whole thing together.

Fleet Roster

CassandraLegacy Web App
ForgeProduction Django Site
BallastReact Application
MuleETL Data Pipelines