ConceptioArchivearXiv CS
arXiv CSopen access

When Skills Don't Help: A Negative Result on Procedural Knowledge for Tool-Grounded Agents in Offensive Cybersecurity

2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
knowledgerepresentationreasoning
artificial intelligence, reasoning, knowledge representation

When Skills Don’t Help: A Negative Result on Procedural Knowledge for Tool-Grounded Agents in Offensive Cybersecurity Position Short Paper Samuel Jacob Chacko

James Hugglestone

Florida State University Tallahassee, Florida, USA [email protected]

Florida State University Tallahassee, Florida, USA [email protected]

arXiv:2605.20023v1 [cs.AI] 19 May 2026

Chashi Mahiul Islam

Xiuwen Liu

Florida State University Tallahassee, Florida, USA [email protected]

Florida State University Tallahassee, Florida, USA [email protected]

Abstract

1

Agent Skills, structured packages of procedural knowledge loaded into an LLM agent at inference time, are widely reported to improve task pass rates by an average of 16.2 percentage points across diverse domains. Yet the same benchmarks show wide variance, with 16 of 84 tasks suffering negative deltas when Skills are introduced. The community has not yet articulated a clean mechanism for when Skills help and when they are merely redundant overhead. We re-analyze a recently published 180-run controlled study of an MCP-grounded autonomous Capture-the-Flag (CTF) agent under four documentation conditions of increasing richness (55, 1,478, 1,976, and 4,147 lines), and show that these conditions correspond almost exactly to a No-Skills, Experiential-Skills, Curated-Skills, and Comprehensive-Skills ablation. In offensive cybersecurity, a domain not deeply covered by existing Skills benchmarks, the marginal benefit of Skills collapses. The spread between the no-Skills and full-Skills conditions is only 8.9 pp (𝑝 = 0.71, 𝜒 2 ; 𝑝 = 0.25, Cochran–Armitage trend test; five of six pairwise Cohen’s ℎ values fall below the 0.2 small-effect threshold). We argue that the missing variable is environment-feedback bandwidth. When an agent’s tool layer returns strict, schema-validated, low-latency observations, the environment itself supplies the procedural correction signal that Skills are normally needed to provide. As a result, the marginal benefit of curated Skills diminishes substantially, and, in some cases (e.g., our timing side-channel setting), actively degrades performance. We articulate a falsifiable hypothesis, sketch its design implications for compound AI systems, and will release the reanalysis pipeline to support replication.

Agent Skills [1, 3] have emerged as a unifying abstraction for the procedural knowledge that LLM agents consult at inference time. A Skill is a folder containing a SKILL.md file with metadata and instructions, optionally bundled with scripts and references, that an agent loads on demand. The format was released as an open standard in late 2025 and has since been adopted across more than thirty agent platforms [6], with community marketplaces hosting tens of thousands of community-authored Skills. The premise is intuitive: foundation models supply broad capability, and Skills supply the domain-specific recipes the model otherwise lacks. The first systematic empirical evidence on whether Skills work at scale arrived with SkillsBench [7], a benchmark of 84 tasks across 11 domains, evaluated across 7 agent–model configurations and 7,308 trajectories. Two findings define the current state of the field. First, curated Skills add a substantial average of +16.2 percentage points (pp) to pass rates. Second, that average hides extreme variance: domain effects range from +51.9 pp (healthcare) down to +4.5 pp (software engineering), and 16 of 84 individual tasks show negative deltas when Skills are provided. The authors of SkillsBench are explicit that the field lacks a mechanistic account of when Skills help, when they are inert, and when they degrade performance. This paper offers one such account, grounded in a re-analysis of a recently published 180-run controlled study of an autonomous CTF agent [2] that was designed and run before the SKILL.md specification was published, but whose four documentation conditions correspond, structurally and operationally, to a clean Skills ablation. The agent is built on the Model Context Protocol MCP) [4], a schema-validated tool interface that returns strictly typed observations from a containerized arsenal of reverse-engineering, web exploitation, and binary-analysis tools. This schema-enforcement principle is analogous to grammar-constrained decoding [5], which has been shown to substantially reduce hallucinated outputs in structured prediction. We argue that this MCP-grounded execution stack is the moderating variable that has been missing from Skills evaluation: rich, deterministic, low-latency tool feedback substitutes for a substantial fraction of the procedural guidance that curated Skills are normally needed to supply. We make three contributions:

