feat: add 10 pluginpool plugins (productivity suite)#217
Open
mturac wants to merge 1 commit into
Open
Conversation
Adds all 10 plugins from mturac/pluginpool — focused developer productivity helpers, each one a deterministic Python script (stdlib only at runtime) wrapped as a Claude Code slash command. 89 hermetic tests across the suite, MIT. Plugins added: - commit-narrator (Git Workflow) — semantic commit message from staged diff - pr-storyteller (Git Workflow) — PR title + body + test plan from commits - test-gap (Code Quality Testing) — diff lines lacking test coverage - deps-doctor (Security) — multi-ecosystem dependency audit - env-lint (Code Quality Testing) — .env vs .env.example key parity - secret-guard (Security) — pre-commit secret scanner - standup-gen (Development Engineering) — standup notes from git activity - todo-harvest (Code Quality Testing) — TODO/FIXME/HACK scan with blame - flaky-detector (Code Quality Testing) — per-test flakiness % from N runs - changelog-forge (Documentation) — conventional commits → CHANGELOG Each plugin folder contains .claude-plugin/plugin.json, commands/, scripts/, README.md, LICENSE. README.md updated to list all 10 in their respective categories. marketplace.json updated with the 10 new entries.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds all 10 plugins from mturac/pluginpool — focused developer productivity helpers wrapped as Claude Code slash commands.
What's added
10 plugins, each placed in the appropriate category:
git diff --cached, including the why.envvs.env.examplekey parity — never prints valuesgit blameauthor + age89 hermetic tests across the suite, all green. Python standard library only at runtime — no
pip installneeded. MIT.PR contents
plugins/<name>/for each of 10 plugins. Every folder contains:.claude-plugin/plugin.json(valid manifest)commands/<name>.md(slash command with YAML frontmatter)scripts/<helper>.py(stdlib-only Python helper)README.md,LICENSE(MIT)README.md: adds each plugin under its appropriate category section.claude-plugin/marketplace.json: appends 10 new entries with name, source, description, version, author, category, homepage, keywordsUpstream
Each plugin also lives in its own dedicated repository under mturac/pluginpool-, so users who only want one plugin can clone that single repo. The umbrella index is at https://github.com/mturac/pluginpool.
Happy to revise categories, descriptions, or split into smaller PRs if you'd prefer.