Claude Code plugin marketplace by Maskar. A collection of generic, reusable skills and extensions.
| Plugin | Description |
|---|---|
| sawkit | Markdown authoring, diagram generation, and project structure skills |
Inside a Claude Code session, register this repository as a plugin marketplace:
/plugin marketplace add Maskar/cc-plugins
/plugin install sawkit@Maskar
To use a local clone instead of the GitHub repository:
/plugin marketplace add /path/to/cc-plugins
To load a plugin for a single session without installing:
claude --plugin-dir /path/to/cc-plugins/sawkitGeneric toolkit with three auto-triggering skills:
| Skill | Purpose | Slash Command |
|---|---|---|
| md-expert | Markdown authoring, formatting, linting, tables, TOC, links | /sawkit:md-expert |
| diagram-expert | Diagram generation, tier ladder, tool selection, rendering | /sawkit:diagram-expert |
| project-structure | Repo scaffolding, file organization, all project types | /sawkit:project-structure |
See sawkit/README.md for full details.
-
Create a directory at the repo root (e.g.
myplugin/) -
Add the plugin structure:
myplugin/ ├── .claude-plugin/ │ └── plugin.json ├── README.md └── skills/ └── skill-name/ ├── SKILL.md ├── references/ └── scripts/ -
Register the plugin in
.claude-plugin/marketplace.json:{ "name": "myplugin", "source": "./myplugin", "description": "Brief description", "version": "0.1.0", "author": { "name": "Your Name" }, "keywords": ["tag1", "tag2"] } -
Commit and push