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

推荐订阅源

博客园 - 聂微东
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
C
Check Point Blog
M
MIT News - Artificial intelligence
U
Unit 42
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
大猫的无限游戏
大猫的无限游戏
D
Docker
Last Week in AI
Last Week in AI
IT之家
IT之家
F
Fortinet All Blogs
A
About on SuperTechFans
P
Proofpoint News Feed
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
博客园_首页
月光博客
月光博客
博客园 - 司徒正美
Y
Y Combinator Blog

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
Agentless: A Practical, Cost-Effective Workflow for Human...
Aitor Gómez García · 2026-06-26 · via DEV Community

Aitor Gómez García

In the current landscape of AI, autonomous agents are often portrayed as the ultimate goal. However, whether you are constrained by corporate security policies or simply prefer to maintain full visibility and control over every command executed on your system, granting an AI autonomous access isn't always the right path

Agentless is born from this reality: an open-source workflow framework designed for scoped, manageable tasks where human oversight isn't just a safety feature—it's the core of the system.

The Core Concept: Human as the Runtime

Instead of trying to automate the entire execution loop, Agentless treats the human operator as the "runtime". The AI handles high-level reasoning and structured analysis, while the human handles the actual execution and validation of every step. This ensures 100% accountability and makes the system compatible with any standard chat interface like ChatGPT, Claude, or Gemini.

Technical Workflow & Structured Modes

The framework operates through specialized Workflow Modes that guide the LLM through an iterative, evidence-driven process:

  • DISCOVER & ANALYSE: Establishing environment facts and investigating root causes without making blind assumptions about the OS or codebase.
  • PLAN & APPLY: Defining an evidence-based path and implementing changes via a "Patch-First" approach, where the AI proposes small, reviewable modifications.
  • VERIFY & COMMIT: Using Git diffs as the primary verification mechanism to ensure every change is auditable before moving forward.

Cost-Effectiveness & Efficiency

One of the major advantages of this supervised approach is predictable operational costs. By avoiding the expensive "error loops" that autonomous agents can fall into, you maintain tight control over token usage.

Furthermore, Agentless includes a Snapshot Mechanism: for long-running tasks, you can create a compact summary of the current state and move to a fresh chat. This prevents the massive context growth that drains budgets and can degrade model performance over time.

Security by Design

For those who want an extra layer of safety when running AI-suggested commands, the project includes an optional Linux/WSL Sandbox. Built with Bubblewrap, this utility restricts write access exclusively to the target repository, keeping the rest of your filesystem read-only and secure while you test implementations.

Conclusion

Agentless isn't a replacement for autonomous agents; it's a surgical tool for engineers who need agent-like outcomes without ceding control or breaking compliance rules. It prioritizes evidence over assumptions and human oversight over blind execution.