- Aug 31
How to Hire Your First AI Employee: The Onboarding Nobody Sells You
- Mark Fulton
- AI Systems, AI Agents, Agent Ops
- 0 comments
An AI employee takes about ten minutes to hire and about three weeks to actually put to work. The sales pages only cover the ten minutes.
That is not a complaint about the vendors. Signing up really is that fast now, and the agents really are capable. But the pitch stops at the moment of purchase, and the part that decides whether the thing earns its keep starts the next morning, when it runs on its own for the first time and you are not in the room.
I run scheduled agent routines across roughly 14 launched products. One of them researched, wrote and published a blog post this morning while I was asleep. Getting to that point had almost nothing to do with picking a platform and almost everything to do with onboarding: writing the job down, deciding what the agent was allowed to touch, putting a gate in front of the actions I did not want it taking alone, and giving it somewhere to remember what it did last time.
Adoption is not the bottleneck any more. Testimony to the House Small Business Committee reported by Forbes put generative AI use among small firms at 58 percent last year, up from 40 percent in 2024 and 23 percent in 2023. Plenty of people have hired. Far fewer have onboarded. This is the onboarding, step by step, with the parts that broke on me left in.
What an AI employee actually is
The term gets used for three different things, and the difference matters more than the label.
A chatbot waits for you. You type, it answers, nothing happens until you type again. An automation runs fixed steps in a fixed order and breaks the moment reality changes shape. An AI employee owns a recurring job end to end. It decides how to do the job, does it, and leaves you a result.
The useful test is whether it moves when you are not there. If the thing only acts when you prompt it, it is a tool, and a good one. If it wakes up on a schedule, does a job, and hands you an outcome, it is an employee. Everything below is about the second kind, because the second kind is the only one that changes how much work you personally have to do.
What you need before you hire your first AI employee
Four things, and none of them are technical.
A job that repeats. Daily or weekly. One-off work is what you use a chat window for. Recurring work is what you hire for.
A definition of done you could check in under two minutes. Not "improve our marketing". Something closer to "a post is live at this address, it links to two of our existing pages, and a row was added to the log". If you cannot check it in two minutes, you will stop checking it, and an unchecked agent quietly stops being useful.
Somewhere for the output to land that is not your inbox. A folder, a queue, a spreadsheet, a repository. Output that arrives as email gets read once and lost.
A decision about what it may do without asking you. Make this decision on paper before the first run. It is the single most consequential thing on this list.
If you cannot write the definition of done, you are not ready to hire. You are ready to do the job manually twice more and take notes while you do it. Those notes are the job description.
How to hire your first AI employee: a seven-step onboarding
1. Write the job description as a file, not a prompt
Prompts vanish. A file persists, gets edited when you learn something, and gets read at the start of every single run.
The file should say what the job is, what a good result looks like, what to never do under any circumstances, where the inputs live, where the output goes, and who to escalate to when it is stuck. Write the "never do" section first. It will end up longer than the rest and it will be the part that saves you.
I keep one of these per product, plus one global instruction file that every agent reads before anything else. That global file has become the highest-leverage document I own, and most of it is a list of things not to say and not to touch. I wrote about how those files are structured, and how they drift, in the seven instruction files that keep 14 products from contradicting each other.
2. Give the job a finish line
One job. Not "handle marketing". Not "run support".
A finish line is a state you can observe from outside. A row appended to a log. A file in a folder. A draft sitting in a queue with a timestamp. When the agent can point at the finish line, so can you, and disagreements about whether it did its job stop being arguments about vibes.
Vague scope is the most common reason a first AI employee gets fired in week two. It is almost never that the agent did nothing. It is that it did work nobody could evaluate.
3. Decide what it is allowed to touch
Write the access list down before you hand over a single credential. For each system: read only, or read and write.
Give the agent its own account wherever the platform allows one, rather than sharing yours. When something goes wrong, and something will, you want to revoke one key instead of rotating your entire life. Keep billing access, account deletion, and anything that can remove data permanently off the list entirely for the first hire. There is no recurring job worth doing that requires the ability to delete your customers.
This is also where you find out which of your tools were never designed for a second operator. That is useful information about your stack, not a reason to skip the step.
4. Put the approval gate in before the first run, not after the first incident
Some actions you queue for a human. Some you let run.
My rule is one sentence: anything a stranger will see, anything that costs money, and anything I cannot undo gets held for me. Everything else runs unattended. Research, drafting, filing, updating internal state, generating images, writing to a queue: all of that goes without me. Sending an email, publishing to a public feed, spending money, deleting anything: all of that waits.
Write the rule as an actual gate, not as a line in the instructions. Rules in prose get followed most of the time. A gate gets followed every time. Claude Code exposes this as hooks that fire before a tool call, so a shell command or a small policy check can hold or block an action regardless of what the model decided. Most agent platforms have some version of this, and it is worth an hour to find yours.
I laid out the full list of what I gate and what I let run loose in my agent approval workflow.
5. Give it a state file so it remembers
Between runs, an agent remembers nothing. Whatever it needs to know about its own history has to be written down somewhere it will read next time.
The blog routine that published this morning reads a log of every post it has ever published before it picks today's topic. Without that file it would happily write the same article every Tuesday, with slightly different wording, forever. The log is also how it picks which older posts to link to.
Two practical notes learned the hard way. Keep the rows short, because the agent reads the whole file on every run and a bloated log taxes every future run. And have it append the row as the last action of the job, so a run that failed halfway does not claim credit.
6. Schedule it, then watch the first five runs
Do not walk away on day one. Put it on its schedule, then read the output of runs one through five line by line, the way you would read a new hire's first week of work.
Runs one through five are where you discover that your definition of done was ambiguous in a way that was invisible while you were writing it. You will find the agent doing something technically compliant and obviously wrong. That is the system working. Fix the file, not the run.
7. Review it weekly like you would review a person
Once a week, three questions. What did it produce. What did I have to fix. What should the job description say now that it does not.
The third question is the whole discipline. Every correction goes back into the file, not into your head. An agent you have to remember things for is not saving you anything.
Almost everything that goes wrong with an unattended agent turns out to be a documentation bug rather than a model failure. I catalogued the specific failure modes, including the ones that only appear at three in the morning, in what breaks when nobody is watching.
What the first thirty days actually look like
Week one. Supervised. You read every run and edit the job description most days. It feels slower than doing the job yourself, because it is.
Week two. The gate stays on. You skim rather than read. The edits get smaller and more specific.
Week three. You stop reading every run and start reading the weekly summary. This is the first week where you actually get time back.
Week four. The first genuine surprise. An input changed shape, a site moved, a login expired, and the agent did something confidently wrong. You handle it, you write the new rule into the file, and the same surprise never costs you anything again.
Week four is the one nobody sells you, and it is the week that decides whether you keep the hire.
What an AI employee costs to run
Two costs, and only one of them shows up on an invoice.
The visible cost is the subscription or the model usage per run. That number is usually smaller than people expect and it is easy to measure: run the job ten times and divide.
The invisible cost is your attention, and in month one it is the larger of the two by a wide margin. A job that costs a few dollars a day in model usage and ten minutes a week of review is genuinely cheap. A job that costs two dollars a run and forty minutes of cleanup is expensive, and the invoice will never tell you that. Measure the review time deliberately for the first month. If it is not falling week over week, the job description is the problem.
Which roles to hire first
The eight roles I see working as standing agent employees are go-to-market engineering, SEO, web development, social media, ad management, sales, customer satisfaction, and a chief of staff that coordinates the rest. Those eight are the exact roster we deploy inside the Agent Ops Club, and the reason they work as employees rather than as tools is that each one has a job with an observable finish line.
Do not hire all eight. Hire the one whose output you can check fastest, because your checking speed is what determines how quickly you can trust it. For most people that is content or research rather than sales, because a bad draft costs you nothing and a bad outbound email costs you a prospect.
If you would rather build the role than rent it, the Claude Code subagent documentation covers defining an agent with its own instructions, its own tool access and its own model. That is the same shape as the job description file in step one, expressed as configuration.
Where this goes wrong
Hiring three at once. You will not be able to tell which one is failing. Hire one, get it boring, then hire the next.
Granting write access on day one. Read only for the first week costs you almost nothing and prevents the one incident that would make you quit.
No state file. The agent repeats itself, and repetition is the tell that makes readers and customers stop trusting the output.
Treating the job description as finished. It is a living document. If you have not edited it in a month, either the job is perfectly specified or you have stopped paying attention. It is usually the second one.
Judging it in week one. Week one is training. Judge it in week five.
Frequently asked questions
Can an AI employee replace a human hire?
For a bounded, repeating job with a checkable output, yes, and it will do that job at three in the morning on a public holiday. For work that needs relationships, negotiation, or judgement about people, no. The honest framing is that an AI employee takes over the parts of a role you were never going to get around to hiring for anyway, which is why most people end up with more work happening rather than fewer staff.
How many AI employees can one person manage?
More than you think once each one is boring, and fewer than you think while they are new. The limiting factor is not the agents, it is the number of weekly reviews you will actually sit down and do. I would rather run four agents I review properly than twelve I glance at.
Do I need to be able to code to hire an AI employee?
Not to hire one. Several platforms will have a role running for you the same day with no code at all. You do need to be able to write clearly, because the job description file is the whole product, and you do need to be willing to look at the output. Writing is the real prerequisite, not programming.
What happens when it makes a mistake nobody catches?
This is the question the sales pages avoid, and the answer is that the approval gate is your only real protection. If the mistake was in a draft, you fix the draft. If the mistake went out to customers because you gated nothing, you have a customer problem rather than an AI problem. Gate the irreversible actions and the worst case stays cheap.
How long before an AI employee pays for itself?
For a job you were genuinely doing every week, usually inside a month once the review time drops. For a job you were not doing at all, the payback is not time saved, it is work that now exists that did not before. Be honest about which of the two you have hired for, because they get judged completely differently.
Come watch one get hired
I am doing this live. On Saturday September 5 at 10 AM Eastern I am installing an AI employee from scratch and running its first scheduled job on the call, then walking through the other seven roles and what it takes to deploy them for a client under your own brand. It is free, and the replay goes out within a day if the time does not work for you.
If you want the whole roster rather than the walkthrough, the Agent Ops Club is where the eight agent employees, the nine-module Agent Ops Masterclass with its 44 lessons, and the software library with a resale license live. It is 399 dollars a month billed annually, 4,788 dollars for the year, and it carries a first client guarantee: land your first client within 90 days or I work with you one on one, at no extra cost, until you do.
Either way, start with one hire, one job, and one gate. That is the whole method. The rest is just weeks going by.
Subscribe Now for More AI Insights
Subscribe for Updates from Reinventing AI
Stay current on the most cutting-edge AI solutions for ambitious entrepreneurs and marketers!