Custom Claude Code plugins by mkelk
npx claudepluginhub mkelk/claude-marketplaceSpec-Driven Development workflow with ticks-based task tracking for AI agents
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
A marketplace for Claude Code plugins by mkelk.
claude-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Plugin registry
└── plugins/
└── sdd/ # Spec-Driven Development plugin
Add this marketplace using the /plugin command in Claude Code, then select "Add Marketplace" and enter:
mkelk/claude-marketplace
Once the marketplace is added, use /plugin to browse and install plugins.
A structured workflow for spec-driven development with ticks-based task tracking.
Commands:
/sdd:startspec - Start a new specification document/sdd:checkspec - Validate a spec against the codebase/sdd:createplan - Create ticks (tasks) from a spec/sdd:checkin-and-pr - Commit and create PR with ticks summaryRequirements:
tk CLI for ticks-based task managementgh CLI for GitHub PR creationplugins/.claude-plugin/plugin.json manifestcommands/.claude-plugin/marketplace.json{
"name": "my-plugin",
"version": "1.0.0",
"description": "What my plugin does",
"author": {
"name": "Your Name",
"email": "you@example.com"
},
"commands": "./commands/"
}
Commands use YAML frontmatter + Markdown:
---
description: What this command does
argument-hint: [optional-args]
---
Instructions for Claude to follow...
MIT