CCS Concepts • Computing methodologies → Artificial intelligence; Planning under uncertainty; • Security and privacy → Vulnerability management.

Keywords Agent Skills, procedural knowledge, LLM agents, evaluation, Model Context Protocol, capture-the-flag, negative results

Introduction

Agent Skills ’26, May 26, 2026, San Jose, CA, USA

• A new domain entry. We extend the empirical landscape of Skills evaluation into offensive cybersecurity (binary exploitation, web exploitation, reverse engineering, cryptography), a domain underrepresented in current Skills benchmarks. Our re-analysis covers 180 trajectories across 15 challenges and a four-level documentation ablation. • A negative result. On this domain, structured procedural knowledge, spanning attack templates, distilled lessons, and a comprehensive Skills bundle, adds at most +8.9 pp over an MCP-only baseline. None of the differences reach statistical significance (𝑝 = 0.71, 𝜒 2 ; 𝑝 = 0.25, Cochran–Armitage trend test; five of six pairwise Cohen’s ℎ values fall below the 0.2 small-effect threshold, with No-Skills vs. Comprehensive at ℎ = 0.23). The Comprehensive-Skills condition is even outperformed by a Curated-Skills condition on at least one challenge class. • The feedback-bandwidth hypothesis. We articulate a falsifiable mechanistic hypothesis: the marginal benefit of Skills is inversely related to the bandwidth of deterministic environment feedback available to the agent. We sketch the implications for compound AI system design and propose a concrete experimental program to test the hypothesis at scale. The paper proceeds as follows. Section 2 positions the four documentation conditions of the source study as a Skills ablation. Section 3 presents the re-analyzed numbers, including a case-study where the Comprehensive-Skills condition underperforms a narrower Curated-Skills condition. Section 4 articulates the feedbackbandwidth hypothesis and its testable predictions. Section 5 situates the result in the Skills literature and draws implications for practitioners building MCP-grounded agents. Section 6 addresses limitations.

2

Reframing the Study as a Skills Ablation

The source study [2] evaluated an MCP-grounded LLM agent on 15 CTF challenges (memory corruption, reverse engineering, web exploitation, cryptography) under four conditions defined by the type and volume of context-attached procedural documentation. Each condition was run on every challenge with three independent trials, yielding 15 × 4 × 3 = 180 trajectories. The model (Claude Sonnet 4.5 with extended thinking) and the tool layer (Nmap, Ghidra, Angr, GDB, exposed via MCP servers with strict JSON-schema validation) were held constant; only the procedural documentation varied. Importantly, each challenge is a long-horizon task [8] that requires sequential tool invocation, hypothesis revision, and multi-phase exploitation. Trajectories average 17–20 minutes per run, making 15 challenges a substantive evaluation despite the modest count. We map these conditions onto the standard Skills taxonomy: • No-Skills (Minimal, 55 lines). Only MCP server definitions and tool schemas. No SKILL.md-like procedural guidance. This is the No-Skills condition in the SkillsBench taxonomy [7]. • Experiential-Skills (Lessons, 1,478 lines). Lessons distilled from prior debugging sessions (heap exploitation pitfalls, web-framework patterns, etc.) plus a triage classifier.

S. J. Chacko et al.

Structurally, this is a self-distilled, trajectory-mined Skills bundle, procedural knowledge after the fact. • Curated-Skills (Templates, 1,976 lines). A structured multi-phase solving protocol with attack templates indexed by vulnerability type. This is the Curated-Skills condition: focused, human-authored procedural knowledge with explicit applicability conditions and parameterized action sequences, exactly what the SKILL.md specification anticipates. • Comprehensive-Skills (Baseline, 4,147 lines). The union of Experiential and Curated, plus the full triage tool. This is the current best-practice “everything we have” Skills configuration. The framing is exact, not metaphorical. Each condition is a different Skills augmentation, layered over an identical model and tool stack. The Minimal condition is the No-Skills control; the others vary the type and volume of procedural knowledge supplied at task initialization. Reframed this way, the study is, to our knowledge, the largest controlled Skills ablation in offensive cybersecurity to date, and the only one whose underlying environment is fully MCP-grounded.

