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

推荐订阅源

I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
B
Blog
罗磊的独立博客
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
The GitHub Blog
The GitHub Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏

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
Hierarchical skill KB improves performance of weaker models
Papers Mache · 2026-05-09 · via DEV Community

Papers Mache

The dominant paradigm for teaching autonomous language‑model agents is to let each instance wander through its own training episodes, rediscovering the same sub‑tasks over and over. That redundancy inflates exploration budgets and leaves even modest models struggling on long‑horizon problems. A fully automated pipeline that extracts reusable, hierarchical behaviors from a collective pool of trajectories flips the script.

Historically, agents have relied on flat replay buffers or hand‑crafted macro‑actions; neither approach captures the layered structure of real‑world plans. Without an explicit representation that separates strategy, function, and atomic operation, weaker backbones cannot efficiently retrieve the right piece of experience when a new request arrives. This limitation has kept them a step behind larger, compute‑heavy models.

SkillX addresses the gap by distilling raw execution traces into a three‑tiered knowledge base—strategic plans, functional skills, and atomic skills—then iteratively refining each entry based on execution feedback and expanding coverage through exploratory generation. When this SkillKB is plugged into a baseline model such as Qwen3‑32B, “SkillX improves the base model’s performance. In particular, Qwen3-32B gains roughly around 10 points across multiple benchmarks” [1]. The same study notes that the library “cuts redundant steps and context length,” confirming that hierarchical skill retrieval streamlines inference. Moreover, “Multi-Level Skills Design Outperform Other Forms of Experience Representation,” underscoring that the structured hierarchy itself is the driving factor behind the gains [1].

The evaluation is limited to a handful of long‑horizon, user‑interactive suites (AppWorld, BFCL‑v3, τ²‑Bench) and assumes a strong backbone (GLM‑4.6) to bootstrap the initial skill extraction. It remains unclear how the approach scales to domains with sparse demonstrations or to agents that already incorporate external memory modules. One open question is whether the same performance lift would appear when the skill library is built from heterogeneous logs rather than a single, high‑capacity teacher.

If the hierarchy can be reproduced for your own workloads, a smaller model can inherit a sizable portion of the expertise typically locked behind larger parameters. Adding a lightweight retrieval layer that queries the SkillKB at inference time may shrink token budgets enough to run on edge hardware, while still delivering success rates that rival bigger counterparts. Before committing to a full model upgrade, consider constructing a pilot skill library from existing logs and measuring both task accuracy and context usage on a representative subset of queries.

References

  1. SkillX: Automatically Constructing Skill Knowledge Bases for Agents