The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A single malicious skill can quietly bloat LLM-agent workflows: authors show a publisher-only attack that lures agents into unnecessary skill detours, raising token use by two-thirds and doubling execution time while still returning correct outputs, exposing a new supply-chain governance risk for skill marketplaces.

Convergent Detour Hijacking: Task-Preserving Resource Amplification in Skill-Based LLM Agents
Junliang Liu, Ruoyu Li, Wenxin Tang, Jingyu Xiao, Zhenyu Liu, Jingheng Xu, Laizhong Cui · August 12, 2026
arxiv other medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Junliang Liu unresolved corpus identity
  2. Ruoyu Li unresolved corpus identity
  3. Wenxin Tang unresolved corpus identity
  4. Jingyu Xiao unresolved corpus identity
  5. Zhenyu Liu unresolved corpus identity
  6. Jingheng Xu unresolved corpus identity
  7. Laizhong Cui unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Junliang Liu provider ID
  2. Ruoyu Li provider ID
  3. Wenxin Tang provider ID
  4. Jingyu Xiao provider ID
  5. Zhenyu Liu provider ID
  6. Jingheng Xu provider ID
  7. Laizhong Cui provider ID
The paper introduces Convergent Detour Hijacking (CDH), showing that a single malicious static skill—via a crafted description and a semantically aligned body—can be co-selected and induce bounded but costly detours that increase token consumption (~67%) and latency (~92%) while keeping task completion rates similar.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

LLM agents increasingly rely on third-party skills, using natural-language descriptions for selection and instruction bodies for planning. This progressive-disclosure design exposes two sequential control points to untrusted publishers: a static skill may steer an otherwise correct task onto an unnecessarily costly trajectory. Prior work studies selection manipulation, malicious skill instructions, and tool-chain resource amplification largely separately, leaving their end-to-end composition unclear. We introduce Convergent Detour Hijacking (CDH), a text-only, runtime-independent attack that couples these stages. Under shared semantic cover, a description establishes relevance during selection, while an aligned body reuses that rationale to fabricate plausible dependencies during planning. CDH attracts an attacker-controlled coordinator alongside legitimate skills, recruits unnecessary benign skills into a bounded detour, and then re-enters the original route to preserve task completion. We evaluate it across multiple LLM backends and 491 held-out tasks under single-task and multi-turn conditions. On DeepSeek-V4-Pro, the matched coordinator is selected in 80.02% of tasks; among coordinator-hit runs that complete tasks, token consumption and end-to-end execution time increase by 66.91% and 92.45%, respectively, while aggregate task completion remains comparable. Thus, correct outcomes do not guarantee trajectory integrity or cost safety.

Summary

Main Finding

The paper identifies and demonstrates Convergent Detour Hijacking (CDH), a publisher-only supply-chain attack on skill-based LLM agents that uses only natural-language metadata and a static skill body to (1) get a malicious coordinator skill co-selected alongside legitimate skills, (2) recruit benign native skills into a short, plausible detour during planning, and (3) re-enter the original route so the final task output remains correct. On DeepSeek-V4-Pro, the matched coordinator was selected in 80.02% of held-out tasks; for coordinator-hit runs that still completed the task, token consumption rose by 66.91% and end-to-end execution time rose by 92.45%, while aggregate task completion rates remained comparable. Thus correct outcomes can mask materially less-efficient, costlier execution trajectories.

Key Points

  • Attack model
    • Attacker publishes a single static skill (coordinator) consisting of visible metadata/description and a hidden instruction body.
    • No access to model internals, runtime tool responses, execution state, or post-publication interaction.
    • Attack is text-only, runtime-independent, and uses progressive-disclosure platforms where metadata drives selection and bodies are loaded on demand.
  • Attack pattern (attract–detour–converge)
    • Attract: a pilot-guided description establishes relevance so the coordinator is co-selected (but does not replace native skills).
    • Detour: the coordinator’s body contains bounded, planner-facing runbook rules that fabricate plausible prerequisites/verification steps, recruiting extra benign skills.
    • Converge: a return rule releases control back to the normal planner so the original task completes correctly.
  • Formal definition
    • CDH on task x requires: coordinator selected; all skills used in the clean run are retained in the attacked run; at least one additional native skill is invoked in the attacked run; and both runs successfully complete the task.
  • Effectiveness and costs
    • High coordinator activation rate (80.02% on one backend) and substantial resource amplification (≈67% more tokens, ≈92% more latency) for coordinator-hit, task-completing runs.
    • Aggregate task completion remains similar, demonstrating that correctness alone is an insufficient indicator of resource-safety or trajectory necessity.
  • Construction and constraints
    • The coordinator is deliberately designed to be non-replacing and bounded (limits on auxiliary invocations, single verification revisit, termination rule).
    • The attack purposely avoids executable payloads or runtime control, relying instead on semantic framing across selection and planning.

