This guide assumes you have completed Onboarding: your workspace repository is cloned, the CLI is installed and authenticated, and your AI coding environment is open in the workspace directory.
What Workspace Skills Do
Platform-created workspace repositories include project-local Agent Skills under.agents/skills/. Agents that support the open Agent Skills format can use those skills to move through the same loop an experienced Osmosis user would follow:
When to Use This Path
| Use this path when | Run the multiply example when |
|---|---|
| You already know the task you want to train on | You want proof that the platform works end to end |
| You have sample data or a platform dataset | You do not want to design a dataset yet |
| You want the agent to create or adapt rollout code | You want to copy commands without making product choices |
| You are comfortable inspecting generated code and evaluation run output | You are still learning the Osmosis workflow |
Use the Skills in Your Workspace Repository
Open your platform-created workspace repository in your AI coding environment. The repository includes the workspace contract and Agent Skills alongside rollout code, configs, and data:AGENTS.md contains the always-loaded workspace contract. .agents/skills/ contains the canonical workflow skills, and .claude/skills/<skill-name> exposes the same skills to Claude Code through symlinks back to .agents/skills/.
Start in a Workspace Repository
The skills assume this repository layout for source files:Ask the Agent to Plan from the Dataset
Start by describing your task and asking the agent to begin with the workspace’s planning skill. A useful first prompt is:Plan training
Inspect
data/, existing rollouts, and workspace config. The agent should settle the dataset schema before writing rollout code.Create or adapt a rollout
Write the smallest
AgentWorkflow and Grader that can load, run, and score samples. Generated files should stay under rollouts/, configs/eval/, configs/training/, and data/.Submit an evaluation run
Push the rollout to the workspace repository and submit an evaluation run as the quality gate:
Debug until the evaluation run is clean
Fix loading, dataset, grader, dependency, and reward issues before a training run. A passing evaluation run is the handoff point from creation to training run readiness.
Workspace Skills
The workspace skills are organized around rollout creation stages:| Skill | Purpose |
|---|---|
plan-training | Turn a task idea or dataset into a concrete experiment plan |
create-rollouts | Create or adapt rollout code, graders, entrypoints, and baseline evaluation configs |
evaluate-rollouts | Submit evaluation runs, compare baselines, and inspect failures |
debug-rollouts | Diagnose evaluation, config, dataset, dependency, or preflight failures |
submit-training | Prepare a training run config, submit a training run, and check training run status |
Next Steps
Rollout Overview
Understand the
AgentWorkflow and Grader contract behind generated rollout code.Evaluation
Validate rollouts with an evaluation run before submitting a training run.
Git Sync
Push rollout changes and let the platform sync the code version used for evaluation runs and training runs.
Training Runs
Submit and monitor a training run after the evaluation run passes.