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
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.
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.
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.
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.
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.
Table 1: Baselines and variants.
Method
Skill source and update mechanism
Multi-turn
Rounds
Original Skill
Hand-authored initial Skill, never updated
No
0
Self-Reflection
Model self-reflects and edits the Skill directly, no evaluation feedback
No
4
Single-turn QA
Single-turn QA evaluation-driven evolution (11)
No
4
SkillEvo
Iterative evolution driven by simulated multi-turn interaction
Yes
4
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 (%).
Method
Init
R1
R2
R3
R4
Original Skill
30.0
—
—
—
—
Self-Reflection
30.0
59.2
58.7
57.4
58.8
Single-turn QA
30.0
58.9
64.5
65.7
66.4
SkillEvo
30.0
59.4
71.3
77.9
81.8
Table 3: Ablation (evaluation-set TSR, %).
Variant
Overall TSR
SkillEvo (Full)
81.8
(a) Single-turn QA
66.4
(b) w/o Governance
78.6
Table 4: Dual-sided orthogonal evaluation (%).
Side / property
Metric
Value
Simulator, coverage
cU (intent coverage)
98.9
Simulator, fidelity
ρ (human-rated similarity)
95.3
Agent, accuracy
sC (exposed-intent accuracy)
71.1
Table 5: Cross-round regression rate RegR (%).
R1→2
R2→3
R3→4
First-to-last change
28.2
24.4
21.1
−7.1
Table 6: Knowledge bloat (cumulative growth relative to S0, %).
Setting
Cumulative bloat
Remark
With governance (SkillEvo Full)
+2.8
Growth concentrates in the first round and then tapers off
Without governance
+16.2
Bloat accumulates round after round with no dissolution mechanism
Table 7: Evaluation scenarios and dataset.
Scenario category
Skill
Cloud service
#Tickets
Marketing
dianshi-consultation
Dianshi campaign platform
400
Dev & collaboration tools
code-assistant-consultation
CodeBuddy coding assistant
400
Storage
cos-consultation
Cloud Object Storage (COS)
200
Storage
cbs-consultation
Cloud Block Storage (CBS)
160
Dev & collaboration tools
cloudbase-consultation
CloudBase
200
AI & LLM platforms
tokenhub-consultation
TokenHub LLM service platform
200
AI & LLM platforms
tencent-adp-consultation
Agent Development Platform (ADP)
200
Networking & edge
edgeone-consultation
EdgeOne edge security acceleration
200
Compute
scf-consultation
Serverless Cloud Function (SCF)
40
Total
9 Skills
6 categories
2,000
Table 8: Model assignment and evolution parameter configuration.
Component
Parameter
Value
Skill Editor (Generator)
Model family
A (deepseek-v4-pro)
Verifier / Attributor / User Agent / Governor (Evaluator)
Model family
B (minimax-m3)
Evolution loop
max_cycles (full loop rounds)
4
Evolution loop
max_iterations (edit iterations per round)
3
Evolution loop
max_turns (interaction turns per ticket)
10
Evolution loop
early_stop_avg_score
70.0
Evolution loop
early_stop_solved_ratio
0.7
Evolution loop
pass_threshold
60.0
Evaluation
Intent weight α
0.7
Signal merging
keyword_jaccard_threshold
0.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.