Skip to main content
Coding agents discover skill files by scanning specific directories at startup. By placing TensorLake skill files in the right paths inside a sandbox image, any agent running in the sandbox will automatically pick them up without manual installation.

How Agents Discover Skills

Each coding agent scans a different directory for skill files: To make skills work inside a sandbox, bake the skill files into the image at the paths the agent expects.

Create a Skills Image

Any Agent

The simplest way to install skills for any agent is with the skills CLI. It places skill files in the correct discovery paths for Claude Code, Codex, Cursor, Windsurf, and other supported agents.
  • --all installs skills to all detected agents
  • -y skips confirmation prompts for non-interactive use
  • --copy copies files instead of symlinking, which is more reliable inside containers

Claude Code Only

If you only need Claude Code support, copy the skill into ~/.claude/skills/ inside the image:
Claude Code scans ~/.claude/skills/ at startup. The SKILL.md file and references/ directory at /root/.claude/skills/tensorlake/ are auto-discovered.

Create a Reusable Sandbox Image

Register the image once, then launch new sandboxes with the skills already baked in:
Then launch sandboxes from that image:

Use with the SDK

You can also install skills programmatically each time you create a sandbox:
For sandboxes you create frequently, use the sandbox image approach to avoid reinstalling skills on every launch.

What Gets Included

The skill repo contains SDK references that the agent uses as context:

See Also

Agent Skills

Learn about TensorLake skills and how to install them for your coding agent.

Sandbox Images

Create reusable sandbox images from Dockerfiles or the TensorLake image DSLs.