Skip to content

v0.3.1

Choose a tag to compare

@PrielHaz PrielHaz released this 10 Jun 18:16
eff48c6

remote_skills — install skills from remote repos per run

Adds a third skill source alongside preinstalled_skills and skills_dir: remote_skills, a per-run list of sources installed at run setup via the skills CLI (owner/repo slugs, GitHub URLs, repo subpaths).

RunspaceSession(..., remote_skills=["vercel-labs/agent-skills"])
  • Agents declare npx_agent_name (the skills CLI -a value; claude-code for Claude Code).
  • Works in local and container modes — container installs run inside the container using its own Node, so the host never needs npx.
  • A source that fails to install fails the run; npx scaffolding is cleaned up afterward.

This is the first published cut of the feature (0.3.0 was held back and never released due to a wrong skills-CLI agent name). Closes #7, #9.