Thanks for adding a skill. Skills are short Markdown files; you don't need to write any code.
- Fork the repository.
- Add a folder
{country}/{practice}/skills/{slug}/with aSKILL.mdinside. Use the template below. - If the plugin
{country}/{practice}/doesn't exist yet, also addplugin.json,CLAUDE.md, andREADME.mdin its root (copy fromru/arbitration/as a reference). - Open a pull request. CI runs the schema, license, and version checks; a maintainer reviews and merges.
---
name: my-skill
title: My Skill
description: One-paragraph description of what the skill does and when to use it (40–2000 chars). This shows up in the marketplace and in semantic discovery.
author: Your Name
author_url: https://github.com/yourhandle
license: Apache-2.0
version: 0.1.0
execution_mode: open
jurisdiction: us
practice: corporate
language: en
tags: [tag-one, tag-two]
---
# Skill title
## When to apply
Triggers, example user prompts, what's out of scope.
## Algorithm
Step-by-step instructions for the orchestrator.
## Output contract
What the answer must contain (citations, disclaimer, etc.).title is the human-readable display name shown on the marketplace card — the same text you put in the body's H1 (# Skill title), just promoted to machine-readable frontmatter. It's optional; if omitted, consumers fall back to the H1, then to name.
The canonical contract is schemas/skill-frontmatter.schema.json.
- License. Must be one of:
Apache-2.0,MIT,BSD-3-Clause,BSD-2-Clause,CC0-1.0,CC-BY-4.0. AGPL / GPL / CC-NC / CC-ND are rejected automatically. execution_mode. Must beopenin this repository.- Path consistency.
namematches the folder name;jurisdictionandpracticematch the path. - Versioning.
versionfollows semver (MAJOR.MINOR.PATCH). Bump it on every change toSKILL.md. - References. If you cite local source texts, put them under
references/inside the skill folder and list them in thesourcesfrontmatter array.
By opening a pull request you license your contribution under Apache License 2.0 (same as the repository).
You keep all rights to your skill and can publish it elsewhere — in your own repository, in a private deployment — without notifying us.