Enderfga

Three Minds — Development skill for Claude Code

Development community

三个臭皮匠顶个诸葛亮 - Multi-Agent Consensus Discussion System.

How to install Three Minds

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Enderfga/three-minds and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Three Minds does

三个臭皮匠顶个诸葛亮 - Multi-Agent Consensus Discussion System.

Alternatives in Development

  • Cs2 Knife — Create a high-fidelity procedural Three.js 3D reconstruction of 14.1k ★
  • Webgpu Claude Skill — A Claude skill for developing WebGPU applications with Three.js 610 ★
  • Maintainer — Meta-skill that loads all llmwiki governance docs and exposes the three maintainer slash commands 375 ★

README

Three Minds 🧠🧠🧠

**Multi-Agent Collaboration System** - Three AI agents working together on the same codebase. Not just talking—they actually read files, write code, and run tests.

What's Special?

Three Minds uses **Claude Code** as the unified agent framework, with proxy support for **any model** (GPT, Gemini, etc.). This means:

  • 🔧 Full Agent Loop - Every model gets Claude Code's powerful tool use capabilities
  • 🤖 True Multi-Model - GPT, Gemini, Claude debating with the same capabilities
  • 👥 Real Collaboration - Three agents review each other's actual code changes

Requirements

  • Node.js 18+
  • Claude Code CLI (claude command must be available)
  • claude-code-skill (required for multi-model proxy)

Installation

# Clone
git clone https://github.com/Enderfga/three-minds.git
cd three-minds

# Install dependencies
npm install

# Build
npm run build

# Link globally (optional)
npm link

Quick Start

# Basic usage (3 Claude agents)
three-minds "Review and improve this project's code quality" --dir ./my-project

# Multi-model: GPT + Gemini + Claude 🌐
three-minds "Design a scalable API" --config multi-model --dir ./project

# Code review preset
three-minds "Review all code in src/" --config code-review --dir ./project

Multi-Model Support 🌐

Three Minds supports **any model** through Claude Code's proxy feature. All agents share the same powerful tool use capabilities—only the "brain" differs.

How It Works

┌─────────────┐     ┌─────────────┐     ┌─────────────┐
│   GPT-4o    │     │  Gemini 2.0 │     │   Claude    │
└──────┬──────┘     └──────┬──────┘     └──────┬──────┘
       │                   │                   │
       ▼                   ▼                   ▼
┌──────────────────────────────────────────────────────┐
│              Claude Code Agent Framework              │
│  (tool use, file ops, code execution, multi-turn)