skills-marketplace/.claude-plugin/marketplace.json
Michał Kopeć 576a14c82f Add ivona and timesheet plugins, MIT LICENSE, and invoice-prep-test
Adds ivona (invoice-checker, timesheet-checker) and timesheet
(check-my-timesheet, invoice-prep) as new plugins, plus invoice-prep-test — a
one-off experiment that requests the Tempo API token via plugin userConfig at
install time instead of a .env file, to check whether that value actually
reaches the skill's script. Also adds the root LICENSE (MIT) referenced from
the README.
2026-07-15 15:00:21 +02:00

69 lines
2.3 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": "invoice-prep-test",
"source": "./plugins/invoice-prep-test",
"description": "TEST: copy of invoice-prep that asks for the Tempo API token via plugin userConfig at install time.",
"version": "1.0.0"
},
{
"name": "ivona",
"source": "./plugins/ivona",
"description": "Check KSeF invoices against contractors/white-list and audit team timesheet completion via Tempo.",
"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"
},
{
"name": "timesheet",
"source": "./plugins/timesheet",
"description": "Check and log your own Tempo timesheet, and see what to put on your invoice for a given month.",
"version": "1.0.0"
}
]
}