3

Results

Table 1 reports task pass rates and mean solve times under each Skills condition, alongside SkillsBench’s reported domain-wise gains for context. Table 1: Pass rates and mean solve times across Skills conditions on the 15-challenge offensive-security benchmark (3 trials per challenge per condition; 180 runs total). Δ vs. No-Skills shown in pp. For reference, SkillsBench [7] reports per-domain Δ ranging from +4.5 pp (software engineering) to +51.9 pp (healthcare), with an aggregate of +16.2 pp. Condition

Lines

Pass Rate

Δ (pp)

Mean Time

No-Skills (Minimal) Experiential (Lessons) Curated (Templates) Comprehensive (Baseline)

55 1,478 1,976 4,147

77.8% (35/45) 82.2% (37/45) 84.4% (38/45) 86.7% (39/45)

– +4.4 +6.6 +8.9

20.1 min 19.1 min 18.5 min 17.1 min

Headline number. The Comprehensive-Skills condition adds +8.9 pp over the No-Skills baseline. This is well below the SkillsBench crossdomain average of +16.2 pp, and within the range of its softwareengineering domain (+4.5 pp) on a per-trial basis once trial-level variance is accounted for. Figure 1 places this result in context alongside selected SkillsBench domain gains. Statistical significance. A 𝜒 2 test of independence on the 4×2 outcome table (condition × success/failure) returns 𝑝 = 0.71, far above any conventional threshold. Recognizing the natural ordering of conditions by procedural-content volume, a Cochran–Armitage trend test yields 𝑍 = 1.15, 𝑝 = 0.25—directionally consistent with a monotonic effect but well short of significance at this sample size. A Kruskal–Wallis test on the solve-duration distributions returns 𝑝 = 0.77. Pairwise Cohen’s ℎ values (the appropriate effect size for proportions) range from 0.06 to 0.23; five of six pairwise comparisons fall below the conventional 0.2 small-effect threshold, with

When Skills Don’t Help

Agent Skills ’26, May 26, 2026, San Jose, CA, USA

only No-Skills vs. Comprehensive (ℎ = 0.23) at the boundary of a small effect. Under any reasonable inferential standard, Skills did not significantly improve performance in this study. The non-monotonicity case. On the timing-side-channel sub-task, the rich-Skills conditions did not dominate the focused ones. The Comprehensive-Skills condition succeeded on 1 of 3 trials (33%); the Curated-Skills condition succeeded on 2 of 3 (67%); the No-Skills condition failed all 3 (0%). Trajectory inspection in the source study indicates that the additional procedural content in Comprehensive (the experiential lessons) biased the agent toward symbolic execution. The source study [2] characterizes this as false lesson propagation, where the agent encodes a spurious causal lesson from a small number of prior trajectories and applies it in an inappropriate context. In this case, the transferred technique is not suited to side-channel attacks and is notably absent from the narrower Templates condition. This aligns with the “negative-delta” phenomenon SkillsBench reports for 16 of 84 of its tasks [7]: more procedural knowledge can reduce performance when it crowds out the right move. Token economy. The Comprehensive-Skills condition consumed roughly 75× more procedural-context tokens than the No-Skills condition (4,147 vs. 55 lines, with similar relative cost in tokens) for a non-significant +8.9 pp gain. Crucially, the practical argument does not depend on statistical significance: even accepting the observed +8.9 pp at face value, the 75× token overhead makes the No-Skills condition the rational engineering choice in this domain. Under any cost-aware deployment metric, the No-Skills condition is on the Pareto frontier.

4

The Feedback-Bandwidth Hypothesis

