Your startup’s next teammate might be an AI agent: Gusto, Insight Partners, and Leland explain what that changes at TechCrunch Disrupt 2026
Founders used to ask “Who do we hire next?”, the question now worth asking is: which human skills must remain human? That reframing is exactly what Josh Reeves (Gusto), Michelle Johnson (Insight Partners) and John Koelliker (Leland) will tackle on the Builders Stage at TechCrunch Disrupt 2026, Oct. 13-15 at Moscone West in San Francisco.
The panel, titled “Hiring When AI Is a Co‑founder, ” explores a practical problem founders are already facing: AI agents, systems that can execute multistep workflows end-to-end, are able to absorb tasks that used to be a first hire’s bread and butter. That creates immediate operational and organizational tradeoffs, like which work should be automated, who owns the outcomes, and how you keep accountability from becoming vaporware.
What I mean by “AI agent”
In this context, an AI agent is more than a helpful autocomplete. It’s a system that chains steps, for example fetching data, synthesizing it, and taking actions via APIs or internal tools, to complete a workflow without human re-entry at each step. Common building blocks include a large language model, retrieval layers (RAG), an orchestration layer, and connectors to systems like CRMs, ticketing, or CI/CD. Think of agents as junior teammates who follow scripts, until they hit an exception that needs human judgment.
Why founders should rephrase hiring questions
The old tactical playbook, hire a generalist engineer, an SDR, or a product manager, assumes most early work is execution. Today, many of those execution tasks are candidates for automation. That does not make people irrelevant. It shifts the highest-value hires toward judgment, ownership, and orchestration. You want people who define escalation rules, design safe agent behaviors, and make strategic calls when data conflicts with context or values.
Josh Reeves brings a product and HR-platform lens from Gusto, which supports more than 500, 000 companies across payroll, benefits, compliance, onboarding, HR, and retirement (Gusto). Michelle Johnson offers an operator-turned-investor view, she helped scale Flock Safety from under $1 million to $90 million ARR and now advises growth companies on where to invest human capital (Insight Partners). John Koelliker’s work at Leland frames how talent and career design change when machines are part of the bench. Each perspective helps answer a single operational question: what work truly requires humans?
A decision rubric founders can use right now
Before posting a job requisition or wiring up an agent, run the task through this checklist. For each item include a short test or threshold you can measure.
- Repeatability: Can the task be codified as a flowchart, unit tests, or a clear decision tree? If yes, it’s a good candidate. Test: write a 10-step flow and see if you can automate each step reliably.
- Risk: What happens if the agent is wrong? High legal, financial, or safety risk favors human ownership. Example threshold: flag any action that affects payroll, legal contracts, or customer funds for manual sign-off.
- Observability: Can you log inputs, outputs, model and chain versions, and the prompts used? If you cannot reproduce a decision, don’t automate it. Test: re-run a logged input against the recorded model/version and expect identical output (or a reproducible divergence you can explain).
- Customer sensitivity: Does the task depend on empathy, negotiation, or trust? Keep humans in the loop for onboarding, churn conversations, or escalations that demand relationship work.
- Scale/Speed benefit: Will automation deliver parallelism or 24/7 coverage that a hire cannot? If one agent can safely replace a full-time person’s repetitive work, pilot it and compare total cost of ownership (build + run vs salary + benefits).
If most items favor automation, pilot the agent. If not, hire the human. In many cases the right answer is hybrid, automation for most cases and human-in-the-loop for edge and high-risk events.
Operational checklist: must‑haves versus nice‑to‑haves
Operational controls prevent a neat demo from becoming a costly outage. Below the items are prioritized with a rough implementation effort (Low / Medium / High).
- Must‑have
- Observability: log inputs, outputs, model/chain versions, timestamps, and user IDs (Effort: Medium). Aim for reproducibility, be able to re-execute inputs against the recorded model and get an explainable output.
- Human-in-the-loop gates: require manual approval for high-risk actions (e.g., payroll changes, refunds above a threshold) (Effort: Low).
- Access controls & secrets management: role-based access to connectors and encrypted credentials (Effort: Low).
- Data minimization & pseudonymization for PII: avoid exposing raw personal data to third-party models (Effort: Medium).
- High priority / soon
- RAG + grounding: store authoritative documents in a vector DB and force the agent to cite sources for claims (Effort: Medium).
- Escalation SLAs and owners: define mean time to remediation (MTTR) targets, for example investigate and remediate agent production errors within 24 hours (Effort: Low).
- Retention & audit policies: keep logs long enough for investigations and compliance (Effort: Low).
- Nice‑to‑have
- Decision replay: re-run historical inputs against newer model versions to detect drift (Effort: High).
- Adversarial testing and prompt-injection checks (Effort: Medium).
- Vendor exit plan to avoid lock-in (Effort: Medium).
Legal, compliance and accountability, in plain terms
Models lack legal personhood. Deployers, vendors, and organizations typically carry liability, and contractual arrangements can shift responsibilities. Use established frameworks, for example NIST’s AI Risk Management Framework (AI RMF v1.0), as a baseline for policy. Also factor regional rules, GDPR, CCPA, and the evolving EU AI Act change obligations for data handling and high-risk systems. In practice, that means:
- Designate a human owner for each agent with the explicit authority to override it.
- Document approval gates and remediation processes so you can show auditors how decisions are made.
- Limit model access to minimized datasets and redact or pseudonymize sensitive fields before they reach external models.
Common failure modes and simple mitigations
- Model drift: monitor output distributions and run periodic replay tests. Mitigation: automatic alerts when confidence or output patterns deviate from baseline.
- Data poisoning or bad context: restrict which external documents are trusted in RAG. Validate sources. Mitigation: maintain an allowlist of corpora or trusted internal docs.
- Prompt injection: sanitize inputs and run adversarial tests before production. Mitigation: canonicalize inputs and escape or drop embedded instructions from upstream sources.
- Vendor lock-in: keep a plan for migrating embeddings, data exports, and orchestration code. Mitigation: evaluate open formats and abstraction layers for connectors.
Practical examples you can copy
- Support triage agent: agent pulls ticket history, suggests a categorized response and a severity tag; if confidence < 0.8, or if the ticket touches payroll or legal, escalate to a human. KPI: reduce first-response time by X and keep human escalations < Y% during pilot.
- Sales outreach assistant: agent drafts personalized outreach and populates CRM fields; SDR reviews and sends. Pilot metric: time saved per lead and lift in qualified meetings booked.
- Devops helper: agent opens a PR, runs tests, and notifies reviewers; block direct production commits, require human sign-off on any change that flips a feature flag or affects billing. Policy: no agent commits to production without two human approvals.
People, careers and culture
Expect the first-team composition to tilt toward people who can design workflows, own outcomes, and coach teams through exceptions. Job descriptions will need to surface orchestration and judgment skills: “owns agent performance, ” “defines escalation thresholds, ” or “audits outputs weekly.” Equity and promotion criteria should reflect those supervisory responsibilities, not just lines of code written or tickets closed.
That shift does not make execution roles obsolete, it changes their focus. The best early hires will combine domain expertise with the ability to translate messy human requirements into safe, testable automation flows.
What you can do next (three practical steps)
- Pick one repeatable, low-risk workflow and run a 30-day pilot. Define KPIs (escalation rate, MTTR, customer satisfaction) before you start.
- Instrument logs and version decisions. Ensure every agent action has an owner and an escalation path.
- Apply a legal and privacy checklist: data minimization, pseudonymization, RBAC, and documented approval gates for high-risk actions. Use NIST AI RMF as a governance baseline.
The Builders Stage panel will unpack these tradeoffs with real operator perspectives: Reeves on product and payroll risk, Johnson on go-to-market and scaling tradeoffs, and Koelliker on talent design for the AI era. If you want to compare notes with founders, investors, and operators wrestling with the same questions, you’ll find the conversation useful.
TechCrunch Disrupt 2026 runs Oct. 13-15 at Moscone West in San Francisco. TechCrunch promotes the event as drawing 10, 000+ startups, investors, and tech decision-makers. Grab your pass by September 25 at 11:59 p.m. PT to save up to $200. Group registrations save up to an additional 30%.
Key questions (and short answers)
-
What kinds of early-stage work are safe to delegate to AI agents?
Repeatable, well-specified operational tasks, research synthesis, outreach prep, routine ticket triage, are the lowest-risk candidates. Pilot with clear KPIs and human escalation rules, and keep anything that affects compliance, payroll, or legal outcomes under human oversight.
-
Who is accountable when an agent makes a mistake?
Organizations and designated human owners carry accountability; models do not. Assign an owner for each agentic workflow, document approval gates, and have a remediation plan. Use contractual terms with vendors to clarify shared responsibilities.
-
How should founders redesign early hires?
Prioritize judgment, orchestration, and ownership: hires who can design workflows, monitor agents, and handle edge cases. Write role descriptions that include KPIs for supervising agent performance and remediation responsibilities.
-
What technical controls are non-negotiable?
At minimum: observability (logs with model & chain versions), access controls, RAG grounding for factual claims, and human-in-the-loop approval gates on high-risk actions. Add replay and drift detection as you scale.
Start small, instrument everything, and make responsibility explicit. The startup org chart is changing, so design yours so people still add judgment, ownership, and trust, even as agents handle more execution. Learn how founders and operators are making those tradeoffs at the Builders Stage during Disrupt 2026.