Skip to content

vampik33/claude-plugins

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Plugins

A collection of Claude Code plugins for development workflows.

Installation

From GitHub (Recommended)

  1. Add the marketplace:
/plugin marketplace add vampik33/claude-plugins
  1. Install a plugin:
/plugin install <plugin-name>

Or use the /plugin menu to browse and install.

From Local Directory

claude --plugin-dir /path/to/claude-plugins/plugins/<plugin-name>

Available Plugins

Plugin Description
gtr Git worktree management using git-worktree-runner for parallel branch development
telegram Telegram notifications - manual or automatic messages when sessions exceed configured duration

Team Setup

Add to your project's .claude/settings.json for automatic marketplace discovery:

{
  "extraKnownMarketplaces": [
    "vampik33/claude-plugins"
  ]
}

Team members will be prompted to add the marketplace when they trust the project.

Repository Structure

claude-plugins/
├── .claude-plugin/
│   └── marketplace.json      # Marketplace manifest listing all plugins
├── plugins/
│   └── gtr/                  # Git worktree runner plugin
│       ├── .claude-plugin/
│       │   └── plugin.json   # Plugin manifest
│       ├── commands/         # Slash commands
│       ├── skills/           # Plugin skills
│       └── README.md         # Plugin documentation
├── LICENSE
└── README.md

Adding New Plugins

To add a new plugin:

  1. Create a new directory under plugins/:

    plugins/my-plugin/
    ├── .claude-plugin/
    │   └── plugin.json
    ├── commands/
    ├── skills/
    └── README.md
    
  2. Add the plugin to .claude-plugin/marketplace.json:

    {
      "plugins": [
        {
          "name": "my-plugin",
          "description": "What the plugin does",
          "version": "1.0.0",
          "source": "./plugins/my-plugin",
          "category": "Category",
          "keywords": ["relevant", "keywords"]
        }
      ]
    }

License

Apache License 2.0

About

Custom plugins for claude code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages