← All plugins
agent-plugins-example
v1.0.0A copyable reference package and migration guide for Agent Plugins v1.0.0.
Agent Plugins1 skill
MIT34updated 4 days ago
Source
git clone https://github.com/agentplugins/agent-plugins-exampleClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
agent-plugins-example/
├── plugin.json└── skills/migrate-agent-plugin/SKILL.md
Skills1
migrate-agent-pluginskills/migrate-agent-plugin/SKILL.md
Migrate an existing Claude, Copilot, Codex, Cursor, Kiro, VS Code, or other client-specific agent plugin to the portable Agent Plugins v1 structure while preserving platform-specific hooks, agents, commands, LSP, UI, and marketplace behavior. Use when auditing, converting, or modernizing an agent plugin.
Manifests1
plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "agent-plugins-example",
"version": "1.0.0",
"description": "A copyable reference package and migration guide for Agent Plugins v1.0.0.",
"license": "MIT",
"keywords": [
"agent-plugins",
"example",
"migration",
"skills"
]
}