每天早上一封邮件,把昨天的 AI 梳理好订阅邮件

METAL LAB

SkillEvo: Self-Renewing Evolution Gradients from Multi-Turn Interaction Feedback

arXiv:2608.131202026-08-12

让AI客服手册自己修复只有多轮对话才能暴露的问题

AI客服智能体使用的“技能”(Skill,即操作手册模块)通常一次编写完成后就无法从真实的交互失败中学习改进。以往的改进方法只靠单轮问答来评估,结果第一轮修补完明显问题后改进信号就枯竭了。SkillEvo改用多轮模拟对话不断挖出隐藏缺陷,并加入独立的治理层防止手册质量退化,从而让改进持续进行。

他们做了什么

  1. AI客服使用的Skill通常由人工编写或由大模型一次性生成,之后缺乏从真实交互失败中学习改进的闭环。
  2. 以往的改进方法依赖单轮问答评估,第一轮修补完能看到的问题后,改进信号就迅速衰减,后续几乎不再进步。
  3. SkillEvo让模拟用户进行多轮追问,每当手册被改进,对话就能推进得更深,从而暴露出之前被掩盖的新缺陷。
  4. 不再只用简单的通过/不通过打分,而是由独立的治理层诊断并主动修复内容冗余、引用断裂、事实变模糊等结构性问题。
  5. 在腾讯云六大类云服务、9个生产环境Skill、98个参考文件上的测试显示,SkillEvo比基于自我反思的方法高23.0分,比基于单轮问答的方法高15.4分。
Figure 1: The evaluation feedback modality determines the ceiling of skill evolution. Left: single-turn QA patches the gaps visible in the first exchange; the evolution gradient then decays and the TSR curve saturates around round 2. Right: multi-turn interaction keeps exposing latent failures—each round of revision lets the dialogue proceed further and reach the next layer of defects—so the gradient renews itself and TSR keeps climbing.
Figure 1: The evaluation feedback modality determines the ceiling of skill evolution. Left: single-turn QA patches the gaps visible in the first exchange; the evolution gradient then decays and the TSR curve saturates around round 2. Right: multi-turn interaction keeps exposing latent failures—each round of revision lets the dialogue proceed further and reach the next layer of defects—so the gradient renews itself and TSR keeps climbing.
Table 1: Baselines and variants.
MethodSkill source and update mechanismMulti-turnRounds
Original SkillHand-authored initial Skill, never updatedNo0
Self-ReflectionModel self-reflects and edits the Skill directly, no evaluation feedbackNo4
Single-turn QASingle-turn QA evaluation-driven evolution (11)No4
SkillEvoIterative evolution driven by simulated multi-turn interactionYes4
Figure 2: Overview of SkillEvo. The upper layer generates trustworthy feedback to drive revision; the lower layer governs structural degradation so that the knowledge carrier remains intact.
Figure 2: Overview of SkillEvo. The upper layer generates trustworthy feedback to drive revision; the lower layer governs structural degradation so that the knowledge carrier remains intact.
Table 2: Per-round TSR of each method on the evaluation set (%).
MethodInitR1R2R3R4
Original Skill30.0
Self-Reflection30.059.258.757.458.8
Single-turn QA30.058.964.565.766.4
SkillEvo30.059.471.377.981.8
Table 3: Ablation (evaluation-set TSR, %).
VariantOverall TSR
SkillEvo (Full)81.8
(a) Single-turn QA66.4
(b) w/o Governance78.6
Table 4: Dual-sided orthogonal evaluation (%).
Side / propertyMetricValue
Simulator, coveragecU (intent coverage)98.9
Simulator, fidelityρ (human-rated similarity)95.3
Agent, accuracysC (exposed-intent accuracy)71.1
Table 5: Cross-round regression rate RegR (%).
R1→2R2→3R3→4First-to-last change
28.224.421.1−7.1
Table 6: Knowledge bloat (cumulative growth relative to S0, %).
SettingCumulative bloatRemark
With governance (SkillEvo Full)+2.8Growth concentrates in the first round and then tapers off
Without governance+16.2Bloat accumulates round after round with no dissolution mechanism
Table 7: Evaluation scenarios and dataset.
Scenario categorySkillCloud service#Tickets
Marketingdianshi-consultationDianshi campaign platform400
Dev & collaboration toolscode-assistant-consultationCodeBuddy coding assistant400
Storagecos-consultationCloud Object Storage (COS)200
Storagecbs-consultationCloud Block Storage (CBS)160
Dev & collaboration toolscloudbase-consultationCloudBase200
AI & LLM platformstokenhub-consultationTokenHub LLM service platform200
AI & LLM platformstencent-adp-consultationAgent Development Platform (ADP)200
Networking & edgeedgeone-consultationEdgeOne edge security acceleration200
Computescf-consultationServerless Cloud Function (SCF)40
Total9 Skills6 categories2,000
Table 8: Model assignment and evolution parameter configuration.
ComponentParameterValue
Skill Editor (Generator)Model familyA (deepseek-v4-pro)
Verifier / Attributor / User Agent / Governor (Evaluator)Model familyB (minimax-m3)
Evolution loopmax_cycles (full loop rounds)4
Evolution loopmax_iterations (edit iterations per round)3
Evolution loopmax_turns (interaction turns per ticket)10
Evolution loopearly_stop_avg_score70.0
Evolution loopearly_stop_solved_ratio0.7
Evolution looppass_threshold60.0
EvaluationIntent weight α0.7
Signal mergingkeyword_jaccard_threshold0.3

