BeClaude

claude-code-tools

Community RegistryDevelopmentby Connor

Tools for enhancing and extending the Claude Code ecosystem

First seen 4/17/2026

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

bash
# 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 plugin

Each skill is its own plugin - install only what you need.


Repository Structure

Follows Anthropic's official anthropics/claude-code/plugins/ pattern:

code
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/                       # Documentation

Available Plugins

All plugins follow the plugin-name@claudex installation pattern.

API & Structured Outputs

PluginDescription
structured-outputs-advisorExpert advisor for choosing between JSON outputs and strict tool use modes
json-outputs-implementerImplement JSON outputs mode with guaranteed schema compliance
strict-tool-implementerImplement strict tool use mode with guaranteed parameter validation

Code Analysis

PluginDescription
codebase-auditorComprehensive codebase analysis against 2024-25 SDLC standards
bulletproof-react-auditorReact codebase auditing against Bulletproof React architecture
accessibility-auditWCAG 2.2 Level AA compliance auditing with MUI awareness

Claude Code Ecosystem

PluginDescription
cc-insightsRAG-powered conversation analysis with semantic search and insight reports
sub-agent-creatorGenerate Claude Code sub-agents following Anthropic's official patterns
mcp-server-creatorCreate Model Context Protocol servers with TypeScript/Python SDKs
claude-md-auditorValidate CLAUDE.md files against official standards and best practices
otel-monitoring-setupAutomated OpenTelemetry setup with Docker stack and Grafana dashboards

Skill Development

PluginDescription
skill-creatorGenerate skills following Claudex marketplace standards
skill-isolation-testerTest skills in isolated environments (worktree, Docker, VMs)
insight-skill-generatorGenerate skills from clustered insight patterns

Testing

PluginDescription
e2e-testingLLM-powered e2e testing with visual debugging and regression testing
mutation-testingTest suite quality assessment via mutation analysis (Stryker, mutmut)

Deprecated: test-driven-development has been removed in favor of a ~/.claude/rules/ configuration. TDD is better enforced as a development rule than a skill.

DevOps & Infrastructure

PluginDescription
react-project-scaffolderReact project setup (sandbox, enterprise, mobile modes)
github-repo-setupGitHub repository creation with security, CI/CD, and governance
git-worktree-setupParallel Claude Code sessions via git worktrees

Release & Documentation

PluginDescription
adr-generatorArchitecture Decision Records creation with standard templates
ascii-diagram-creatorASCII diagram generation for architecture and data flows
benchmark-report-creatorAcademic benchmark reports with diagrams and PDF export
semantic-release-taggerAutomated git tagging with conventional commit analysis

Hooks

The cc-insights plugin includes:

HookDescription
extract-explanatory-insightsAuto-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 jq on 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:

json
{
  "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):

bash
# 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 needed

Validation

bash
# 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.py

License

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

1
Open your MCP config
~/.claude.json
2
Add the server config

Add the configuration to "mcpServers": { "claude-code-tools": { "command": "...", "args": [] } }

3
Restart Claude Code
/mcp

Use Cases

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.

Usage Examples

1

/plugin install accessibility-audit@claudex

2

Run a codebase audit using the codebase-auditor plugin.

3

Create a new skill with the skill-creator plugin and add it to my project.

View source on GitHub

Security Audits

LicenseUnknownSourceWarnRepositoryPass

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..