plugins marketplace
← All plugins

hello-plugin2

v0.1.0

Second demo plugin, showing a collection holds more than one.

Claude CodeAgent Plugins1 skill

by Neel ThomasMIT0updated 2 days ago

Source

git clone https://github.com/neeltom92/agent-plugin-marketplace

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/hello-plugin2/ inside the repository.

Layout

plugins/hello-plugin2/
├── .claude-plugin/plugin.json
├── plugin.json
└── skills/hello2/SKILL.md

Skills1

hello2skills/hello2/SKILL.md

Use when the user says hello or asks the plugin to introduce itself. Demo skill from hello-plugin2.

Manifests2

plugins/hello-plugin2/.claude-plugin/plugin.json
{
  "name": "hello-plugin2",
  "description": "Second demo plugin, showing a collection holds more than one.",
  "version": "0.1.0",
  "author": {
    "name": "Neel Thomas",
    "email": "neeltom92@gmail.com"
  },
  "repository": "https://github.com/neeltom92/agent-plugin-marketplace",
  "license": "MIT",
  "keywords": [
    "demo",
    "example"
  ]
}
plugins/hello-plugin2/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "hello-plugin2",
  "version": "0.1.0",
  "description": "Second demo plugin, showing a collection holds more than one.",
  "author": {
    "name": "Neel Thomas",
    "email": "neeltom92@gmail.com"
  },
  "repository": "https://github.com/neeltom92/agent-plugin-marketplace",
  "license": "MIT",
  "keywords": [
    "demo",
    "example"
  ]
}