- 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
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) andintegrate(add the Olostep SDK to a project).workflow— produce a deliverable with Olostep:research,docs-to-code,migrate-code,debug-error.
Hosted copies
Each installed skill also references its hosted copy athttps://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
Common usage
Options reference
Validation rules:
--link-modemust beauto,symlink, orcopy--agent-skills-dirrequires--no-global--no-globalrequires--agent-skills-dir- Unknown agent names will error
- An empty skill selection after
--skill/--excludewill 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 aSKILL.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 theolostep- 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.
Related
- CLI reference — full command documentation
- MCP Server — give your agent live Olostep tools