plugins marketplace
← All plugins

hello-plugin1

v0.1.0

Demo plugin with a single skill.

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-plugin1/ inside the repository.

Layout

plugins/hello-plugin1/
├── .claude-plugin/plugin.json
├── plugin.json
└── skills/hello1/SKILL.md

Skills1

hello1skills/hello1/SKILL.md

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

Manifests2

plugins/hello-plugin1/.claude-plugin/plugin.json
{
  "name": "hello-plugin1",
  "description": "Demo plugin with a single skill.",
  "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-plugin1/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "hello-plugin1",
  "version": "0.1.0",
  "description": "Demo plugin with a single skill.",
  "author": {
    "name": "Neel Thomas",
    "email": "neeltom92@gmail.com"
  },
  "repository": "https://github.com/neeltom92/agent-plugin-marketplace",
  "license": "MIT",
  "keywords": [
    "demo",
    "example"
  ]
}