claude-code-tools
Tools for enhancing and extending the Claude Code ecosystem
Summary
This skill provides a collection of tools and plugins to enhance the Claude Code ecosystem, including code quality analysis, testing automation, productivity enhancements, and DevOps workflows.
- It allows developers to install only the specific plugins they need, such as accessibility auditing, codebase auditing, or skill creation, directly from the marketplace.
Overview
Skills and hooks for Claude Code - code quality analysis, testing automation, productivity tools, and DevOps workflows
Quick Start
Install via Marketplace
# Add the marketplace
/plugin marketplace add cskiro/claudex
# Install individual plugins
/plugin install accessibility-audit@claudex
/plugin install codebase-auditor@claudex
/plugin install skill-creator@claudex
# ... or any other pluginEach skill is its own plugin - install only what you need.
Repository Structure
Follows Anthropic's official anthropics/claude-code/plugins/ pattern:
claudex/
├── .claude-plugin/
│ └── marketplace.json # Single source of truth for all plugin metadata
├── plugins/ # 23 plugins (1 per skill)
│ ├── accessibility-audit/
│ │ ├── skills/
│ │ │ └── accessibility-audit/
│ │ │ └── SKILL.md
│ │ └── README.md
│ ├── cc-insights/ # Includes hooks
│ │ ├── skills/
│ │ │ └── cc-insights/
│ │ │ └── SKILL.md
│ │ ├── hooks/
│ │ │ ├── hooks.json
│ │ │ └── extract-explanatory-insights.sh
│ │ └── README.md
│ └── ...
└── docs/ # DocumentationAvailable Plugins
All plugins follow the plugin-name@claudex installation pattern.
API & Structured Outputs
| Plugin | Description |
|---|---|
| structured-outputs-advisor | Expert advisor for choosing between JSON outputs and strict tool use modes |
| json-outputs-implementer | Implement JSON outputs mode with guaranteed schema compliance |
| strict-tool-implementer | Implement strict tool use mode with guaranteed parameter validation |
Code Analysis
| Plugin | Description |
|---|---|
| codebase-auditor | Comprehensive codebase analysis against 2024-25 SDLC standards |
| bulletproof-react-auditor | React codebase auditing against Bulletproof React architecture |
| accessibility-audit | WCAG 2.2 Level AA compliance auditing with MUI awareness |
Claude Code Ecosystem
| Plugin | Description |
|---|---|
| cc-insights | RAG-powered conversation analysis with semantic search and insight reports |
| sub-agent-creator | Generate Claude Code sub-agents following Anthropic's official patterns |
| mcp-server-creator | Create Model Context Protocol servers with TypeScript/Python SDKs |
| claude-md-auditor | Validate CLAUDE.md files against official standards and best practices |
| otel-monitoring-setup | Automated OpenTelemetry setup with Docker stack and Grafana dashboards |
Skill Development
| Plugin | Description |
|---|---|
| skill-creator | Generate skills following Claudex marketplace standards |
| skill-isolation-tester | Test skills in isolated environments (worktree, Docker, VMs) |
| insight-skill-generator | Generate skills from clustered insight patterns |
Testing
| Plugin | Description |
|---|---|
| e2e-testing | LLM-powered e2e testing with visual debugging and regression testing |
| mutation-testing | Test suite quality assessment via mutation analysis (Stryker, mutmut) |
Deprecated:
test-driven-developmenthas been removed in favor of a~/.claude/rules/configuration. TDD is better enforced as a development rule than a skill.
DevOps & Infrastructure
| Plugin | Description |
|---|---|
| react-project-scaffolder | React project setup (sandbox, enterprise, mobile modes) |
| github-repo-setup | GitHub repository creation with security, CI/CD, and governance |
| git-worktree-setup | Parallel Claude Code sessions via git worktrees |
Release & Documentation
| Plugin | Description |
|---|---|
| adr-generator | Architecture Decision Records creation with standard templates |
| ascii-diagram-creator | ASCII diagram generation for architecture and data flows |
| benchmark-report-creator | Academic benchmark reports with diagrams and PDF export |
| semantic-release-tagger | Automated git tagging with conventional commit analysis |
Hooks
The cc-insights plugin includes:
| Hook | Description |
|---|---|
| extract-explanatory-insights | Auto-extracts ★ Insight blocks from Explanatory responses |
Prerequisites
- •Claude Code - Latest version (Download)
- •Git - For marketplace integration
- •Python 3.8+ - For validation scripts and Python-based skills
- •jq 1.6+ - For hooks (install via
brew install jqon macOS)
Features
- •23 Skills distributed as individual plugins
- •1 Hook for automated insight extraction (bundled with cc-insights)
- •Anthropic-aligned structure - Mirrors official
anthropics/claude-code/plugins/pattern - •Modular installation - Install only what you need
- •Cross-platform - macOS, Linux, Windows (WSL2)
Team Configuration
Add to .claude/settings.json for automatic installation:
{
"extraKnownMarketplaces": {
"claudex": {
"source": {
"source": "github",
"repo": "cskiro/claudex"
}
}
},
"enabledPlugins": [
"codebase-auditor@claudex",
"skill-creator@claudex",
"semantic-release-tagger@claudex"
]
}Migration from v5.x
If upgrading from v5.x (grouped plugin structure):
# 1. Uninstall old plugins
/plugin uninstall claudex@claudex
# 2. Clear plugin cache
rm -rf ~/.claude/plugins/claudex*
# 3. Update marketplace and install individual plugins
/plugin marketplace update claudex
/plugin install codebase-auditor@claudex
/plugin install skill-creator@claudex
# ... install other plugins as neededValidation
# Validate marketplace.json schema
python3 scripts/validate-marketplace.py
# Validate all skills
python3 scripts/validate-skills.py plugins/
# Pre-release validation suite
python3 scripts/validate-pre-release.pyLicense
Apache 2.0
Maintained by: Connor Current Version: v6.2.0 Last Updated: 2026-02-04
Skills and hooks for extending Claude Code capabilities across the software development lifecycle.
Install & Usage
~/.claude.jsonAdd the configuration to "mcpServers": { "claude-code-tools": { "command": "...", "args": [] } }
/mcpUse Cases
Usage Examples
/plugin install accessibility-audit@claudex
Run a codebase audit using the codebase-auditor plugin.
Create a new skill with the skill-creator plugin and add it to my project.
Security Audits
Frequently Asked Questions
What is claude-code-tools?
This skill provides a collection of tools and plugins to enhance the Claude Code ecosystem, including code quality analysis, testing automation, productivity enhancements, and DevOps workflows. It allows developers to install only the specific plugins they need, such as accessibility auditing, codebase auditing, or skill creation, directly from the marketplace.
How to install claude-code-tools?
To install claude-code-tools: open your mcp config (~/.claude.json), then add the config to "mcpServers": { "claude-code-tools": { "command": "...", "args": [] } }. Finally, /mcp in Claude Code.
What is claude-code-tools best for?
claude-code-tools is a mcp categorized under Development. Created by Connor.
What can I use claude-code-tools for?
claude-code-tools is useful for: Quickly install and manage Claude Code plugins for specific development tasks like accessibility audits or codebase analysis.; Automate code quality checks by integrating plugins that perform linting, testing, or security scanning.; Streamline DevOps workflows with plugins that automate deployment, monitoring, or CI/CD pipeline tasks.; Create custom skills and hooks to extend Claude Code's functionality for project-specific needs.; Audit a codebase for accessibility issues using the accessibility-audit plugin during development.; Generate structured outputs or JSON schemas with the structured-outputs-advisor plugin for API development..