Personal Claude Code plugin marketplace.
Live site: amims71.github.io/claude-plugins
Add this marketplace to your Claude Code once, then install any plugin from it. The marketplace handle is amim.
/plugin marketplace add amims71/claude-plugins
(gh auth or a public-repo clone is enough — no token needed for installing public plugins.)
| Plugin | Slash install | What it does |
|---|---|---|
comment-rule |
/plugin install comment-rule@amim |
Keeps Claude's code-commenting discipline consistent across long sessions. Injects a one-line nudge into every prompt + ships a skill containing the actual rule. |
claude-ntfy |
/plugin install claude-ntfy@amim |
Pushes Claude Code updates to your phone via ntfy — the turn-end message (PR link / decision / error), not a static "your turn". Auto-generates a private topic on first run with subscribe instructions. |
claude-plugins/
├── .claude-plugin/
│ └── marketplace.json # registers all plugins in this repo
├── plugins/
│ └── comment-rule/
│ ├── .claude-plugin/plugin.json
│ ├── hooks/
│ │ ├── hooks.json
│ │ └── prepend-comment-rule.sh
│ ├── skills/comment-rule/SKILL.md
│ └── README.md
└── README.md
- Create
plugins/<plugin-name>/with a.claude-plugin/plugin.jsonmanifest. - Add its
hooks/,skills/,commands/, oragents/directories as needed. - Append an entry to
.claude-plugin/marketplace.json:
{
"name": "<plugin-name>",
"description": "...",
"source": "./plugins/<plugin-name>",
"category": "workflow"
}- Bump
versionin the plugin manifest, commit, push. Users re-sync with/plugin marketplace update amim.