Package Types

Agentver manages five types of packages - covering the full range of assets that make AI agents useful.

Skill

SKILL.md

Agent instructions and workflows. The core package type. A SKILL.md file contains frontmatter metadata and markdown instructions that agents follow.

Example: A deployment validation skill that checks configuration files before deployment.

Agent Config

.cursorrules, CLAUDE.md, etc.

Configuration overrides for specific agents. Agentver automatically translates between agent config formats so one config can work across agents.

Example: A .cursorrules file that sets coding standards for your team.

Plugin

plugin.json + optional MCP server

External tools and integrations. Plugins can include MCP (Model Context Protocol) server definitions for agents that support tool use.

Example: A database query plugin that gives agents access to your schema.

Script

Manifest metadata + executable

Executable automation scripts in Node.js, Bun, Python, or Bash. Scripts run standalone and can be invoked by agents or CI/CD pipelines.

Example: A pre-commit hook that validates skill integrity before pushing.

Prompt

PROMPT.md with frontmatter

Reusable prompt templates with variable substitution. Prompts have typed parameters that can be filled in at runtime.

Example: A code review prompt template with parameters for language and focus area.