日本フィジカルAI新聞

世界のフィジカルAIを、日本語で。

週刊ニュースレター購読
LLMエージェントarXiv:2609.02217v1

SkillGLoW: 手続き的ファミリーのスキル統合による長期的タスクストリーム上の自己改善エージェント

SkillGLoW: Procedural-Family Skill Consolidation for Self-Improving Agents on Long-Horizon Task Streams

シェア:XThreadsFacebookLINEはてブBluesky

LLMエージェントが長期的なタスク群で自己改善する際、タスク間で共有される解決手順を「手続き的ファミリー」として集約・圧縮し、タスク固有の詳細は再生成するスキル管理手法SkillGLoWを提案した。

詳しい要約

1. どんなもの?

SkillGLoWは、LLMエージェントが長期的なタスクストリーム上で自己改善するための手法。タスクの実行から得られるローカルスキルを、手続き的ファミリー(procedural families)に集約し、インスタンス固有の詳細を除去したグローバルな事前知識(global priors)として圧縮する。各タスクでは、その事前知識を基にインスタンス固有の詳細を再生成する。コミットゲートにより、実際の実行でライブラリを劣化させない場合のみ事前知識を採用する。

2. 先行研究と比べてどこがすごい?

従来の手法は、スキルを単一のグローバル文書として保持するか、タスクごとのフラットなプールとして保持するかの二択だった。しかし、長期的で多様なタスクでは、前者は汎用的すぎて具体性を失い、後者はエントリが爆発的に増え、各エントリがそれを書いたインスタンスに固着してしまう。SkillGLoWは、再利用の単位を「関連タスク群が共有する解決手順」とすることで、このジレンマを解決し、コンパクトで転移可能なライブラリを実現している。

3. 技術・手法の肝は?

手法の核は、ローカルスキルの集約と圧縮、および再生成の仕組みにある。具体的には、各タスクが自身の実行から書いたローカルスキルを、手続き的ファミリーにクラスタリングし、それらをインスタンス非依存のグローバル事前知識に圧縮する。タスク実行時には、その事前知識からインスタンス固有の詳細を再生成する(保存しない)。さらに、コミットゲートが、実際の実行でライブラリの性能を劣化させない場合のみ事前知識をライブラリに追加する。

4. どうやって有効だと検証した?

4つのベンチマーク(数学的推論、ターミナル自動化、ソフトウェア修復、身体化制御)と3つのモデルで検証。スキルなしベースラインに対して、ハードタスクで平均17.2ポイントの改善、12の継続的改善ランすべてで正のゲインを確認。ローカル再生成を加えると18.0ポイント。ライブラリは手続き的ファミリーごとに1つの事前知識を持ち、タスクごとのプールより3.6倍コンパクト。公開された単一文書最適化手法との比較では、21セル中15セルで優位。未修正のライブラリは、未見のALFWorldタスクの成功率を73.9%から83.9%に向上させ、転移するのはタスク記憶ではなく手続きであることを示した。

5. 議論はある?

要旨からは、提案手法の限界や潜在的な問題についての議論は不明。ただし、手続き的ファミリーの自動発見の難しさや、事前知識の質がタスクの多様性に依存する可能性などが考えられるが、要旨には明記されていない。

6. 次に読むべき論文は?

要旨で参照されているのは、単一文書最適化手法(published single-document optimizer)と、スキルをプールとして保持する手法。また、ベンチマークとしてALFWorldが挙げられている。次に読むべき論文としては、これらの比較対象となった手法の詳細論文や、ALFWorldを用いた関連研究が考えられる。

※ AIが要旨から生成した要約です。正確性は原文をご確認ください。

著者: Ao Yan, Xin Zhang, Jiawei Du, Joey Tianyi Zhou

分類: cs.AI

原文アブストラクト

LLM agents increasingly self-improve by writing and reusing textual skills, kept either as one global document or as a flat pool of per-task entries, though most of the evidence comes from domains with structurally similar tasks. On long-horizon workloads where each task demands a different solution, the two forms fail in opposite ways: the document collapses into generic discipline, while the pool inflates and its entries stay bound to the instance that wrote them. We argue the missing unit of reuse is the solving procedure shared by a cluster of related tasks, and build SkillGLoW (Global-Local Weave) around it: the local skills a task writes from its own execution are aggregated into procedural families and compressed into de-instantiated global priors, while the instance detail they hold is regenerated per task rather than stored; a commit gate admits a prior only when real execution shows it does not degrade the deployed library. Across four benchmarks (mathematical reasoning, terminal automation, software repair, and embodied control) and three models, the priors gain 17.2 points (hard) over the no-skill baseline on average, with positive gains in all 12 continual-improvement runs, and 18.0 with local regeneration, while the library holds one prior per procedural family, 3.6x more compact than the per-task pool. Under the same protocol GLoW leads a published single-document optimizer on 15 of 21 cells. Unmodified, the library lifts success on unseen ALFWorld tasks from 73.9% to 83.9%, evidence that what transfers is procedure rather than task memory.

関連論文