The honest breakdown of where AutoVault wins, ties, and doesn't.
The homepage table is a teaser. This page is the long form — including the cases where another approach is genuinely better. We re-evaluate every release; if a competitor closes a gap, we say so here first.
If you publish skills for more than one agent and care about provenance, AutoVault is the only option that solves both with a single SKILL.md and a public, reproducible gate. If you only publish for one agent and don't care about signing, RawHub is fine and free. If your team has been hand-maintaining per-agent forks of the same skill, you're paying the ForkFlow tax — that's the case AutoVault was built to retire.
Feature-by-feature.
Twelve dimensions across four sections. Cells show the verdict plus a one-line explanation — never a flat checkmark, because flat checkmarks lie.
Where AutoVault is genuinely behind. RawHub has more skills (3,400 vs. our 241) — community indexes always do. ForkFlow has a richer GUI for browsing per-agent forks; if you live mostly in one agent's tooling and don't care about cross-agent skills, that may matter to you. Hosted AutoVault is intentionally narrow right now: fast launch, remote MCP, OAuth, and signed skill delivery before the broader team-management surface grows.
Pick by situation, not by feature count.
Four short cards with the real-world signals that should push you toward each option. We try not to recommend ourselves when we shouldn't.
Pick AutoVault when…
You ship skills for two or more agents, can't tolerate drift, and need a verifiable provenance chain before anything reaches a developer's machine.
- We have CLAUDE.md, .cursorrules, and AGENTS.md, and they keep diverging
- Security blocked a registry because there's no signing
- We need to audit which skills loaded last week
- We want a private vault behind our VPN
Pick RawHub when…
You're a solo developer using one agent, breadth matters more than provenance, and you'd rather copy-paste five skills today than configure anything.
- Personal projects, not work product
- Single-agent setup
- You're fine reading every skill before pasting
- Discovery matters more than trust
Pick ForkFlow when…
You're already deep in one agent's ecosystem, you don't write skills, and per-agent UX matters more than a unified source.
- You consume skills, never publish them
- Marketplace UI matters more than CLI
- Installing the same skill twice is acceptable
Skip tooling entirely when…
You have fewer than five skills total, your team is one or two people, and any registry would be larger than the problem.
- The whole skill folder fits in one screenshot
- You can name every skill from memory
- Your agents don't support skill autoloading yet
What we believe that the alternatives don't.
Below the feature matrix, AutoVault is shaped by two opinions about where the agent-skill ecosystem is heading.
Bet #1 · Skills are infrastructure, not content
Treat them like SBOMs, not Stack Overflow answers
Bet #2 · The agent format wars are permanent
There will not be one universal skill format
Already using one of the others? Here's the path.
We provide first-class importers for the three common starting points. Migration runs through the same gate as authoring, so what you import is what gets signed.
From RawHub
The CLI walks RawHub's index, downloads each skill, and runs it through the gate before it lands in your vault.
autovault import rawhub --user you
# found 47 skills · running gate…
✓ 41 imported · 5 repaired · 1 rejectedFrom ForkFlow (per-agent forks)
Point the importer at all three forks of the same skill. It merges them into one canonical SKILL.md plus a populated transformation manifest.
autovault import forkflow \
--claude ./forks/extract-pdf.cc \
--codex ./forks/extract-pdf.cx \
--cursor ./forks/extract-pdf.cu
# merged 3 forks → 1 SKILL.md + 3 transformationsFrom hand-maintained CLAUDE.md / AGENTS.md / .cursorrules
The importer parses each file, identifies skill-shaped sections, and proposes one SKILL.md per section.
autovault import manual ./CLAUDE.md
# detected 6 skill-shaped sections
✓ 6 SKILL.md drafts written to ./drafts/
autovault publish ./drafts/*.md