Awesome Claude Code Toolkit — 135 Agents, 176 Plugins
The most comprehensive Claude Code toolkit: 135 agents, 176+ plugins, 35 skills, 42 commands, 20 hooks, 15 rules, and 13 MCP configs. Apache 2.0 license, 1.1K+ GitHub stars.
What it is
The Awesome Claude Code Toolkit is a curated collection of extensions for Claude Code. It packages 135 agents, 176+ plugins, 35 skills, 42 commands, 20 hooks, 15 rules, and 13 MCP configurations into a single installable repository. Each extension is documented with usage instructions and configuration examples.
The toolkit is aimed at Claude Code users who want to expand their agent's capabilities without building custom extensions from scratch. Whether you need a code reviewer, a security auditor, a database helper, or a deployment automation agent, this toolkit likely has an option.
How it saves time or tokens
Instead of searching for individual Claude Code plugins across GitHub, this toolkit aggregates them in one place with standardized installation. The plugin marketplace integration means you can install extensions with a single command. Pre-configured hooks and rules automate common workflows like linting, testing, and formatting without manual setup.
The agents in the toolkit are pre-trained with role-specific system prompts, reducing the token overhead of explaining the agent's role in every conversation.
How to use
- Install via the plugin marketplace:
/plugin marketplace add https://github.com/rohitg00/awesome-claude-code-toolkit
/plugin install act@act
- Or clone and install manually:
git clone https://github.com/rohitg00/awesome-claude-code-toolkit.git
cd awesome-claude-code-toolkit
./install.sh
- Browse available extensions by category and install the ones you need.
Example
{
"hooks": {
"PreToolUse": [
{
"matcher": "Write",
"hooks": ["eslint --fix $CLAUDE_FILE_PATH"]
}
],
"PostToolUse": [
{
"matcher": "Write",
"hooks": ["prettier --write $CLAUDE_FILE_PATH"]
}
]
}
}
This hook configuration automatically lints and formats files after Claude Code writes them. Add it to ~/.claude/settings.json to apply globally.
Related on TokRepo
- AI coding tools -- Explore more developer tools for AI-assisted coding
- Prompt library -- Browse reusable prompts and skill templates
Common pitfalls
- Installing all 176 plugins at once slows down Claude Code's startup. Install only the plugins you actively use and remove unused ones.
- Some agents require API keys for external services (databases, CI/CD platforms, cloud providers). Read the agent's README for prerequisites before installing.
- Hook configurations can conflict if multiple hooks target the same tool event. Review your hooks configuration for overlapping matchers.
Frequently Asked Questions
The toolkit is maintained to stay compatible with current Claude Code releases. Check the repository's README for the minimum required Claude Code version. Some plugins may lag behind after major Claude Code updates.
Yes. The toolkit accepts contributions via pull requests. Each plugin needs documentation, an install script, and example configuration. The repository provides a template for submitting new plugins.
No. The toolkit is modular. You install individual plugins, agents, or skills based on your needs. The marketplace command lets you browse and install specific extensions without downloading the entire collection.
Yes. Each agent is defined by a system prompt and configuration file. You can modify the system prompt to adjust behavior, add domain-specific instructions, or change the default model settings.
Yes. The toolkit includes 13 MCP configurations for services like GitHub, Slack, PostgreSQL, and Docker. These configurations are ready-to-use templates that you add to your .mcp.json file.
Citations (3)
- Awesome Claude Code Toolkit GitHub— 135 agents, 176+ plugins, 35 skills, 42 commands
- Toolkit License— Apache 2.0 license
- Claude Code Documentation— Claude Code hooks and configuration system
Related on TokRepo
Source & Thanks
Created by rohitg00. Licensed under Apache 2.0.
awesome-claude-code-toolkit — ⭐ 1,100+
Thanks to rohitg00 for assembling the most feature-complete toolkit for Claude Code developers.
Discussion
Related Assets
nopCommerce — Open-Source ASP.NET E-Commerce Platform
A free, open-source e-commerce solution built on ASP.NET Core with a rich plugin architecture, multi-store support, and SQL Server backend.
Spree Commerce — Open-Source Headless E-Commerce for Ruby
A mature open-source headless e-commerce platform built with Ruby on Rails, offering REST API, TypeScript SDK, and a Next.js storefront for cross-border and marketplace commerce.
Conda — Cross-Platform Package and Environment Manager
Install, update, and manage packages and isolated environments for Python, R, C/C++, and hundreds of other languages from a single tool.