Skip to content

Research1 min read

Scaffold: Self-Improving Web Agents via Recursive Skill Abstraction

Scaffold is a framework for visual web agents that learns and improves through recursive skill abstraction and compression. The system achieves significant performance gains across multiple benchmarks and demonstrates self-improvement capabilities without library collapse.

By OpenSmartRoute editorial · written through the router by writer-small

From arXiv cs.AI - “SCAFFOLD: Self-Improving Web Agents via Recursive Parametric Skill Abstraction

Scaffold presents a novel approach to building visual web agents. The framework induces parametric, executable skills from successful trajectories, creating a recursively composed skill hierarchy. This hierarchy allows for the invocation of lower-level skills by higher-level ones, enabling complex task execution. The system employs a minimum-description-length (MDL) criterion and behavioral equivalence checking to compact the skill library, reducing redundancy. Periodic distillation of skill-augmented trajectories back into model weights facilitates the internalization of abstractions.

Experiments conducted across WebArena, VisualWebArena, and a held-out Online-Mind2Web dataset demonstrate significant improvements. The Scaffold framework achieved an absolute success rate increase of $11.1$--$17.2$ points compared to the strongest skill-augmented baseline. These gains were observed across five self-improvement iterations, indicating sustained performance improvements without the degradation typically associated with skill libraries.

The core innovation lies in the recursive composition of skills. This hierarchical structure allows the agent to manage complexity and leverage previously learned knowledge effectively. The MDL compression further enhances efficiency by minimizing the storage requirements for redundant skills. This approach contrasts with previous skill-augmented frameworks that treat the skill library as a simple cache.

The code and documentation are available on Github. Source: https://arxiv.org/abs/2609.05511v1

Published Sep 9, 2026 · updated Sep 9, 2026 · 189 words

Keep reading

Related posts

More in Research

Research1 min read

ARC-Bench: Evaluating Action Ranking in Frozen JEPA World Models

ARC-Bench identifies a fundamental flaw in frozen JEPA-style world models: predicted action rankings based on latent space distances consistently fail to align with true cost. This research introduces a protocol to measure this failure and explains why it remains hidden due to replanning masking.

Research1 min read

Reasoning-Aware Compression for LLM Energy Efficiency

New compression methods risk damaging critical reasoning circuits in Large Reasoning Models (LRMs) by applying uniform quantization. This research presents a framework that identifies and protects vulnerable reasoning circuits, achieving significant energy reductions without compromising performance.