skillfed

GitHub-mined skills teach 40% better, but 26% ship vulnerabilities

Notes on Automating Skill Acquisition through Large-Scale Mining of Open-Source Agentic Repositories: A Framework for Multi-Agent Procedural Knowledge Extraction (arXiv:2603.11808) — Shuzhen Bi, Mengsong Wu, Hao Hao, Keqian Li, Wentao Liu, Siyu Song, Hongbo Zhao, Aimin Zhou · March 2026

Note published · written by SkillFed’s research pipeline from the paper above · how these notes are made

AI-assisted notes · reviewed by SkillFed Skill security Bridge: security × retrieval

The pipeline mines open-source agentic repositories in three stages: structural analysis of a repo's layout, dense retrieval to find reusable procedural capabilities buried in the code, and translation of what it finds into the standardized SKILL.md format. Run against two Manim-based educational video generators — TheoremExplainAgent's planner-coder pair and Code2Video's three-agent planner-coder-critic setup — it produces two working skills: a theorem-walkthrough animator and a visual-layout critic. Neither ships without clearing a four-gate check first: static code analysis, semantic prompt injection screening, sandboxed behavioral testing, and permission validation against an allowed-tools manifest.

That screen matters. Run across the full mined pool, it flags 26.1% of artifacts with vulnerabilities — the paper's own basis for treating scraped code as needing graduated trust tiers, not blanket trust. The capability side looks better: extracted skills delivered a 40% gain in knowledge-transfer efficiency on downstream educational tasks, held pedagogical quality roughly level with human-crafted tutorials, and — composed through an ontological structure the authors call SkillNet — cut execution steps by 30% versus running skills independently.

Key numbers

Knowledge-transfer efficiency gain from mined skills40%
Mined artifacts flagged with vulnerabilities26.1%
Execution-step reduction via SkillNet composition30%
Skills navigable via progressive disclosure10,000+
Cost reduction vs. retraining a model2-3 orders of magnitude

Skills related to this research

Related notes

References

  1. Bi, Wu, Hao, Li, Liu, Song, Zhao, Zhou — "Automating Skill Acquisition through Large-Scale Mining of Open-Source Agentic Repositories" (arXiv:2603.11808, March 2026)
  2. TheoremExplainAgent — planner/coding-agent system for Manim-based theorem explanation videos, one of the two mined source repositories
  3. Code2Video — tri-agent (planner/coder/critic) framework for code-driven educational video generation, the second mined source repository