skillfed

Self-graded exploration closes a 32-point reasoning gap — no labels needed

Notes on Unsupervised Skill Discovery for Agentic Data Analysis (arXiv:2606.06416) — Zhisong Qiu, Kang Song, Shengwei Tang, Shuofei Qiao, Lei Liang, Huajun Chen, Shumin Deng · June 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 evolution

DataCOPE builds data-analysis skills without ever seeing a labeled example. Instead of grading trajectories against ground-truth answers, it manufactures its own quality signal out of the agent's exploration: for open-ended report tasks, an Adaptive Checklist Verifier writes a task-specific checklist, scores each report by how much of the checklist it verifiably covers, and rewrites the checklist itself whenever the agent starts gaming it; for fixed-answer reasoning tasks, an Answer Agreement Verifier clusters trajectories by their final answer and uses self-consistency — the relative size of a trajectory's answer cluster — as a secondary confidence signal. A Data-Analytic Agent samples the trajectories, the verifier sorts them into contrastive high- and low-quality groups, and a Skill Manager rewrites a Markdown skill file from that contrast, looping through generation, verification, and distillation with no human ever touching the exploration set.

Averaged over four matched base models — Claude, GPT, DeepSeek, and Qwen variants — DataCOPE lifts report-style accuracy on Deep Data Research from 47.4% to 57.1%, and reasoning accuracy on DABStep from 29.1% to 61.4%, with the reasoning gain concentrated on the benchmark's hard split. Both beat Anthropic's own Skill Creator tool run through Claude Code over the same exploration data, which manages only 51.3% and 51.7% respectively — the gap traces to the unsupervised verifier signal, not merely to having an agent write skills. The two verifier halves aren't interchangeable: on DABStep, keeping only self-consistency and dropping answer clustering scores worse than using no verifier signal at all (47.9% vs. 53.9%), because trajectories can converge confidently on the same wrong answer. The discovered skills also compress behavior, not just improve it — one configuration cut average token use by 73.4% (241k to 64k tokens) while accuracy rose from 44% to 64% under a fixed 15-turn budget. The one place unsupervised still trails supervised: with every exploration trajectory hand-labeled, the comparison baseline reaches 72.2% on DABStep, about nine points past what DataCOPE gets for free.

Key numbers

Report-style accuracy, mean of 4 models (Deep Data Research)47.4% → 57.1% (+9.71 pts)
Reasoning-style accuracy, mean of 4 models (DABStep)29.1% → 61.4% (+32.30 pts)
Token use vs. accuracy (Claude Sonnet 4.6 + Claude Code, 15-turn cap)–73.4% tokens (241k→64k) while accuracy rises 44%→64%
Margin over Anthropic's Skill Creator baseline (DABStep, mean)61.4% (DataCOPE) vs. 51.7% (Skill Creator)
Gap to full-label supervision (DABStep)62.8% unsupervised vs. 72.2% with every trajectory labeled

Skills related to this research

dev-browser dev-browser enables AI agents and developers to automate browser interactions through sandboxed JavaScript execution. Scripts run safely in an isolated QuickJS WASM environment without access to the host system, while maintaining persistent page state across multiple interactions. Navigate websites, extract data, and control web applications programmatically with reliable, repeatable automation.★ 6,481 creator-content-auditor This skill automates the review process for creator-submitted content, comparing each piece against your established brand guidelines and campaign parameters. It helps marketing teams catch misalignments early, maintain consistent brand voice across influencer partnerships, and streamline approval workflows before content goes live.★ 2,469 ugc-ad-production This skill orchestrates a complete pipeline for creating photorealistic user-generated content ads in 15-second vertical format. It combines script generation, AI creator face synthesis, and multi-shot video production to deliver ads that feel genuinely human-made rather than AI-generated. The workflow guides you through collecting product details and reference videos, then chains together specialized tools to produce authentic-looking UGC content.★ 112 ios-storyboard This skill equips AI agents to work directly with iOS storyboard files, enabling updates and restructuring of interface layouts within healthcare applications. It integrates with the Agent Skills open format to provide domain-specific capabilities for managing UI components and screen configurations in clinic-focused iOS development.★ 182

Related notes

References

  1. Qiu, Song, Tang, Qiao, Liang, Chen & Deng, "Unsupervised Skill Discovery for Agentic Data Analysis" (arXiv:2606.06416, 2026)
  2. Egg, Goyanes, Kingma, Mora, von Werra & Wolf, "DABStep: Data Agent Benchmark for Multi-Step Reasoning" (arXiv:2506.23719, 2025)
  3. Liu, Yu, Orini, Du & He, "Hunt Instead of Wait: Evaluating Deep Data Research on Large Language Models" (arXiv:2602.02039, 2026)
  4. Yao, Zhao, Yu, Du, Shafran, Narasimhan & Cao, "ReAct: Synergizing Reasoning and Acting in Language Models" (ICLR 2023)
  5. Anthropic, "Skill Creator" (github.com/anthropics/skills, 2026)