userConfig never prompted the user at install time in testing, so all credential-needing skills stay on .env.example + .env. Adds the missing .env.example/.gitignore to check-my-timesheet and invoice-prep to match invoice-checker and timesheet-checker.
49 lines
2.2 KiB
Markdown
49 lines
2.2 KiB
Markdown
# Skills Marketplace
|
|
|
|
A Claude Code plugin marketplace bundling personal skills for interviews, meetings,
|
|
writing, and invoice/timesheet checks. Each skill is packaged as its own installable plugin.
|
|
|
|
## Plugins
|
|
|
|
| Plugin | Description |
|
|
| --- | --- |
|
|
| `ghost-writer` | Rewrite and humanize text to remove AI writing patterns and match your own voice. |
|
|
| `hr-manager` | Run mock job interviews and produce a scored assessment with a prioritised learning plan. |
|
|
| `interview` | Run a structured interview and save the captured knowledge to a markdown file. |
|
|
| `ivona` | Check KSeF invoices against contractors/white-list and audit team timesheet completion via Tempo. |
|
|
| `meeting-notes` | Interview a participant about a meeting and produce structured meeting notes. |
|
|
| `meeting-prep` | Generate a prioritised list of questions for an upcoming meeting based on wiki knowledge gaps. |
|
|
| `quiz` | Quiz the user on knowledge captured in the wiki, with scoring and immediate feedback. |
|
|
| `resolve-todos` | Find and resolve TODO items in a document, asking for input when instructions are unclear. |
|
|
| `timesheet` | Check and log your own Tempo timesheet, and see what to put on your invoice for a given month. |
|
|
|
|
## Installing
|
|
|
|
Add this marketplace locally and install a plugin:
|
|
|
|
```bash
|
|
/plugin marketplace add "/Users/michalkopec/Documents/Projects/Skills Marketplace"
|
|
/plugin install ghost-writer@skills-marketplace
|
|
```
|
|
|
|
This marketplace is published at `git.wierzbowa.cloud`. Since that's not GitHub, the
|
|
bare `owner/repo` shorthand won't resolve — use the full clone URL instead:
|
|
|
|
```bash
|
|
/plugin marketplace add https://git.wierzbowa.cloud/Cloud_Drift/skills-marketplace.git
|
|
```
|
|
|
|
## Credential setup
|
|
|
|
Plugins that call an external API (Tempo, Jira, KSeF) read credentials from a `.env`
|
|
file the user creates from each skill's `.env.example`. We tested Claude Code's plugin
|
|
`userConfig` mechanism (prompting for a credential at install time) as an alternative —
|
|
in practice it did not prompt the user at all, so we're sticking with `.env` files
|
|
across all plugins.
|
|
|
|
## Licensing
|
|
|
|
All plugins (`ghost-writer`, `hr-manager`, `interview`, `ivona`, `meeting-notes`,
|
|
`meeting-prep`, `quiz`, `resolve-todos`, `timesheet`) are licensed under the MIT
|
|
License — see [LICENSE](LICENSE).
|
|
|