Skip to content

yu-iskw/hello-world

v1.0.0Apache-2.0

Comprehensive sample plugin demonstrating portable Agent Skills and MCP alongside Claude Code extensions.

MCP servers

Declared configuration, as published in mcp.json. The directory shows indexed content; it never connects to or executes these servers.

sample-sqlitestdio
{
  "type": "stdio",
  "command": "npx",
  "args": [
    "-y",
    "@modelcontextprotocol/server-sqlite",
    "--db",
    "${PLUGIN_DATA}/sample.db"
  ],
  "env": {
    "DEBUG": "true"
  },
  "cwd": "${PLUGIN_ROOT}"
}

What this package declares

The files a client reads when it loads this plugin, exactly as this revision carries them.

{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "hello-world",
  "version": "1.0.0",
  "description": "Comprehensive sample plugin demonstrating portable Agent Skills and MCP alongside Claude Code extensions.",
  "author": {
    "name": "yu-iskw"
  },
  "homepage": "https://github.com/yu-iskw/claude-code-plugin-template/tree/main/plugins/hello-world",
  "repository": "https://github.com/yu-iskw/claude-code-plugin-template",
  "license": "Apache-2.0",
  "keywords": ["agent-plugin", "agent-skills", "mcp", "claude-code"]
}