Skip to content

Commit 46cc2ef

Browse files
docs: add News section, PyPI install instructions, and PyPI badge to README
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 25da7cb commit 46cc2ef

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
*Train agent skills like you train neural networks — with epochs, (mini-)batchsize, learning rates, and validation gates — but without touching model weights.*
44

5-
[![Project Page](https://img.shields.io/badge/Project%20Page-SkillOpt-8dbb3c)](https://microsoft.github.io/SkillOpt/) [![Paper](https://img.shields.io/badge/Paper-arXiv-b31b1b)](https://arxiv.org/abs/2605.23904) [![Project Video](https://img.shields.io/badge/Project%20Video-Watch%20Demo-ff0000)](https://youtu.be/JUBMDTCiM0M) [![Python 3.10+](https://img.shields.io/badge/Python-3.10%2B-blue.svg)](https://www.python.org/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5+
[![Project Page](https://img.shields.io/badge/Project%20Page-SkillOpt-8dbb3c)](https://microsoft.github.io/SkillOpt/) [![Paper](https://img.shields.io/badge/Paper-arXiv-b31b1b)](https://arxiv.org/abs/2605.23904) [![Project Video](https://img.shields.io/badge/Project%20Video-Watch%20Demo-ff0000)](https://youtu.be/JUBMDTCiM0M) [![PyPI](https://img.shields.io/badge/PyPI-skillopt-green.svg)](https://pypi.org/project/skillopt/) [![Python 3.10+](https://img.shields.io/badge/Python-3.10%2B-blue.svg)](https://www.python.org/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6+
7+
---
8+
9+
## News
10+
11+
| Date | Version | Highlights |
12+
|---|---|---|
13+
| 2026-06-02 | [v0.1.0](https://github.com/microsoft/SkillOpt/releases/tag/v0.1.0) | Initial public release on [PyPI](https://pypi.org/project/skillopt/). Full training loop (rollout → reflect → aggregate → select → update → evaluate), multi-backend support (OpenAI / Azure / Claude / Qwen / MiniMax), six built-in benchmarks, WebUI dashboard, and pretrained GPT-5.5 skill artifacts. |
614

715
---
816

@@ -50,6 +58,19 @@ https://github.com/user-attachments/assets/eb12d3bc-371c-467f-904d-91b61f339ed7
5058

5159
- Python 3.10+
5260

61+
### Option A: Install from PyPI
62+
63+
```bash
64+
pip install skillopt
65+
66+
# With optional extras:
67+
pip install skillopt[alfworld] # ALFWorld benchmark
68+
pip install skillopt[webui] # Gradio monitoring dashboard
69+
pip install skillopt[claude] # Claude model backend
70+
```
71+
72+
### Option B: Install from source (for development)
73+
5374
```bash
5475
git clone https://github.com/microsoft/SkillOpt.git
5576
cd SkillOpt

0 commit comments

Comments
 (0)