plugins marketplace
← All plugins

pi-agent-plugins-smoke

v1.0.0

End-to-end smoke test for Agent Skills and MCP loading in Pi.

Agent Plugins1 skill1 MCP serverstdio

MIT3updated 2 days ago

Source

git clone https://github.com/BlockedPath/pi-agent-plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is examples/pi-agent-plugins-smoke/ inside the repository.

Layout

examples/pi-agent-plugins-smoke/
├── plugin.json
├── skills/agent-plugin-smoke-test/SKILL.md
└── mcp.json

Skills1

agent-plugin-smoke-testskills/agent-plugin-smoke-test/SKILL.md

Verify that a portable Agent Plugin loaded correctly in Pi by checking this skill and calling the bundled official MCP everything test server. Use when testing pi-agent-plugins installation, skill discovery, MCP trust, or MCP tool connectivity.

MCP servers1

everythingstdio
command
npx
args
-y @modelcontextprotocol/server-everything
cwd
${PLUGIN_DATA}

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Manifests1

examples/pi-agent-plugins-smoke/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "pi-agent-plugins-smoke",
  "version": "1.0.0",
  "description": "End-to-end smoke test for Agent Skills and MCP loading in Pi.",
  "license": "MIT",
  "keywords": [
    "smoke-test",
    "agent-skills",
    "mcp"
  ]
}