We propose the following hypothesis as an explanation: H1 (Feedback-Bandwidth). The marginal benefit of curated Agent Skills is inversely related to the bandwidth of deterministic environment feedback available to the agent during task execution. In environments with high feedback bandwidth, the environment itself supplies the procedural correction signal that Skills normally provide, and the marginal benefit of curated Skills diminishes substantially, potentially to within statistical noise. Operationalization. We define an environment’s feedback bandwidth along three axes: (i) determinism, whether identical actions yield identical observations; (ii) schema fidelity, whether observations are typed and structured rather than unstructured natural language; and (iii) latency, whether feedback arrives in a timescale that permits in-task corrective replanning. CTF challenges mediated through MCP score high on all three [5]: nmap returns typed port lists, gdb inspect_heap returns structured JSON, and exploit attempts succeed or fail against a binary verifier (the flag) within seconds. By contrast, the SkillsBench domains where Skills are most beneficial, healthcare (+51.9 pp), manufacturing (+41.9 pp) [7], are precisely those where the “environment” is brittle, partially observable formats with weak, delayed, or absent corrective feedback. Predictions. H1 makes three testable predictions.

Figure 1: Skills gain (pp above no-Skills baseline) by condition. Blue bars: this study’s four documentation conditions on the 15-challenge offensive-security benchmark (𝑝 = 0.71, 𝜒 2 ; 𝑝 = 0.25, Cochran–Armitage trend test; five of six pairwise Cohen’s ℎ values below 0.2). Green bars: selected SkillsBench domain gains for reference [7] (HC = Healthcare +51.9 pp; MF = Manufacturing +41.9 pp; Avg = cross-domain mean +16.2 pp; SE = Software Engineering +4.5 pp). Our Comprehensive condition (+8.9 pp) sits within the range of SkillsBench’s lowest-gain domain and well below the cross-domain average, consistent with the feedback-bandwidth hypothesis (Section 4).

• P1: Within a fixed domain, lowering feedback bandwidth (e.g., replacing schema-validated tool returns with raw shell output) should increase the marginal benefit of Skills. • P2: Within a fixed environment, tasks whose verifiers are dense and immediate should show smaller Skills deltas than tasks whose verifiers are sparse and delayed. • P3: Adding procedural knowledge that contradicts environment feedback should produce negative deltas, while adding procedural knowledge that the environment cannot supply (e.g., domain conventions) should produce positive deltas, even within the same task suite. None of these predictions are tested by existing Skills benchmarks; all are tractable in 2026 with current agent harnesses [7]. Design Implications. If H1 holds, the practitioner advice flips. The current implicit recommendation in the Skills literature is “invest in curated Skills first, since they yield ∼ 16 pp.” Under H1, the recommendation becomes domain-conditional: if your environment can support rich, deterministic, low-latency tool feedback (a strong MCP implementation, structured tool outputs, fast verifiers), invest there first; Skills are a smaller follow-on lever. If the environment cannot support this, then in domains like healthcare, document workflows, and multi-system enterprise tasks, curated Skills become the dominant lever. This reframes Skills from a universally beneficial layer into a compensatory layer whose value is determined by the environment it sits over.

Agent Skills ’26, May 26, 2026, San Jose, CA, USA

5

Discussion

S. J. Chacko et al.

7

Conclusion

Relation to SkillsBench. Our result complements rather than contradicts SkillsBench [7]. SkillsBench reports a positive aggregate effect across 11 domains and acknowledges a long tail of domains and tasks where Skills are inert or harmful. We supply the missing end of the distribution: a high-feedback-bandwidth domain where the effect collapses to non-significance, and a candidate mechanism for the long-tail heterogeneity. The two findings together suggest a research program in which the Skills benefit is decomposed by environment-feedback profile, rather than reported as a single domain-level number.

We re-analyzed a 180-run controlled study of an MCP-grounded autonomous CTF agent as a four-level Skills ablation, and reported a negative result: +8.9 pp marginal benefit, not statistically significant. We proposed the feedback-bandwidth hypothesis as the missing moderator that explains the wide variance in Skills efficacy across domains, and articulated three testable predictions. The result repositions Agent Skills from a universally beneficial procedural-knowledge layer into a compensatory layer whose value is determined by the bandwidth of the environment feedback it sits over.

