Documentation Index
Fetch the complete documentation index at: https://docs.selftune.dev/llms.txt
Use this file to discover all available pages before exploring further.
The journey
Most skills start as something you built for yourself. At some point, you realize it could help others. The question is: how do you get it from your machine to theirs, and how do you know it works for them?Making a skill shareable
If you are publishing a skill others will install, read the Skill Creator Playbook alongside this guide. It covers the before-ship versus after-ship loop in more detail. For the concrete shipping sequence from package creation through safe deploy, use Create, Test, and Deploy a Skill. Before sharing, check these basics:1. Follow the spec
Your skill should conform to the agent skills spec so it works across compatible agents, not just the one you built it for:2. Keep it self-contained
A shareable skill should work without assumptions about the user’s environment:- Scripts should declare their own dependencies (see Using Scripts)
- References should be bundled, not linked to local paths
- Compatibility field should list any requirements (runtimes, tools, API keys)
3. Test beyond your own usage
Your skill works for you because you wrote the description to match how you talk. Other people talk differently.Distribution channels
npx skills (agent skills ecosystem)
The standard way to install skills across compatible agents:GitHub
The simplest distribution: push your skill directory to a public repo. Users install with:selftune registry
Skills published to the selftune registry get additional benefits:- Contributor signals — aggregated (anonymized) trigger and grading data from users who opt in
- Evolution suggestions — selftune proposes description improvements based on contributor signal patterns
- Badge — embeddable health badge for your README
/cloud/signals.
Getting feedback from users
The hardest part of sharing skills is knowing how they perform for others. selftune’s contributor-signal system solves this:How it works
- A user installs your skill and uses it normally
- selftune observes their sessions locally (all data stays on their machine)
- If they opt in, anonymized trigger/grade data is shared back via creator-directed relay signals
- You see aggregated results — which queries succeed, which fail, which are missed
As a skill author
As a skill user
Contribution data is anonymized — only query patterns, trigger outcomes, and grades are shared, never raw user content.
The contributor signal improvement cycle
When enough users contribute data, selftune can run evolution against contributor patterns:Further reading
Skills Registry
Browse and publish skills in the community registry.
Agent Skills Spec
The open standard your skills should conform to.
selftune Cloud
Team dashboards and contributor signal features.
Iteration Loop
The feedback loop that powers contributor-signal improvement.