Skip to content

dr5hn/claude-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dr5hn-plugins

License: MIT Marketplace

A Claude Code marketplace of Darshan Gada's plugins — productivity automations for solo founders, Trello-driven autonomous developers, and adjacent workflows.

Install

claude marketplace add dr5hn/claude-plugins

Then enable the plugins you want:

claude plugin enable webby-wonder-autopilot

Plugins in this marketplace

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.

Adding a new plugin

  1. Create the plugin under plugins/<plugin-name>/ with the standard layout (.claude-plugin/plugin.json, commands/, hooks/, skills/, etc. — see Claude Code plugin structure)
  2. Append a new entry to .claude-plugin/marketplace.json plugins array — at minimum: name, description, version, source (path), author
  3. Update the table above so users can discover it
  4. Commit, tag a marketplace release if you version this repo independently of individual plugins

Versioning

Each plugin tracks its own version in marketplace.json. The marketplace itself doesn't carry a version — clients pull the latest commit on main.

Layout

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

Development

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"
done

CI runs the same checks on every PR.

License

MIT — see LICENSE.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages