localskillsai

Submit a skill

Skills are submitted via GitHub pull request. There's no web form yet — that lands in v1.1. The workflow is intentionally simple: fork, add a folder, validate, open a PR.

1. Read the docs

Skim the Create a Skill guide and the moderation policy. Ten minutes. It saves both of us a back-and-forth.

If you haven't authored a skill before, the fastest path is Path A — Computer Use harvesting in the create-a-skill guide: open Claude Desktop, do the task once with Claude watching, and ask it to draft the SKILL.md. ~30 minutes from start to first draft.

2. Fork the skills repo

https://github.com/localskills-ai/skills

3. Add your skill folder

# Country-scoped (most common)
skills/nz/<your-slug>/
  skill.json
  README.md
  SKILL.md
  LICENSE
  CHANGELOG.md

# Sub-region scoped (state, city, province)
skills/nz-akl/<your-slug>/
  ...

# Global (rare)
skills/global/<your-slug>/
  ...

Use whatever country code applies to your skill — every ISO 3166-1 country is supported.

4. Validate locally

cd skills
node scripts/validate.mjs nz/<your-slug>

This must pass before opening a PR. CI runs the same checks.

5. Open a PR

Title: add: <your-slug> — <one-line description>

Body:

6. Review

We aim for first contact within 48 hours. Approved skills publish automatically.