An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# builder-toolkit

[![CI](https://github.com/glebmish/builder-toolkit/actions/workflows/ci.yml/badge.svg)](https://github.com/glebmish/builder-toolkit/actions/workflows/ci.yml)
[![Release](https://img.shields.io/github/v/release/glebmish/builder-toolkit)](https://github.com/glebmish/builder-toolkit/releases)
[![License: MIT](https://img.shields.io/github/license/glebmish/builder-toolkit)](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.

![Hook blocking `git filter-repo` without `--refs`, with the agent explaining why the block protects the recovery net](plugins/git-history-rewrite/docs/images/hook-block.png)

[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)