Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Intelligent research agent for investigating codebases, discovering best practices, and analyzing patterns. Provides deep analysis, comparative research, and actionable recommendations.
npx claudepluginhub c0ntr0lledcha0s/claude-code-plugin-automations --plugin research-agentLook up current best practices for a technology, pattern, or implementation approach with recommendations
Compare multiple approaches, technologies, or implementations with trade-off analysis and recommendations
Deep-dive investigation of code, features, or components with execution tracing and detailed analysis
Conduct comprehensive research on a topic, technology, or question with evidence and recommendations
Automatically activated when user asks to "find patterns in...", "identify repeated code...", "analyze the architecture...", "what design patterns are used...", or needs to understand code organization, recurring structures, or architectural decisions
Automatically activated when user asks how something works, wants to understand unfamiliar code, needs to explore a new codebase, or asks questions like "where is X implemented?", "how does Y work?", or "explain the Z component"
Automatically activated when user asks "what's the best way to...", "how should I...", "what are best practices for...", or requests recommendations, industry standards, or proven approaches for implementing features
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Multi-agent collaboration plugin for Claude Code. Spawn N parallel subagents that compete on code optimization, content drafts, research approaches, or any problem that benefits from diverse solutions. Evaluate by metric or LLM judge, merge the winner. 7 slash commands, agent templates, git DAG orchestration, message board coordination.
Analytical thinking tools - dialectic analysis, bias elimination, codex consultation
Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, and rules evolved over 10+ months of intensive daily use
Personal Claude Code + Codex dev stack: security hooks, AI-first code conventions, /security-review, /repo-map, /stack-check, portable statusline. Designed to complement other skills-based plugins, not replace them.
Four-tier autonomous agent architecture with specialized agents, skills, and commands for code analysis, quality control, pattern learning, and automated validation.
Audit and optimize Claude Code configurations with dynamic best-practice research
Streamlined GitHub workflow automation with 9 core commands and 9 auto-invoking skills. Covers project boards, labels, milestones, commits, issues, pull requests, branching strategies, and worktrees. Features automatic issue tracking, commit integration, branching flow automation (gitflow, GitHub Flow, trunk-based), and session environment setup.
Expert plugin for Logseq's database-based architecture with full CRUD capabilities. Provides Datascript schema knowledge, Datalog query building, HTTP API integration, MCP server, and comprehensive read/write operations for Logseq graphs.
Self-improvement system for Claude with critic agent, quality analysis skills, automated conversation analysis, and feedback loops. Features automatic pattern tracking, learning reinforcement, and trend detection. Enables continuous improvement through honest self-assessment and iterative refinement.
Expert plugin for quality code reviews focused on testing. Provides specialized expertise for Jest, Playwright, and general test quality analysis with automated review and improvement suggestions.
Comprehensive plugin for building Claude Code components: agents, skills, commands, hooks, MCP servers, and complete plugins. Features specialized builders for creating, updating, auditing, and maintaining components with validation scripts, templates, and best practices guidance following Anthropic's plugin-dev patterns.
A collection of plugins and meta-agents for Claude Code, Anthropic's official CLI for Claude. These plugins extend Claude's capabilities with specialized agents, skills, commands, and hooks.
CI/CD Pipeline: Automated validation, changelog management, and semantic versioning. See CI/CD Guide →
Now available on Claude Marketplace! Install with one command or browse plugins directly from Claude Code.
Claude Code is an interactive CLI tool that helps with software engineering tasks. It supports:
A meta-agent for building other Claude agents!
The Agent Builder plugin provides comprehensive tools for creating Claude Code extensions. It includes expert agents, auto-invoked skills, validation scripts, and templates for all component types.
Features:
Quick Start:
# Create a new agent
/claude-component-builder:agents:new code-reviewer
# Create a new skill
/claude-component-builder:skills:new analyzing-data
# Create a new command
/claude-component-builder:commands:new run-tests
# Create a new hook
/claude-component-builder:hooks:new validate-writes
# Create a complete plugin
/claude-component-builder:plugins:new my-tools
Claude critiquing Claude - A feedback loop for continuous improvement!
The Self-Improvement plugin enables Claude to critique its own work, identify quality issues, and create feedback loops for continuous learning. It includes a self-critic agent and skills for quality analysis, improvement suggestions, and feedback loops.
Features:
Quick Start:
# Comprehensive review of recent work
/review-my-work
# Quick quality assessment
/quality-check
Use Cases:
Install directly from the Claude Code marketplace:
# Add the marketplace to your Claude Code settings
claude marketplace add https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations
# Install specific plugins
claude plugin install claude-component-builder
claude plugin install self-improvement
Or add to your .claude/settings.json:
{
"marketplaces": [
"https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations"
],
"plugins": [
"claude-component-builder",
"self-improvement"
]
}
Install plugins to your user-level Claude directory:
# Clone the repository
git clone https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations.git
cd claude-code-plugin-automations
# Link plugins to Claude user directory
mkdir -p ~/.claude/plugins
ln -s $(pwd)/claude-component-builder ~/.claude/plugins/claude-component-builder
ln -s $(pwd)/self-improvement-plugin ~/.claude/plugins/self-improvement
Install plugins at the project level:
# Navigate to your project
cd /path/to/your/project
# Clone the plugins
git clone https://github.com/C0ntr0lledCha0s/claude-code-plugin-automations.git
# Link components to project .claude directory
mkdir -p .claude/{agents,skills,commands}