Data & Methods

  • Platform and registry
    • Used OpenClaw default registry of 53 skills; extracted front-matter metadata (SKILL.md descriptions) as visible routing metadata.
    • Clustered skills via normalized TF–IDF features into nine functional groups to produce plausible multi-skill workflows.
  • Benchmark
    • Generated 536 multi-skill tasks (via GPT-5.5), each task annotated with its gold skill set and relevance; split into 45 pilot tasks (5 per group) for description development and 491 held-out tasks for final evaluation.
    • Also evaluated on 30 independently authored tasks for additional generalization checks.
  • Coordinator design pipeline
    • Shared coordination rationale ρg per functional group: target concepts (Tg), coordinator role (cg), plausible inter-skill relations (Lg), and non-replacement/return clause (qg).
    • Description optimization: black-box, pilot-guided generate–evaluate–retain loop to maximize coordinator co-selection on pilot tasks while preserving non-replacement.
    • Body (runbook) construction: instantiate Lg as bounded prerequisite/verification rules with Πg (path), Jg (omission consequences), Vg (verifications), Bg (per-skill/total bounds), and Rg (return rule) to ensure bounded detours and eventual re-entry.
  • Evaluation protocol
    • Paired clean–injected executions comparing trajectories under S0 and S0 ∪ {h}.
    • Measured: coordinator activation/selection, task completion, skill invocations, token consumption, cached context growth, and wall-clock time.
    • Tested across multiple LLM backends and under single-task and multi-turn conditions; performed component ablations to isolate description vs. body roles.
  • Quantitative highlights (reported)
    • Coordinator selected in 80.02% of held-out tasks on DeepSeek-V4-Pro.
    • For coordinator-hit runs that still completed tasks: token consumption +66.91%, end-to-end latency +92.45%.
    • Aggregate task completion remained comparable between clean and attacked runs.
  • Threat model limits
    • Single static coordinator per group, fixed at publication time; no runtime adaption, no control over tool responses, no modification of other skills or infrastructure.

Implications for AI Economics

  • Hidden resource externalities and cost inflation
    • CDH shows that marketplace publishers can increase per-request compute/token/latency costs while preserving correctness. This imposes hidden externalities on platform infrastructure and downstream payers (users, enterprises) because billing commonly depends on tokens or runtime.
    • Amplified execution length and wall-clock time translate into higher marginal costs for providers (compute, bandwidth, concurrent execution capacity) and higher bills for end users. Widespread occurrence could materially raise operating costs or required prices.
  • Incentive misalignment in skill marketplaces
    • Current marketplace incentives reward capability exposure; without safeguards, publishers can profit indirectly (e.g., provider-level revenue sharing tied to invocations or platform-reported metrics) by designing skills that attract selection and drive additional invocations.
    • Publishers face low direct cost to publish text-only skills but can cause outsized resource consumption, suggesting moral hazard and the need for economic mechanisms (penalties, bonds, or reputational costs) to deter such behavior.
  • Measurement and billing design
    • Correctness-based metrics are insufficient. Platforms should incorporate trajectory- and resource-based audits into pricing and reputation systems (e.g., flagging large unexplained token/skill invocation deltas relative to typical clean trajectories).
    • New billing primitives could charge not just for tokens but for "trajectory inefficiency" or auxiliary-skill usage, or alternatively require publishers to underwrite resource impacts (security bonds, escrow).
  • Marketplace governance and regulatory considerations
    • Platforms should strengthen provenance, metadata vetting, and runtime monitoring to detect coordinated detours. Economically, this could mean higher onboarding costs, certification fees, or specialized review tiers for high-impact skill categories.
    • Regulators and platform operators may need to treat such supply-chain semantic manipulations as a distinct risk class with disclosure or auditing requirements—especially in high-stakes enterprise use where hidden amplification can produce significant cost and availability impacts.
  • Defense and mitigation as economic mechanisms
    • Preventive measures (stricter description-body consistency checks, attestation of non-amplifying behaviors) and detection tools (trajectory baselining, anomaly scoring) impose engineering costs but can be economically justified by reduced unexpected compute/latency load and improved marketplace trust.
    • Incentivize benign behavior via rewards (preferred placement, lower fees) for publishers who pass audits or provide compact, non-amplifying metadata; penalize or delist publishers whose skills consistently cause excessive detours.
  • Research and market implications
    • Platforms and researchers should quantify the aggregate economic impact: expected increase in compute/token costs under various adoption scenarios, the equilibrium response of publishers, and optimal design of marketplace fees/penalties.
    • Future marketplaces may need richer contracts (SLAs, insurance, liability rules) that internalize the cost of semantic supply-chain attacks rather than leaving them as externalities.