Relation to self-generated Skills. SkillsBench also reports that self-generated Skills produce no net benefit (−1.3 pp on average). Our Experiential condition is structurally analogous: procedural knowledge is distilled post hoc from prior trajectories rather than authored upfront, and it shows a similarly small absolute effect (+4.4 pp, not significant). This is consistent with the broader observation that LLM-authored procedural knowledge provides weaker grounding than direct environmental feedback.

References

Implications for compound AI systems. This result directly bears on the compound AI systems research community’s emphasis on architectural patterns and composition. A Skills layer is one composable component among several (retrieval, tools, verifiers, memory). Our analysis suggests that the marginal value of each component is not independent: a strong tool-grounding layer reduces the marginal value of Skills, and presumably vice versa. Compound-system designers should therefore make these substitution effects explicit in their architectural choices, rather than adding components in additive isolation.

6

Limitations and Future Work

The source study has 𝑁 = 15 challenges, each a multi-phase, longhorizon task averaging 17–20 minutes per run, with three independent trials per condition and a single backbone model. The non-significance result is therefore as much a reflection of statistical power as of effect-size collapse, and we do not claim a causal demonstration of zero effect. What we claim is that any effect in this domain is small enough that a 180-run controlled study cannot distinguish it from noise, a striking contrast to the high-powerdetected effects in SkillsBench’s healthcare and manufacturing domains. A direct test of H1 would require a SkillsBench-Cyber extension: a larger, verifier-equipped task suite spanning offensive and defensive cybersecurity, evaluated under a 2 × 𝐾 design that crosses feedback-bandwidth (high MCP-grounding vs. raw-shell) with Skills condition. We are working toward such an extension and will release our re-analysis pipeline (scripts, tabulated outcomes, condition mappings) to invite collaboration. Additionally, the study uses a single backbone model (Claude Sonnet 4.5); extending the ablation to newer frontier and opensource models (e.g., Llama, Mistral, Qwen) will clarify whether the feedback-bandwidth effect is model-family-invariant or depends on instruction-following fidelity.

[1] Agent Skills Working Group. 2026. Agent Skills Specification. https://agentskills. io/specification. Accessed April 2026. [2] Anonymous. 2026. [Citation withheld for double-blind review; full reference will be restored in camera-ready.]. Recently published study of an MCP-grounded autonomous CTF agent; available on arXiv. [3] Anthropic. 2025. Agent Skills Overview. https://platform.claude.com/docs/en/ agents-and-tools/agent-skills/overview. Accessed April 2026. [4] Anthropic. 2025. Model Context Protocol. https://modelcontextprotocol.io. Accessed April 2026. [5] Saibo Geng, Martin Josifoski, Maxime Peyrard, and Robert West. 2023. Grammarconstrained decoding for structured NLP tasks without finetuning. In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing. 10932– 10952. [6] Yanna Jiang, Delong Li, Haiyu Deng, Baihe Ma, Xu Wang, Qin Wang, and Guangsheng Yu. 2026. SoK: Agentic Skills–Beyond Tool Use in LLM Agents. arXiv preprint arXiv:2602.20867 (2026). [7] Xiangyi Li, Wenbo Chen, Yimin Liu, Shenghan Zheng, Xiaokun Chen, Yifeng He, Yubo Li, Bingran You, Haotian Shen, Jiankai Sun, et al. 2026. SkillsBench: Benchmarking how well agent skills work across diverse tasks. arXiv preprint arXiv:2602.12670 (2026). [8] Nelson F Liu, Kevin Lin, John Hewitt, Ashwin Paranjape, Michele Bevilacqua, Fabio Petroni, and Percy Liang. 2024. Lost in the middle: How language models use long contexts. Transactions of the association for computational linguistics 12 (2024), 157–173.

Record · ID 204829 · SHA-256 273a93700eea1742
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.