skills-marketplace/.claude-plugin/marketplace.json
Michał Kopeć 4e11c144c7 Initial skills marketplace with 7 personal skill plugins
Structures ghost-writer, hr-manager, interview, meeting-notes, meeting-prep,
quiz, and resolve-todos as installable Claude Code plugins under a
.claude-plugin/marketplace.json manifest. Anthropic's built-in docx/pdf/pptx/xlsx
skills are excluded due to license restrictions, and mcp-builder/skill-creator
are excluded as not authored by me.
2026-07-15 13:57:37 +02:00

51 lines
1.7 KiB
JSON

{
"name": "skills-marketplace",
"owner": {
"name": "Michal Kopec"
},
"description": "A personal marketplace of Claude Code skills for interviews, meetings, and writing.",
"plugins": [
{
"name": "ghost-writer",
"source": "./plugins/ghost-writer",
"description": "Rewrite and humanize text to remove AI writing patterns and match your own voice.",
"version": "1.0.0"
},
{
"name": "hr-manager",
"source": "./plugins/hr-manager",
"description": "Run mock job interviews and produce a scored assessment with a prioritised learning plan.",
"version": "1.0.0"
},
{
"name": "interview",
"source": "./plugins/interview",
"description": "Run a structured interview and save the captured knowledge to a markdown file.",
"version": "1.0.0"
},
{
"name": "meeting-notes",
"source": "./plugins/meeting-notes",
"description": "Interview a participant about a meeting and produce structured meeting notes.",
"version": "1.0.0"
},
{
"name": "meeting-prep",
"source": "./plugins/meeting-prep",
"description": "Generate a prioritised list of questions for an upcoming meeting based on wiki knowledge gaps.",
"version": "1.0.0"
},
{
"name": "quiz",
"source": "./plugins/quiz",
"description": "Quiz the user on knowledge captured in the wiki, with scoring and immediate feedback.",
"version": "1.0.0"
},
{
"name": "resolve-todos",
"source": "./plugins/resolve-todos",
"description": "Find and resolve TODO items in a document, asking for input when instructions are unclear.",
"version": "1.0.0"
}
]
}