May 5, 2026
AI Agent Conference NYC: 10 Takeaways
The 10 things from AI Agent Conference 2026 NYC (May 4-5, NY Hilton Midtown) that are actually load-bearing if you ship agents in 2026. The trust paradox, CrewAI's 42% AI-authored code, the iceberg under every project, AX as the new UX, and what the panels from Datadog, LanceDB, Carta, and the Codex/Linear/Graphite room actually said.
Contents (12)
- 1. Tim Sanders (G2) + Raghu Malpani (UiPath): the trust paradox is the framing that lets you ship.
- 2. Joe Moura (CrewAI): 42% of CrewAI's code last week was AI-authored.
- 3. Codex (Derrick Choi) + Linear (Tom Moor) + Graphite/Cursor (Tomas Reimers): review is the bottleneck, not the agent.
- 4. Venky Veeraraghavan (DataRobot): below the waterline is where ROI is decided.
- 5. Sean Roberts (Netlify): AX is the new UX.
- 6. Chang She (LanceDB): a vector DB alone is not enough for agentic retrieval.
- 7. Ameet Talwalkar (Datadog): observability is the verification layer for coding, and specialized models beat frontier models for vertical AI.
- 8. Vrushali Paunikar (Carta): build effective agents, do not over-build agents.
- 9. Aabhas Sharma (Hebbia) + Sirisha Kadamalakalva (Citi): agentic banking is real, and the moats are talent, data, and trust.
- 10. CircleCI + OpenAI + Databricks panel: throughput jumped 59%, and almost all of it went to top orgs.
- What was not said
- The one thing to take to the team
TL;DR. AI Agent Conference NYC ran May 4-5 at the NY Hilton Midtown. The room was production agent teams, CIOs, and the vendors selling them. Below are the 10 takeaways I would tell a CTO who could not attend, ranked by how much they will change what you ship next quarter. Every item links the deeper post on this site.
1. Tim Sanders (G2) + Raghu Malpani (UiPath): the trust paradox is the framing that lets you ship.
The most quotable session of the conference. G2's latest survey shows two findings that contradict each other on the surface:
- A majority of buyers say agents required more human oversight than vendors promised.
- Nine of ten said they would radically increase autonomy next year.
Both are rational. The resolution that lets teams ship: do not sell agents on cost savings, because every down-line manager will blame an AI hallucination to save their job. Sell on capacity and agency instead. The framing changes who sponsors the project and how failures get interpreted internally. Notes on human-in-the-loop.
2. Joe Moura (CrewAI): 42% of CrewAI's code last week was AI-authored.
The founder of one of the major multi-agent frameworks runs a team where almost half the code is written by agents and reviewed by humans. Their internal coding agent (Project Iris) altered half of the company's PRs in the same week. The Google number for the same period is 75% (Paige Bailey, AI Dev SF).
Moura's other framing landed: agentic systems are bifurcating into two shapes that increasingly call each other.
- Ad-hoc workflows — disposable, output is what matters. Examples: OpenClaw, Claude Code, Cowork.
- Embedded workflows — recurring, governed, the business runs on them. CrewAI's home turf.
Reusable building blocks, agent repositories, and skills repositories are the flywheels that compound. CrewAI open-sourced their skills library at skills.crewai.com. Death of the junior dev is overstated.
3. Codex (Derrick Choi) + Linear (Tom Moor) + Graphite/Cursor (Tomas Reimers): review is the bottleneck, not the agent.
Shipping coding agents at scale is no longer about the agent itself. It is about the infrastructure that makes the agent's output reviewable, mergeable, and trustworthy. Concrete patterns the panel surfaced:
- A markdown cheatsheet of ~10 skills for new-hire agent onboarding (Codex scaffolds v1).
- Automation that runs daily, finds one improvement, opens a PR, and merges itself.
- Long-running tasks that only surface to humans when something breaks.
Code review is becoming, simply, review. The reviewer's job shifts from reading every diff to filtering what humans should look at at all. Coding agent infrastructure in production.
4. Venky Veeraraghavan (DataRobot): below the waterline is where ROI is decided.
Demo day is 65% complete. Production demands 95%. The agent (model + framework + prompt) is the visible 20%. The 80% beneath the waterline:
- Developer experience for enterprise hooks (CI/CD, observability, governance, A/B testing).
- Agent identity and auth. Static API keys are not an identity model. Most teams ship agents with broadly-scoped, long-lived shared credentials and no auditable chain of custody.
- Token-factory economics. Route calls to the cheapest viable model, decouple user contracts from backend execution, treat inference capacity (not GPUs) as the resource you allocate. Premium and spot tiers, deterministic admission control, no throttling surprises.
Below the waterline walks the architecture.
5. Sean Roberts (Netlify): AX is the new UX.
A meaningful share of traffic to your product is no longer human. Coding agents read your docs, browser agents fill your forms, research agents scrape your pricing page. Agent Experience (AX) is becoming as load-bearing as UX, and it is the new relevance signal for AI search and discovery.
Roberts gave a four-step audit:
- Identify the agents your customers use (logs, network data, asking customers, asking the agents themselves).
- Identify use cases your customers want to delegate.
- Verify the experience yourself; can the agents actually accomplish goals?
- Improve and repeat.
Netlify open-sourced AXIS (netlify/axis) as a scoring framework for AX automation. Agent Experience: the four-step audit.
6. Chang She (LanceDB): a vector DB alone is not enough for agentic retrieval.
Production agents turn retrieval from a single lookup into parallel, multimodal, stateful search across docs, code, logs, JSON, and raw artifacts. The unit of context is no longer just text.
LanceDB's storage tiering for the artifact problem, all behind one read API:
- Inline (under 64KB) — in the main data file.
- Packed (64KB-4MB) — shared blob sidecar.
- Dedicated (over 4MB) — one blob per asset.
- External (URI/range) — point at existing object storage, no copy.
Snapshot isolation and time travel matter for evaluation reproducibility. The only way an eval is meaningful is if you can replay the exact context state used during the run. Versioned context with branch and rollback semantics is now a system requirement, not a research nicety.
7. Ameet Talwalkar (Datadog): observability is the verification layer for coding, and specialized models beat frontier models for vertical AI.
Observability shifted from dashboards to systems that automatically reason and act on signals. Datadog released Toto v1, the first time-series foundation model trained on over a trillion data points (750 of them unique to Datadog), top of the BOOM and GIFT-Eval benchmarks at release, open-weight on Hugging Face. Toto v2 in April 2026 added multi-modal signals (time series plus text).
The argument that matters: frontier models are too expensive and too slow for SRE-style continuous workloads. Post-trained specialized models, built on simulated SRE environments and distributed RL, hit cost-and-latency targets that frontier models cannot. This is the playbook for vertical AI in 2026. Self-healing CI/CD patterns is the related post.
8. Vrushali Paunikar (Carta): build effective agents, do not over-build agents.
Carta's framework for tech-agent-enabled services is the cleanest playbook the conference produced for SaaS that has to evolve into AI: start as a service business, transform with differentiated value plus AI-scaled service, use leverage to transform the market, and expand from there.
The architectural advice, in this exact order:
- Deterministic scripts.
- LLM-driven workflows.
- Deterministic workflows.
- Agents.
Over-using agents on problems that are not ambiguous is a known failure mode, and Anthropic's "Building Effective Agents" essay is the canonical reference (Carta said so on stage). One useful detail: the fastest-growing customer-facing interface for Carta is email, not a dashboard or a chat product. Meet customers where they already are.
9. Aabhas Sharma (Hebbia) + Sirisha Kadamalakalva (Citi): agentic banking is real, and the moats are talent, data, and trust.
Virtual data room deep-diligence over thousands of documents went from weeks to hours. The bankers who shipped first kept the relationship work and the final-judgment calls; the mechanical work (modeling, comparison, double-checking) is now done by agents under human review.
What works: build horizontal, sit between foundational labs and Palantir-scale forward-deployment, and give bankers the AI primitive they need to set up their own workflows. What fails: buy a single provider and try to one-shot the use case.
The moats for finance are talent, data, and trust. None of them are the model.
10. CircleCI + OpenAI + Databricks panel: throughput jumped 59%, and almost all of it went to top orgs.
The hardest data point of the conference. Average software-shipping throughput rose 59% with AI assistance, distributed as a power law, with the gain concentrated in the top decile of organizations.
The bottleneck migrated from code generation to code validation, with a side effect: roles outside engineering (PM, design, communicating product requirements) are now the rate limiter for the same reason Andrew Ng described at SF the week before.
- Inner loop (build, debug, push) — dominated by AI-generated code.
- Outer loop (queue, manual review, compliance, security, deploy) — dominated by slow feedback and noisy signals.
Multi-agent self-review (one agent proposes, four others critique until consensus) buys back confidence at the cost of compute. The panel argued the trade is worth it.
What was not said
Three things missing from every panel: (a) honest dollar amounts on token spend at production agentic scale, (b) what happens when the model provider has an outage during a critical agent loop, (c) what the audit trail looks like when a regulator asks. Both SF and NYC dodged all three. Cost discipline, hybrid local-cloud failover, and the four-legged identity work are the closest existing answers to each.
The one thing to take to the team
Pick one workflow currently owned by a brittle script. Replace the script, not the human. The trust paradox is the framing that lets you ship: sell capacity, not cost savings. The teams in the room with production agents in 2026 had internalized that framing. The teams that had not will be back next year explaining why their pilot died.
Local-First AI
If this was useful, the weekly notes go deeper. No drip sequences, no upsells.
n8n templates, cost teardowns, and what is actually working in 2026. No drip sequences, no upsells. Reply to opt out.