MarkTechPost AI生成式AI

微軟SkillOpt展示優化後的代理技能工件可跨模型規模、在Codex與Claude Code之間轉移

2026年8月6日 00:37

重點摘要

SkillOpt 是由微軟、上海交通大學、同濟大學及復旦大學研究團隊共同開發的文字空間優化器。該方法在目標模型保持凍結的狀態下,訓練單一自然語言技能文件。優化器模型會讀取經過評分的執行結果,並提出有邊界的增/刪/替換編輯。透過保留的驗證分割,僅在分數確實提升時才接受該編輯。最終匯出的工件為單一檔案 best_skill.md。轉移表格中報告三個欄位:基準線為目標模型無技能時的分數;直接(Direct)表示 SkillOpt 在該目標模型上進行領域內訓練;轉移(Transferred)則應用在其他地方訓練的技能,且不經進一步優化。有意義的比較並非轉移與直接之間的差異,而是領域內增益在轉移過程中能保留多少。

站內 AI 整理稿

SkillOpt is a text-space optimizer developed by a team of researchers from Microsoft, Shanghai Jiao Tong University, Tongji University, and Fudan University.SkillOpt trains a single natural-language skill document while the target model stays frozen.

An optimizer model reads scored rollouts and proposes bounded add/delete/replace edits.A held-out selection split accepts an edit only when the score strictly improves.The exported artifact is one file, best_skill.md.The transfer tables report three columns.Baseline is the target’s no-skill score.

Direct is SkillOpt trained in-domain on that exact target.Transferred applies a skill trained elsewhere, with no further optimization.The useful comparison is not transferred versus direct.It is how much of the in-domain gain survives the move.(function(){ window.

addEventListener("message", function(e){ if(e.data && e.data.mtpSkillOptHeight){ var f = document.getElementById("mtp-skillopt-transfer"); if(f){ f.style.height = e.data.mtpSkillOptHeight + "px"; } } }); })(); Cross-model transfer: within-family, mixed retention Skills were trained on GPT-5.

4 and deployed on smaller variants.SpreadsheetBenchGPT-5.4-mini36.147.545.5+9.482%SpreadsheetBenchGPT-5.4-nano23.542.526.5+3.016%LiveMathGPT-5.4-mini14.732.819.2+4.525%LiveMathGPT-5.4-nano23.227.228.8+5.6140% Two rows deserve attention.SpreadsheetBench on GPT-5.

4-mini keeps 82% of the in-domain gain.That is close to free reuse.The LiveMath row on GPT-5.4-nano is stranger: the transferred skill scores 28.8 against an in-domain SkillOpt result of 27.2.The paper reads this as evidence that some learned procedures are target-model agnostic.The GPT-5.

4-nano SpreadsheetBench row is the weak one at 16%.Retention is not uniform, and the paper does not claim it is.Its stated bound is narrower: no row falls below the target’s no-skill baseline.Note the scope.All four rows stay inside one GPT family.

Cross-family transfer, such as GPT to Qwen, is not tested.Cross-harness transfer: the strongest result This is the section that matters most for deployment.All rows use GPT-5.5.BenchmarkSource → TargetBaselineDirectTransferredGainShare of in-domain gainSpreadsheetBenchCodex → Claude Code22.180.481.

8+59.7102%SpreadsheetBenchClaude Code → Codex27.585.071.1+43.676%LiveMathClaude Code → Codex35.278.448.0+12.830%LiveMathCodex → Claude Code40.856.542.4+1.610% The first row is the headline.A skill optimized inside Codex lifted Claude Code from 22.1 to 81.8.That slightly exceeds the 80.

4 Claude Code reached by training its own skill from scratch.The two harnesses expose different tool and file APIs and different command surfaces.A skill that survives that shift is not encoding command recipes.

The research paper attributes SpreadsheetBench’s portability to workbook-level procedures: structure-first inspection, formula-aware verification, and static-value materialization.Those hold regardless of which CLI runs the Python.LiveMath tells the opposite story.

Codex → Claude Code retains only 10% of the in-domain gain.The asymmetry is worth sitting with.Procedural skills — how to inspect, verify, and format — appear to be the portable class.Reasoning-heavy skills appear more tied to their training environment.

Cross-benchmark transfer: real but small Source → TargetModelBaselineTransferredGainOlympiadBench → Omni-MATHGPT-5.456.660.3+3.7OlympiadBench → Omni-MATHGPT-5.4-mini34.836.6+1.8OlympiadBench → Omni-MATHGPT-5.4-nano38.840.1+1.3 There is no Direct column here.

No in-domain SkillOpt run on Omni-MATH is reported, so the comparison is against no-skill only.Gains are positive across all three model scales but small.