为什么重要

对于客服这类过去依赖人工维护手册的领域,把真实失败自动转化为改进信号能大幅降低维护成本和延迟。该框架已在腾讯云实际生产环境中部署,证明其效果不止停留在实验室阶段。

本文术语

  • Skill(技能) · 封装了领域知识和处理流程的模块,供AI智能体在执行任务时参考
  • 单轮问答评估 · 仅通过一问一答的方式来评判系统表现的方法
  • 多轮交互 · 包含多次往返对话的交互方式,能够揭示更深层次的问题
  • 任务成功率(TSR) · 在全部客服任务中被成功解决的比例
  • 跨轮回归率(RegR) · 指上一轮已解决的问题,在本轮修改后又重新失败的比例

论文原文摘要(英文)

Agent Skills are today either hand-authored or produced in a single LLM generation pass, and consequently possess no closed loop through which they might improve from the interaction failures they actually cause. Recent work does close this loop, but derives its feedback from single-turn question-answering evaluation. The consequence is a sharp asymmetry: once the first round has patched the gaps that a single exchange can reveal, the evolution gradient decays, the defects that surface only across multiple turns remain invisible, and evolution stalls. Governance in these systems is likewise driven by an end-to-end verification score, a scalar gate that can reject a degraded candidate but can neither localize nor repair its structural cause. We argue that the binding constraint on sustained skill evolution is neither editing capability nor the number of iterations, but whether the evaluation feedback keeps supplying trustworthy evolution gradients. We introduce SkillEvo, in which trustworthy feedback generates the gradient and controllable governance constrains its direction. The first component recasts multi-turn user simulation from an evaluation endpoint into a feedback generator: follow-up questions expose defects layer by layer, so that every round of revision both consumes feedback and produces new feedback. The second replaces the passive rejection of a scalar gate with an independent governance layer that actively repairs factual degradation and structural bloat, preventing the gradient from drifting as degradation accumulates. Across six categories of cloud services, 9 production Skills, and 98 skill-reference files, SkillEvo surpasses self-reflection-based evolution by 23.0 points and single- turn-QA-driven evolution by 15.4 points.

作者 · Qianxi Yan

在 arXiv 阅读

最新论文

全部论文 →

METAL LAB 最新报道

图片来源: Qianxi Yan et al., arXiv:2608.13120, CC BY 4.0