
Submit To Everyskill
- 2 installs
- 44 repo stars
- Updated July 10, 2026
- everyinc/everyskill
Packages and submits a skill to the Every Skill registry by preparing SKILL.md and supporting files, then POSTing base64-encoded content to the submission API.
About
Guides preparing a SKILL.md with required frontmatter and optional supporting files, then submitting via the Every Skill agent-submit API with a password. A developer uses it to share a skill to the Every Skill community catalog for AI and human review.
- Defines required frontmatter and file constraints (max 50 files, 1MB each)
- Submits base64-encoded files to skills.every.to/api/agent-submit
Submit To Everyskill by the numbers
- 2 all-time installs (skills.sh)
- Ranked #609 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Jul 13, 2026 (Skillselion catalog sync)
npx skills add https://github.com/everyinc/everyskill --skill submit-to-everyskillAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 44 |
| Last updated | July 10, 2026 |
| Repository | everyinc/everyskill ↗ |
What it does
Packages and submits a skill to the Every Skill registry by preparing SKILL.md and supporting files, then POSTing base64-encoded content to the submission API.
Files
Submit a Skill to Every Skill
Follow these steps to package and submit a skill to Every Skill.
Step 1: Prepare Your SKILL.md
Every skill needs a SKILL.md file with YAML frontmatter. Here's the required format:
---
name: your-skill-name
description: >
A clear description of what this skill does and when to use it.
Include trigger phrases so agents know when to activate it.
tags: [relevant, tags]
allowed-tools: |
Bash(specific-command *)
Read(~/specific-path/*)
---
# Your Skill Title
Your skill instructions go here...Frontmatter fields:
name(required): lowercase letters, numbers, and hyphens only (e.g.my-cool-skill)description(required): what the skill does and when to use ittags(optional): array of relevant tags for discoveryversion(optional): semver string, defaults to1.0.0allowed-tools(optional): restrict which tools agents can use with this skill
Step 2: Add Supporting Files (Optional)
Skills can include additional files in these directories:
scripts/— helper scripts (Python, shell, etc.)references/— reference documents, specs, examplesassets/— images, PDFs, other assets
Constraints: Max 50 files, max 1MB per file.
Step 3: Get the Submission Password
Ask your human for the Every Skill submission password. They can get it from the Every Skill team. You'll need to include it with every submission.
Step 4: Submit via API
POST your skill to the Every Skill API. Each file's content must be base64-encoded.
Endpoint: POST https://skills.every.to/api/agent-submit
Request format:
{
"password": "the-submission-password",
"skill_name": "your-skill-name",
"submitter_name": "Your Name or Your Human's Name",
"submission_reason": "Why this skill should be included in Every Skill",
"files": [
{
"path": "SKILL.md",
"content": "<base64-encoded content of SKILL.md>"
},
{
"path": "scripts/helper.py",
"content": "<base64-encoded content>"
}
]
}How to submit using Bash:
# Base64-encode your SKILL.md
SKILL_CONTENT=$(base64 -i path/to/SKILL.md)
# Submit (single file example)
curl -X POST https://skills.every.to/api/agent-submit \
-H "Content-Type: application/json" \
-d "{
\"password\": \"THE_PASSWORD\",
\"skill_name\": \"your-skill-name\",
\"submitter_name\": \"Your Name\",
\"submission_reason\": \"Why this skill is useful\",
\"files\": [{\"path\": \"SKILL.md\", \"content\": \"$SKILL_CONTENT\"}]
}"Step 5: Check the Response
Success response:
{
"success": true,
"submission_id": "uuid",
"skill_name": "your-skill-name",
"review_url": "/admin/submissions/uuid"
}Tell your human the submission ID so Every can track the review.
Error response:
{
"error": "Description of what went wrong"
}Fix the issue described in the error and retry.
What Happens After Submission
1. The package is stored privately in Every Skill for review 2. AI agents can inspect the submitted package for security issues 3. A human reviews and approves, rejects, or requests changes 4. Once approved, the skill goes live at https://skills.every.to
Tips for Good Skills
- Be specific: Skills that do one thing well get approved faster
- Include trigger phrases in your description so agents know when to use the skill
- Test your skill before submitting — make sure it works end-to-end
- Avoid overly broad tool permissions in
allowed-tools - No secrets or credentials in skill content