One email each morning — yesterday's AI, sortedGet it in your inbox

METAL LAB

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

arXiv:2608.131202026-08-12

Making AI support manuals fix the mistakes that only show up after several back-and-forth exchanges

AI customer-support agents rely on 'Skills'—manual-like knowledge modules—that are usually written once and never improve from the real failures they cause. Prior methods evaluated with a single question-and-answer exchange, so improvement stalled after the first couple of rounds. SkillEvo instead uses multi-turn simulated conversations to keep uncovering hidden defects and adds a separate governance layer to stop the manual from degrading, letting improvement continue steadily.

What they did

  1. AI support Skills are typically hand-written or generated once by an LLM and then left with no way to learn from the real interaction failures they cause.
  2. Earlier improvement methods judged quality with a single question-and-answer round, so once the visible gaps were patched in the first round, the improvement signal died out.
  3. SkillEvo has a simulated user ask follow-up questions across multiple turns, so each time the Skill improves, the dialogue goes deeper and exposes new defects that were previously hidden.
  4. Instead of a simple pass/fail score, an independent governance layer diagnoses and actively repairs problems like bloated content, broken references, and facts that have become too vague.
  5. Tested across six categories of cloud services, 9 production Skills, and 98 reference files at Tencent Cloud, SkillEvo outperformed self-reflection-based methods by 23.0 points and single-turn-QA-based methods by 15.4 points.
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

Why it matters

For domains like customer support where manuals had to be maintained by hand, automatically turning real failures into improvement signals can cut maintenance cost and delay significantly. It was also deployed in Tencent Cloud's actual production environment, showing this is validated beyond a lab setting.

Terms in this paper

  • Skill · A knowledge module encapsulating domain procedures that an AI agent uses to handle tasks
  • single-turn QA evaluation · Judging performance based on just one question-and-answer exchange
  • multi-turn interaction · A conversation with several rounds of back-and-forth exchange, capable of revealing deeper issues
  • TSR (Task Success Rate) · The fraction of support tasks successfully resolved
  • regression rate (RegR) · The rate at which previously solved problems fail again after a new revision

Original abstract (English)

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.

Authors · Qianxi Yan

Read on arXiv

Latest papers

All papers →

Latest from METAL LAB

Figures: Qianxi Yan et al., arXiv:2608.13120, CC BY 4.0