qmd/.claude-plugin/marketplace.json
Matt Galligan 63028fd5e9
feat: add Claude Code plugin support with inline status check (#99)
- Add marketplace.json for Claude Code plugin installation
- Simplify skill status check to inline `qmd status` (portable across agents)
- Update SKILL.md MCP section, reference mcp-setup.md for manual config
- Clean up mcp-setup.md (remove redundant prerequisites)
- Rename MCP-SETUP.md to mcp-setup.md

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 14:14:24 -05:00

30 lines
546 B
JSON

{
"name": "qmd",
"owner": {
"name": "tobi",
"email": "tobi@lutke.com"
},
"plugins": [
{
"name": "qmd",
"source": "./",
"description": "Search and retrieve documents from local markdown files.",
"version": "0.1.0",
"author": {
"name": "tobi",
"email": "tobi@lutke.com"
},
"repository": "https://github.com/tobi/qmd",
"license": "MIT",
"keywords": ["markdown", "search", "qmd"],
"skills": ["./skills/"],
"mcpServers": {
"qmd": {
"command": "qmd",
"args": ["mcp"]
}
}
}
]
}