The research paper’s reading is that the skill retained reusable mathematical procedure after both the test instances and the answer-format conventions changed.Why the artifact moves at all The mechanism is stated plainly in the research paper.

All three execution modes: direct chat, Codex, Claude Code – consume the same best_skill.md file format.That shared contract is what makes the cross-harness experiment possible in the first place.The Codex harness renders the current skill to a per-task SKILL.

md alongside task files, then reads back a compact execution trace.The Claude Code harness mirrors the same workspace contract through the claude CLI.Neither harness gets a bespoke skill format.The artifact’s shape supports portability too.

Final skills run 379 to 1,995 tokens across the six benchmarks, with a median near 920.They are assembled from 1 to 4 accepted edits.The paper’s Figure 4 samples one learned rule per benchmark, and all are procedural rather than instance-specific.

The SpreadsheetBench rule, verbatim: inspect workbook structure and formulas, then write evaluated static values across the full requested target range instead of relying on Excel recalculation.What this implies for portability Training cost is paid once, offline, and measured.

The research paper reports 0.6M to 46.4M training tokens per absolute test point, depending on benchmark.SpreadsheetBench sits at 0.6M per point; DocVQA at 46.4M.The optimizer model runs only during training and adds zero inference-time calls at deployment.

If a skill trained in one harness holds up in another, that one-time cost spreads across environments.The Codex → Claude Code SpreadsheetBench result is the existence proof.It also implies you can optimize where tooling is cheapest and deploy where the product lives.

The audit angle is separate and underrated.The deployed artifact is a text file a domain practitioner can read in minutes.Every change to it is traceable: each step records an edit_apply_report.json with per-edit accept and skip status.

Portability plus inspectability is a different operational posture than shipping fine-tuned weights.Key Takeaways Evidence covers one GPT family and two benchmarks per axis, so portability is demonstrated, not yet generalized.A Codex-trained SpreadsheetBench skill scored 81.

8 inside Claude Code, above that harness’s own 80.4 in-domain result.All 4 cross-model, 4 cross-harness, and 3 cross-benchmark transfer rows land above the target’s no-skill baseline.Transfer strength tracks task type: procedural spreadsheet skills move well, math-reasoning skills move weakly.

The portable unit is one best_skill.md of 379 to 1,995 tokens, built from 1 to 4 accepted edits.

Resources: Paper, GitHub, Project page, Docs, PyPI and Demo video Baselines referenced: GEPA, TextGrad, EvoSkill and Trace2Skill Benchmarks referenced: SearchQA, SpreadsheetBench, DocVQA, LiveMathematicianBench and ALFWorld The post Microsoft’s SkillOpt Shows Optimized Agent Skill Artifacts Transfer Across Model Scales and Between Codex and Claude Code Harnesses appeared first on MarkTechPost.

Related

相關文章

六巨頭定AI插件新標準,撞臉Claude,Anthropic沒上桌

六大科技巨頭(AWS、Anysphere、GitHub、微軟、OpenAI、Vercel)聯合發布AI智能體插件統一開放規範Agent Plugins 1.0.0,旨在統一插件打包格式,減少開發者重複勞動。該規範的結構與Anthropic的Claude Code插件系統高度相似,但Anthropic並未參與制定,而是繼續經營自己的封閉生態。

1 小時前
鈦媒體生成式AI

DeepSeek重啟融資,三年市值對齊騰訊?

DeepSeek重啟第二輪融資,以5000億元人民幣估值尋求籌集80億美元,但網傳一份由小型醫藥私募發起的專項基金募資材料引發網友質疑,後經DeepSeek員工證實部分數據屬實。該公司近期宣布API大幅漲價,可能打破其以低價換規模的估值邏輯,面臨客戶流失風險。市場關注其能否從「價格屠夫」轉型為價值提供商,以及三年內市值能否對齊騰訊等巨頭。

2 小時前

可靈AI核心技術骨幹王鑫濤被曝離職

快手可靈AI核心技術骨幹王鑫濤被曝離職,去向未知,快手官方與本人均未回應。王鑫濤是圖像與視頻生成領域知名開源項目主要作者,被視為可靈從0到1的關鍵推手。其離職發生在可靈完成獨立融資、估值180億美元的關鍵階段,可能影響研發進度與競爭優勢。

2 小時前

AI短劇、漫劇、戀綜、電影、藝人都有了,AI觀眾也不遠了

2026年AI影視內容全面爆發,從短劇、長劇到電影、綜藝,AI製作的作品大量湧現,衛視也開始播出AI短劇。AI演員如方桃子迅速走紅,商業變現能力驚人,廣告報價甚至超過許多真人網紅。AI短劇市場規模已突破220億元,用戶超過6億,但同時也引發了對真人演員就業和內容品質的擔憂。

2 小時前