2026-07-03
AI Agents
A new paper presents an evasion framework that bypasses all tested agent skill malware scanners with over 90% success, while another introduces a static analysis tool that finds a new failure class—infinite agentic loops—with 91.9% precision in open-source projects. Other research covers attacks on persistent codebases, plus how underspecified instructions cause dangerous guessing.
Papers
5Cloak and Detonate: Scanner Evasion and Dynamic Detection of Agent Skill Malware
This paper demonstrates that static analysis of agent skills is insufficient for security. The authors introduce
SkillCloak, an evasion framework using structural obfuscation and self-extracting packing to bypass scanners while preserving malicious payloads. It achieved over 90% bypass rates against eight scanners. As a defense, they propose SkillDetonate, a runtime auditor that executes skills in a sandbox and detects malicious behavior via OS-boundary information-flow analysis, moving detection from install-time appearance to runtime effects.Coding Agents Are Guessing: Measuring Action-Boundary Violations in Underspecified DevOps Instructions
This work argues that when given underspecified instructions, coding agents don't fail—they guess, often unsafely. The authors present
UnderSpecBench, a benchmark with 2,208 prompt variants across 69 DevOps task families grounded in real incidents. On five agent/model configurations, 55.8% to 67.8% of runs violated action boundaries by targeting the wrong resource or exceeding the intended scope. The results show that benign ambiguity in prompts can lead to dangerous autonomous actions, a problem separate from task completion.Safety Testing LLM Agents at Scale: From Risk Discovery to Evidence-Grounded Verification
The paper presents
Vera, an automated, end-to-end framework for safety testing LLM agents. Instead of relying on manual red-teaming, Vera uses a three-stage pipeline that discovers risks, combinatorially generates executable safety test cases from them, and runs agents in an isolated sandbox where outcomes are judged by evidence, not model self-reporting. An evaluation on four production agent frameworks revealed attack success rates up to 93.9%. The authors also release Vera-Bench with 1600 test cases.When Agents Do Not Stop: Uncovering Infinite Agentic Loops in LLM Agents
This paper identifies and analyzes a new failure mode:
Infinite Agentic Loops (IALs), where interactions between agent logic, framework semantics, and runtime feedback cause unbounded execution. The authors built IAL-Scan, a static analysis tool that converts agent code into an intermediate representation and uses a dependency graph to find potentially unbounded feedback paths. On 6,549 repositories, IAL-Scan found 68 confirmed IAL failures across 47 projects with 91.9% precision, demonstrating a practical approach to detecting this new bug class.Distributed Attacks in Persistent-State AI Control
This paper explores a new attack surface created by coding agents that operate on a persistent codebase across multiple sessions. An attacker can distribute a malicious payload across several pull requests, timing the final exploit for a PR with plausible deniability. In their
Iterative VibeCoding benchmark, this "gradual attack" was more effective at evading certain types of monitors than a single, concentrated attack. The high evasion rates (>=65%) held across multiple attacker models, suggesting this is a property of the attack surface itself.Blogs
2Using DSPy to evaluate and improve Datasette Agent's SQL system prompts
Simon Willison documents using DSPy to evaluate and improve system prompts for his Datasette Agent's SQL-generation feature. He tasked a
Claude Fable 5 model with the research, which then used GPT 4.1 mini and nano for testing. The process identified concrete prompt improvements, such as including column names in the schema listing to prevent the agent from guessing and getting stuck in error-retry loops. It's a practical, hands-on application of a programmatic prompt optimization framework.llm-coding-agent 0.1a0
Simon Willison releases
llm-coding-agent, a simple coding agent built on his llm library. The project itself was bootstrapped by a Claude Fable 5 agent. Willison prompted the agent to first write a spec.md for the project, and then to build it using red-green TDD in a series of commits. The post links to the Claude transcript, the generated spec, and the resulting code, providing a complete, transparent example of agent-driven development from a credible practitioner.27 more items the ranker flagged but didn't feature
Papers
- AgenticDataBench: A Comprehensive Benchmark for Data Agentsarxiv:arxiv-agents
- Decoupling Code Complexity from Newcomer Participation: A Causal Study of AI Coding Agent Adoption in OSSarxiv:arxiv-agents
- Episodic-to-Semantic Consolidation Without Identity Driftarxiv:arxiv-agents
- Hardware-Enforced Semantic Coordination for Safety-Critical Real-Time Autonomous Systemsarxiv:arxiv-agents
- BOUNDARY_SYNC: Measuring Communication-Induced Representational Coupling in Multi-Agent LLM Systemsarxiv:arxiv-llm-systems
- A$^{2}$utoLPBench: An Auto-Generated, Agent-Friendly LP Benchmark via Inverse-KKT Constructionarxiv:arxiv-agents
- What LLM Agents Say When No One Is Watching: Social Structure and Latent Objective Emergence in Multi-Agent Debatesarxiv:arxiv-agents
- An Exploratory Study on LLM-Generated Code and Comments in Code Repositoriesarxiv:arxiv-software-eng
- Path-level Hindsight Instructions for Semantic Exploration in Vision-Language Navigationarxiv:arxiv-agents
- UA-ChatDev: Uncertainty-Aware Multi-Agent Collaboration for Reliable Software Developmentarxiv:arxiv-agents
- SimWorlds: A Multi-Agent System for Dynamic 3D Scene Creationarxiv:arxiv-agents
- Autonomous discovery of traffic laws with AI traffic scientistsarxiv:arxiv-agents
- AgenticSTS: A Bounded-Memory Testbed for Long-Horizon LLM Agentsarxiv:arxiv-agents
- EvoPolicyGym: Evaluating Autonomous Policy Evolution in Interactive Environmentsarxiv:arxiv-agents
- Refploit: Facilitating Exploit Construction via Code-Agent Trajectory Repairarxiv:arxiv-software-eng
- Prompt Coverage Adequacyarxiv:arxiv-agents
- CausalSteward: An Agentic Divide-Conquer-Combine Copilot for Causal Discoveryarxiv:arxiv-agents
- Atomic Task Graph: A Unified Framework for Agentic Planning and Executionarxiv:arxiv-agents
- Coding-agents can replicate scientific machine learning papersarxiv:arxiv-agents
- Grounded autonomous research: a fault-tolerant LLM pipeline from corpus to manuscript in frontier computational physicsarxiv:arxiv-agents
- Object Aligner: A Configurable JSON Schema Similarity Score for Graphs, Applied to LLM Prompt Optimizationarxiv:arxiv-agents
- CLAP: Closed-Loop Training, Evaluation, and Release Control for Domain Agent Post-trainingarxiv:arxiv-agents
- COMFYCLAW: Self-Evolving Skill Harnesses for Image Generation Workflowsarxiv:arxiv-agents
Blogs
- Skill engineering and the case against one-shot AI designrss:latent-space
- Vercel's Andrew Qu on why agents are a new kind of softwarerss:latent-space
- Understand to participaterss:simonw
- Loop engineering for the enterprise: close the loop or fall behindrss:karuparti