Every Skill is a benchmarked skill catalog platform with a companion starter-kit installer for CLI apps.
- Domain:
https://skill.justevery.com - Project ID:
skill - Stack: Cloudflare Worker (
workers/api) + Expo web (apps/web) + installer CLI (src/cli.js)
- Public site with a task-to-skill retrieval demo (
/skills) - Worker API for cataloging and recommending skills (
/api/skills/*) - Seeded curated skills + reproducible benchmark artifacts
every-skillCLI to install curated skills into supported clients
pnpm install
pnpm bootstrap:env
pnpm devLocal endpoints:
http://127.0.0.1:19006(web)http://127.0.0.1:9788/api/skills(API)
GET /api/skillsGET /api/skills/tasksGET /api/skills/benchmarksGET /api/skills/:slugPOST /api/skills/recommend
Example request body:
{ "task": "...", "agent": "codex|claude|gemini" }pnpm skills:import
pnpm skills:benchmark
pnpm skills:demo- Curated import output:
benchmarks/imports/openai-curated-skills.json - Benchmark runs output:
benchmarks/runs/<date>-<mode>/
Modes for scripts/benchmark-skills.mjs:
auto(default): use Daytona when available, otherwise deterministic fallbackdaytona: requiresDAYTONA_API_KEYfallback: deterministic local artifact generation
Install the starter kit:
npx -y @just-every/skill@latest installAvailable commands:
installremovelistcreate
Examples:
npx -y @just-every/skill@latest list
npx -y @just-every/skill@latest remove --kit starter
npx -y @just-every/skill@latest create my-skill --description "What this skill does"SKILL.md templates support:
{{SKILL_DIR}}{{SKILL_NAME}}{{SKILLS_ROOT}}{{CLIENT_NAME}}
.env.example defaults:
PROJECT_ID=skillPROJECT_NAME="Every Skill"PROJECT_DOMAIN=https://skill.justevery.comAPP_URL=https://skill.justevery.com/app
Worker route metadata:
workers/api/wrangler.tomlworkers/api/wrangler.toml.template