Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ harbor run -p harbor_cookbook/recipes/<name> -a claude-code -m anthropic/claude-
|:--|:--|
| [gepa](harbor_cookbook/gepa/) | Agent harness optimization for MedAgentBench using Harbor+GEPA. |
| [tinker&#8209;rl](harbor_cookbook/tinker_rl/) | RL training on Harbor tasks using the Tinker SDK. |
| [sky&#8209;rl](harbor_cookbook/sky_rl/) | RL training on Harbor tasks using SkyRL. |
31 changes: 31 additions & 0 deletions harbor_cookbook/sky_rl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# sky_rl

RL training on Harbor tasks using [SkyRL](https://github.com/NovaSky-AI/SkyRL).

This directory is a pointer. The full integration lives in the SkyRL repo:

**[SkyRL/examples/train_integrations/harbor](https://github.com/NovaSky-AI/SkyRL/tree/main/examples/train_integrations/harbor)**

## Quick start

Set credentials:

```bash
export WANDB_API_KEY=your_wandb_api_key
export DAYTONA_API_KEY=your_daytona_api_key
```

Prepare datasets (run from the SkyRL root):

```bash
uv run examples/train_integrations/harbor/prepare_harbor_dataset.py \
--dataset open-thoughts/CodeContests
```

Launch training:

```bash
bash examples/train_integrations/harbor/run_codecontest.sh
```

See the [SkyRL README](https://github.com/NovaSky-AI/SkyRL) for full setup instructions.
Loading