Skip to content
Skylark Skills
Submit a skill

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. Some are written by the site owners themselves. The rest come from us and from the people who use them.

skills
4
skills
sites
3
sites
verified publishers
2
verified publishers

Browse by site

Every site with a published skill has its own page and its own machine-readable index.

All sites →

Recently published

A curator read every one of these before it went up.

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

    Read it. All of it is plain English, and what the skill is allowed to touch sits above the instructions rather than buried in them.

  3. Skylark picks it up

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

Own a site? Publish your own.

Serve a skill from your own domain at /.well-known/agent-skills/ and the browser reads it straight from you, without a directory in between. We verify your domain automatically when you do, and mirror the skill 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"]
  }]
}