SkillValit Documentation
Everything you need to manage and install AI Agent Skills.
Getting Started
SkillValit is a registry for AI Agent skills — reusable prompt templates and tools that train agents like Claude, Gemini, Codex, and generic .agents/ tools.
1. Create an Organization
Sign in to the SkillValit dashboard and create an organization. Your organization groups your skills and manages API access.
2. Generate a CLI Token
Navigate to Settings and find the Telemetry Registry Bearer Token block — view or regenerate your API key there. Save it — you will need it for CLI installation.
3. Install a Skill via CLI
No install required — run the CLI directly:
npx skill-valit add my-org/my-skill --key YOUR_API_KEYThe same works with bunx skill-valit add my-org/my-skill --key YOUR_API_KEY or pnpm dlx skill-valit add my-org/my-skill --key YOUR_API_KEY.
Developing against a local checkout? Install the CLI globally with npm install -g ./cli, then run skill-valit add my-org/my-skill --key YOUR_API_KEY directly.
Install a Whole Skill Set (add-set)
add-set installs every non-deleted skill in a skill set at once. Skill set names can contain spaces, so quote the <org>/<set> path:
skill-valit add-set "my-org/my-set" --key YOUR_API_KEYOr via npx: npx skill-valit add-set "my-org/my-set" --key YOUR_API_KEY. Takes the same --key and -t options as add.
Choose an Install Target
Use -t, --target <target> to control where the skill lands: agents, claude, gemini, or codex, writing into .agents/skills/, .claude/skills/, .gemini/skills/, or .codex/skills/ respectively, each as <skill-id>/SKILL.md. Omit -t and the CLI shows an interactive picker instead. Applies to both add and add-set.
Zero-Dependency Install (curl | sh)
No CLI install needed — pipe the install script directly to sh:
curl -H "Authorization: Bearer $AGENT_VAULT_KEY" \ https://skill-valit.vercel.app/api/my-org/skill/my-skill/install | shSpecify a target tool with ?tool= (defaults to agents):
curl -H "Authorization: Bearer $KEY" \ 'https://skill-valit.vercel.app/api/my-org/skill/my-skill/install?tool=claude' | shIf you omit --key, the CLI will prompt you interactively for your API key. You can also set the AGENT_VAULT_KEY environment variable.
4. Set the Server URL
By default the CLI connects to https://skill-valit.vercel.app. Set AGENT_VAULT_URL to change the target server (e.g. for local development).