惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
爱范儿
爱范儿
P
Proofpoint News Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
Jina AI
Jina AI
B
Blog
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
腾讯CDC
C
Check Point Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
罗磊的独立博客
B
Blog RSS Feed
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 叶小钗
M
MIT News - Artificial intelligence
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI writes 60% of your work but you can only hand off 20% ...
cpengc1984 · 2026-06-15 · via DEV Community

cpengc1984

Anthropic's 2026 Agentic Coding Trends Report dropped a stat that's worth sitting with: developers now use AI for roughly 60% of their work — but the share of tasks they can fully hand off (no looking back, no review) is only 0–20%.

That 40-point gap in the middle is, I'd argue, the entire story of enterprise AI coding in 2026.

Speed is already won. What's unsolved is trust to let go.

The data: speed won, "can I let go?" didn't

A few signals from the last couple of weeks line up suspiciously well:

  • Anthropic, 2026 Agentic Coding Trends Report: ~60% of dev work touches AI; only 0–20% of tasks can be fully delegated.
  • 2026 State of AI Agents surveys: ~86% of teams are past the experimentation phase and running agents on production code; enterprise adoption is ~91%. Yet the same respondents keep repeating one line — "the hardest part of agentic workflows isn't intelligence, it's secure and reliable access to production systems."
  • A widely-shared engineering take: "harness engineering is what makes AI agents reliable in production" — not the model itself.

Put together: the speed war is over. AI won. Everyone is now stuck at the same wall — if AI can do 60%, why can I only safely let go of 20%? That 40-point delta is where all the difficulty lives.

Where the gap comes from: not intelligence, missing guardrails

Why can the AI do the work but you still can't let go? Because that 40% is full of "wrong once = serious incident" tasks:

  • Changing a money field that feeds reconciliation
  • Touching the core permission model of a live system
  • Adjusting a cross-department approval flow
  • Adding an API that a dozen downstream systems will depend on

The AI can absolutely write all of this — fast, and it looks right. The problem is nobody can guarantee it is right. So teams get pushed to two extremes: ban it entirely (waste the 60% speed) or fully trust it (plant landmines in core systems).

One answer — the one Anthropic ships — is Managed Agents + controlled workflows: governance, review, and permission boundaries around the agent. Correct direction. That's "watch it closely from the outside." There's also a more radical option: make that high-risk 40% impossible for the AI to set on its own in the first place.

Welding the gap into the architecture

This is the core idea behind Oinone — AI-native, but with rigor living in the architecture:

  1. The AI emits metadata, not code. "Add a 3-level approval to the quote object" produces a structured metadata diff of model/view/flow/permission — a few dozen readable lines, not a wall of code you're afraid to touch.
  2. Let go of what's safe; backstop what isn't. Generating screens, laying out fields, scaffolding flows (the safe-to-delegate part) → let the AI fly. Permission model, data validation, transactional consistency, audit (the high-risk 40%) → enforced by the framework. The AI can't move them and can't route around them. The "what AI is not allowed to decide" list is welded into the foundation.
  3. The review surface shrinks. Managed Agents let you review what the agent did; Oinone makes the thing you review a few dozen lines of metadata diff — wrong, roll the whole thing back. Oversight goes from "read thousands of lines" to "scan a structural change." That's exactly what lifts the 20% hand-off ceiling.
  4. Change once, consistent everywhere. A model change derives UI / API / permissions in sync — no "changed the field, forgot the permission." That omission is precisely where the hand-off gap turns into an incident, and exactly what humans and scanners miss most.

One line: Speed by AI, rigor by Oinone. Others govern the agent from the outside; Oinone welds the high-risk 40% into the core — so its safe-to-delegate ratio can be higher, because the dangerous zone simply isn't in the AI's reach.

Three questions for anyone evaluating tools

  1. How do you narrow your 40% hand-off gap? Human review one by one, or architecture that welds the high-risk zone shut and shrinks the review surface?
  2. Where does the backstop live? A governance panel around the agent, or output that is itself constrained structured metadata?
  3. Would you let an agent change your core system? A wall-of-code system won't; a metadata-driven, framework-backstopped one will let go in the safe zone — because a mistake is just a few dozen rollbackable lines.

FAQ

Q: What's the "hand-off gap"?
A: From Anthropic's 2026 Agentic Coding Trends Report — devs use AI for ~60% of work but can fully delegate only 0–20% of tasks. The 40-point middle is "AI can do it, but I daren't let go" — the real enterprise blocker.

Q: Is Oinone competing with Claude Code / Copilot?
A: No — complementary. Those are general coding agents (great at writing code); Oinone is an AI-native low-code framework that makes the AI emit architecture-constrained metadata for enterprise apps. Use Claude Code for low-level extensions, Oinone/Aino to build the business app.

Q: Is it open source?
A: Yes (AGPL-3.0). One docker compose and it's up in ~5 minutes; self-hosted, data never leaves your environment. It runs in the core systems of billion-scale enterprises.


If this framing helped, the project is open source (AGPL-3.0) — a ⭐ supports the maintainers:

(Disclosure: I work with Oinone.)