Fetch a skill from a Git repository, well-known domain, or the platform registry and install it locally. This is a read-only pull from the source. Agentver resolves the source, fetches the files, runs a security scan before anything touches disk, writes the skill to .agentver/skills/, connects it to all detected agents via symlinks, and records the source, version, and integrity hash in your manifest and lockfile. The skill is not published to the Agentver registry - use agentver publish for that.
Usage
$ agentver install <source>Arguments
<source>Git URL, well-known domain, or short name (e.g. github.com/acme/skill)Options
--agent <agent>Target a specific agent instead of auto-detecting--globalInstall globally--dry-runShow what would be installed without making changes--path <path>Override placement path--no-detectSkip agent auto-detection (requires --agent)--skip-auditSkip the security scanExamples
Install from a GitHub repo
$ agentver install github.com/acme/deploy-checkerInstall for Cursor only
$ agentver install github.com/acme/skill --agent cursorPreview without installing
$ agentver install github.com/acme/skill --dry-runNote: Install pulls from an external source into your local .agentver/ directory. It does not push anything to the Agentver registry. To publish your own skills, use agentver publish. To save changes to the platform, use agentver save.