| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Systematic methodology for optimizing agent skills using deep-learning-style approach.
Based on arXiv:2605.23904 by Microsoft, Shanghai Jiao Tong University, Tongji University, and Fudan University.
SkillOpt treats skill documents as trainable parameters and applies bounded, validated, iterative updates - similar to gradient descent in deep learning, but operating in text space.
| Deep Learning | SkillOpt Analogue |
|---|---|
| Parameter | Skill document (SKILL.md) |
| Gradient | Edit direction from trajectories |
| Learning rate | Edit budget (max edits/step) |
| Validation | Held-out test set |
| Training stability | Rejected-edit buffer |
✅ Use when:
❌ Skip when:
skillopt-methodology-skill/
├── SKILL.md # Main skill definition
├── README.md # This file
└── references/
├── methodology.md # Complete methodology guide
├── design-principles.md # Core design principles
└── prompts/
├── analyst_error.md # Failure analysis prompt
├── analyst_success.md # Success analysis prompt
├── merge_failure.md # Merge failure proposals
├── merge_success.md # Merge success proposals
├── merge_final.md # Final merge (failure-priority)
├── ranking.md # Rank and select top edits
├── slow_update.md # Epoch-wise slow update
└── meta_skill.md # Optimizer memory
| Parameter | Default | Description |
|---|---|---|
| Epochs (E) | 4 | Number of optimization epochs |
| Rollout batch (B) | 40 | Tasks per rollout batch |
| Minibatch size (B_m) | 8 | Trajectories per reflection minibatch |
| Edit budget (L_t) | 4 | Max edits per step (cosine decay) |
| Min learning rate | 2 | Minimum edit budget |
MIT
@article{skillopt2026,
title={SkillOpt: Controllable Text-Space Optimization for Agent Skills},
author={Microsoft Research and Shanghai Jiao Tong University and Tongji University and Fudan University},
journal={arXiv preprint arXiv:2605.23904},
year={2026}
}| Back | FazBrowse Home | New Git URL |