A Claude Code marketplace of Darshan Gada's plugins — productivity automations for solo founders, Trello-driven autonomous developers, and adjacent workflows.
claude marketplace add dr5hn/claude-pluginsThen enable the plugins you want:
claude plugin enable webby-wonder-autopilot| Plugin | Version | Description |
|---|---|---|
webby-wonder-autopilot |
0.1.0 |
Trello-driven autonomous developer pipeline. Picks up cards labelled ww-ready, executes the work in a git worktree, opens PRs for review, surfaces only the decisions that genuinely need you. Built for solo founders with limited time. |
- Create the plugin under
plugins/<plugin-name>/with the standard layout (.claude-plugin/plugin.json,commands/,hooks/,skills/, etc. — see Claude Code plugin structure) - Append a new entry to
.claude-plugin/marketplace.jsonpluginsarray — at minimum:name,description,version,source(path),author - Update the table above so users can discover it
- Commit, tag a marketplace release if you version this repo independently of individual plugins
Each plugin tracks its own version in marketplace.json. The marketplace itself doesn't carry a version — clients pull the latest commit on main.
claude-plugins/
├── .claude-plugin/
│ └── marketplace.json # marketplace manifest (lists every plugin)
├── plugins/
│ └── webby-wonder-autopilot/ # one subdirectory per plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # plugin manifest
│ ├── commands/ # slash commands
│ ├── hooks/ # event hooks (hooks.json + scripts/)
│ ├── skills/ # auto-activated skills (each in its own subdir with SKILL.md)
│ ├── scripts/ # bootstrap / helper scripts
│ ├── docs/ # plugin documentation
│ └── README.md
├── .github/workflows/
│ └── ci.yml # validates marketplace.json + every plugin manifest
├── README.md # this file
└── LICENSE
Validate the marketplace + every plugin manifest locally:
# Marketplace JSON well-formed
jq empty .claude-plugin/marketplace.json
# Every plugin's manifest well-formed
for f in plugins/*/.claude-plugin/plugin.json; do
jq empty "$f" && echo "✓ $f"
done
# Every plugin's hook scripts pass bash syntax check
for f in plugins/*/hooks/scripts/*.sh plugins/*/scripts/*.sh; do
bash -n "$f" && echo "✓ $f"
doneCI runs the same checks on every PR.
MIT — see LICENSE.