Skip to main content
Install Olostep skill folders directly into your AI coding agents from the command line.
  • Skills land in a canonical store (~/.agents/skills) and are symlinked or copied into each agent’s skills directory
  • Tracks all installs in a lockfile at ~/.agents/.skill-lock.json
  • Works with Cursor, Claude, Codex, Windsurf, Continue, and more
This feature is available via the Olostep CLI.

The skills

olostep add skills installs all 13. Each is a SKILL.md your agent reads to know what Olostep can do and when to use it. Skills pair with the MCP server: the MCP server gives the agent the live tools, the skills give it the know-how for when and how to use them.

Setup

Start here — teaches the agent how to configure the Olostep MCP server.

Core web data

The main Olostep capabilities — use these to give your agent live web access.

Build & integrate

For agents helping developers add Olostep to a codebase or keep up with API changes.

Research & debug

For agents doing research, making decisions, or debugging code errors.

Categories

Every skill belongs to one of three categories, which map to the --category flag:
  • usage — use Olostep’s features: scrape, search, answers, crawl, map, batch, extract-schema.
  • build — install and integrate Olostep into a codebase: setup (configure the MCP server) and integrate (add the Olostep SDK to a project).
  • workflow — produce a deliverable with Olostep: research, docs-to-code, migrate-code, debug-error.
Install just one category:

Hosted copies

Each installed skill also references its hosted copy at https://www.olostep.com/skills/<name>/SKILL.md — an agent with web access can fetch the latest version (which may include capabilities added since install) and falls back to the local copy otherwise. Browse all hosted skills at olostep.com/skills.

Install

Or without installing the CLI:

Common usage

Filter what gets installed:

Options reference

Validation rules:
  • --link-mode must be auto, symlink, or copy
  • --agent-skills-dir requires --no-global
  • --no-global requires --agent-skills-dir
  • Unknown agent names will error
  • An empty skill selection after --skill / --exclude will error

JSON output shape

When --json is passed, the output looks like:

Supported agents

Use --all-agents (the default) to target all detected agents, or --agent <key> for specific ones.

olostep list skills

See which skills are installed and into which agents — without digging through files.

olostep remove skills

Removes Olostep-installed skill folders from the canonical store and agent skill directories, and cleans up the lockfile.
Safety: Only folders with the olostep- prefix are touched. Non-Olostep skill folders in agent directories are never modified. Lockfile cleanup only removes olostep--prefixed keys.

Skill discovery and format

Skills are discovered by scanning subdirectories for a SKILL.md file. The file must include a YAML frontmatter block with name and description fields. Duplicate sanitized names are rejected.

Naming convention

Installed folders always use the olostep- prefix — e.g. research becomes olostep-research. Names are sanitized to lowercase with invalid characters replaced by -. This prefix keeps Olostep-managed skills clearly identifiable and prevents conflicts with other tools.