Skip to content
Skylark Skills
Submit a skill

An open directory for the Agent Skills format

Agent skills for the sites you browse.

A web skill is plain-English instructions that teach a browser agent how to get something done on one specific site — cancel a subscription, check out as a guest, explain an invoice. Written by site owners, by the community, and by us.

skills
4
skills
sites
3
sites
verified publishers
2
verified publishers

Browse by site

Skills live under the site they work on. Every one has its own page.

All sites →

Recently published

Everything here was reviewed before it appeared.

All skills →

Storefront

shop.storefront.example

guest-checkout

Fills a Storefront guest checkout (shipping + contact) from details the user supplies, then hands the payment step back to the user. Scoped to the checkout wizard only.

  • Read the page
  • Act on the page
Storefront Co.From the site

Acme Billing

billing.acme.example

explain-my-bill

Reads an Acme Billing invoice and explains the charges in plain English. Knowledge-only: it reads and explains, it never modifies anything.

  • Knowledge only
Acme, Inc.From the site

Acme Billing

billing.acme.example

cancel-subscription

Cancels a recurring subscription on Acme Billing. Drives the cancel flow and stops at the final confirm, handing the consequential last click back to the user.

  • Read the page
  • Act on the page
  • Navigate
Acme, Inc.From the site

DevDocs

devdocs.example

api-reference-helper

Finds and summarises API documentation on DevDocs. Knowledge-only on the page side; prefers the site's remote MCP server for live symbol lookup when the user has enabled it.

  • Knowledge only
DevDocs Collective

By category

How it works

  1. Find the site

    Skills are filed under the site they work on, so start where you were going anyway.

  2. Read what it does

    Every skill is plain English you can read end to end, with exactly what it is allowed to do listed up front.

  3. Skylark picks it up

    The browser checks this directory as you navigate and offers the skill when it fits. Nothing runs until you say so.

Own a site? Publish your own.

Serve a skill from your own domain at /.well-known/agent-skills/ and the browser reads it directly — no directory in the middle. Do that, and we verify your domain automatically and mirror it here so people can find it.

GET /.well-known/agent-skills/index.json

{
  "$schema": "…/discovery/0.2.0/schema.json",
  "skills": [{
    "name": "cancel-subscription",
    "type": "skill-md",
    "description": "Cancels a recurring…",
    "url": "…/cancel-subscription/SKILL.md",
    "digest": "sha256:d13d4ad6…",
    "runtime": "browser",
    "permissions": ["page:read", "page:act"]
  }]
}