https://github.com/glebmish/builder-toolkit
A collection of Claude Code plugins I use to create software
https://github.com/glebmish/builder-toolkit
agentic-coding claude-code claude-code-plugin git plugin-marketplace
Last synced: about 1 month ago
JSON representation
A collection of Claude Code plugins I use to create software
- Host: GitHub
- URL: https://github.com/glebmish/builder-toolkit
- Owner: glebmish
- License: mit
- Created: 2026-05-23T07:08:09.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-23T07:31:12.000Z (about 1 month ago)
- Last Synced: 2026-05-23T09:29:02.104Z (about 1 month ago)
- Topics: agentic-coding, claude-code, claude-code-plugin, git, plugin-marketplace
- Language: Shell
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# builder-toolkit
[](https://github.com/glebmish/builder-toolkit/actions/workflows/ci.yml)
[](https://github.com/glebmish/builder-toolkit/releases)
[](LICENSE)
A collection of skills and plugins loosely related to building projects.
Each entry below ships as a Claude Code plugin (via this marketplace) and
as a standalone skill installable with [`npx skills`](https://github.com/vercel-labs/skills).
Bundled hooks (where present) are only registered on the plugin-install
path; the skill-only install gives you the SKILL.md without hook
enforcement.
```
claude plugin marketplace add glebmish/builder-toolkit
npx skills add glebmish/builder-toolkit
```
## Plugins
### git-history-rewrite
Safety net for destructive git operations — bundles a `PreToolUse` hook that
blocks unsafe forms of `git` history rewrite commands and steers toward creating
backups before running those commands.

[Full details →](plugins/git-history-rewrite/README.md)
**Install**
As a Claude Code plugin (recommended — enables the hook):
```
claude plugin marketplace add glebmish/builder-toolkit
claude plugin install git-history-rewrite@builder-toolkit
```
As a standalone skill (skill body only, no hook):
```
npx skills add glebmish/builder-toolkit --skill git-history-rewrite
```
**Prerequisites**
`jq` on `PATH` — the PreToolUse hook parses tool-input JSON with it. Only
required for the plugin install path.
## Releases
Versioned releases are published at [GitHub Releases](https://github.com/glebmish/builder-toolkit/releases).
## License
[MIT](LICENSE)