Short, actionable docs for the registry. Start with the guides; reach for reference when you need the full schema.
Scaffold, validate, sign, and ship your first skill end to end. ~10 minutes.
Pull a published skill into your local agent. CLI + SDK paths, when to use each.
Prove you control a domain via DNS TXT challenge. Promotes you from unverified → verified.
Drop a registry-hosted MCP server into Claude Desktop, Cursor, or VS Code. Two minutes.
Wire compose_intent into Claude Code, Cursor, or any MCP-aware client. Three transports, one set of tools.
Required fields, modes, capabilities, endpoints, signatures.
Search, fetch, compose, BYOK-invoke skills from any agent framework.
Merge multiple skills, resolve conflicts, attach provenance inline.
Trust-tier gating, rate limits, SSRF guard, health probes — what the proxy does for you.
# install the CLI
npm install -g @amitte-ai/cli
# scaffold a new skill
skills init mobile/ios-publishing
cd mobile-ios-publishing
$EDITOR skill.md
# sign in (GitHub device flow)
skills login
# publish to the registry
skills publish
# consume from any agent
import { Skills } from '@amitte-ai/sdk';
const skills = new Skills({ registry: 'https://registry.amitte.com' });
const s = await skills.fetch('mobile/ios-publishing');
await agent.inject(s);