If you want, I can: - Extract the precise experimental setup (LLM backends evaluated, ablation results, or the full runbook templates) from the supplementary material and add them to the Data & Methods section, or - Produce a short checklist of actionable marketplace mitigations prioritized by cost-effectiveness.

Assessment

Paper Typeother Evidence Strengthmedium — The paper provides systematic, empirical evidence: a held-out benchmark (491 tasks), pilot/held-out separation, multiple LLM backends, and component ablations that show the attack (CDH) reliably increases token use, invocations, and latency while preserving task completion. However, the evaluation is platform- and dataset-specific (OpenClaw registry, 53 skills) and heavily depends on synthetic task generation and router behavior, limiting external validity. Methods Rigorhigh — The authors formalize a threat and execution model, define CDH precisely using paired clean vs injected runs, construct a pilot-held-out evaluation pipeline, optimize descriptions with pilot feedback while keeping held-out tasks blind, and run ablations and multiple backends; remaining weaknesses are platform specificity, LLM-generated tasks, and lack of live/production deployments. SampleEvaluation uses OpenClaw's default registry of 53 skills clustered into 9 functional groups; authors generate 536 multi-skill tasks with GPT-5.5, reserve 45 pilot tasks for description development, and use 491 held-out tasks for final evaluation; additional 30 independently authored tasks test generalization; metrics include coordinator selection/activation, task completion, skill invocations, token consumption, cached context, and wall-clock time across multiple LLM backends. Themesgovernance productivity GeneralizabilityPlatform-specific: evaluated on OpenClaw registry and its router/planner; other agent platforms may behave differently., Synthetic task generation: many tasks were produced by GPT-5.5 which may not reflect real-world user queries or distributions., Registry composition: results depend on the particular 53-skill set and nine-group clustering; different skill libraries could reduce or amplify effects., Router/planner heterogeneity: attack success depends on router selection and planner behavior which vary across deployments and model versions., No real-world deployment: not tested in live marketplaces, where governance, vetting, or telemetry could detect or mitigate CDH.

Claims (11)

ClaimDirectionOutcomeConfidence & EvidenceDetails
On DeepSeek-V4-Pro, the matched CDH coordinator was selected in 80.02% of held-out tasks. Adoption Rate positive Coordinator selection rate
Reading fidelity high
Study strength medium
n=491
80.02%
0.12
Among coordinator-hit runs that complete the task, CDH increases token consumption by 66.91% relative to the clean execution. Organizational Efficiency positive Token consumption
Reading fidelity high
Study strength medium
n=491
66.91%
0.12
Among coordinator-hit runs that complete the task, CDH increases end-to-end execution time by 92.45% relative to the clean execution. Task Completion Time positive End-to-end execution time
Reading fidelity high
Study strength medium
n=491
92.45%
0.12
Aggregate task completion remains comparable between clean and CDH-injected executions. Task Completion Time null_result Task completion
Reading fidelity high
Study strength medium
n=491
0.12
CDH is designed to preserve the original task outcome while adding unnecessary native-skill work to the execution trajectory. Task Allocation mixed Task completion and native-skill invocation trajectory
Reading fidelity high
Study strength medium
not reported
0.12
The attack uses one static, publisher-controlled natural-language skill and does not require executable payloads, model-internal access, runtime-response control, or post-publication interaction. Ai Safety And Ethics positive Attack capability scope
Reading fidelity high
Study strength high
not reported
0.2
The evaluation benchmark contains 536 multi-skill tasks across nine functional groups, with 45 pilot tasks reserved for development and 491 tasks held out for final evaluation. Other positive Benchmark coverage and evaluation sample
Reading fidelity high
Study strength high
n=536
491 held-out tasks; 45 pilot tasks
0.2
The benchmark is based on the 53 skills in OpenClaw’s default registry. Adoption Rate positive Skill-registry evaluation coverage
Reading fidelity high
Study strength high
n=53
53 skills
0.2
The coordinator description is optimized using black-box pilot feedback for coordinator selection, while the body is constructed from the same shared coordination rationale to induce bounded planning detours. Task Allocation positive Coordinator activation and task trajectory
Reading fidelity high
Study strength medium
n=45
0.12
The final coordinator descriptions are selected using pilot activation feedback without using task-completion, trajectory, token, or latency feedback. Adoption Rate positive Coordinator activation rate
Reading fidelity high
Study strength high
n=45
0.2
The CDH runbook bounds auxiliary invocations and prohibits restarting the same detour after returning control to ordinary planning. Organizational Efficiency positive Boundedness of auxiliary skill execution
Reading fidelity high
Study strength high
not reported
0.2

Notes