Skip to content
Development
Command

/conductor-setup

Initialize the Conductor environment in a new project - creates conductor/ directory structure

From plugin
orchestrator-supaconductor
37139 skills15 agents39 commands1 hook
Install
> /plugin marketplace add Ibrahim-3d/orchestrator-supaconductor
> /plugin install orchestrator-supaconductor@ibrahim-plugins

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/conductor-setup

Context preview

What this command does when you run it.

Initialize the Conductor environment in a new project - creates conductor/ directory structure

Command definition

conductor-setup.md
name: conductor-setup
description: "Initialize the Conductor environment in a new project - creates conductor/ directory structure"
user_invocable: true
model: sonnet

/conductor:setup — Initialize Conductor Environment

Set up the Conductor workflow system in a new project. Creates the directory structure, registry files, and documentation needed to start using tracks.

Usage

/conductor:setup

What It Creates

conductor/
├── config.json         # Project-level SupaConductor configuration
├── tracks.md           # Track registry (list of all tracks)
├── index.md            # Current project status overview
├── workflow.md         # Evaluate-Loop process documentation
├── decision-log.md     # Business and technical decision history
├── knowledge/
│   ├── patterns.md     # Discovered code patterns and conventions
│   └── errors.json     # Known errors and their fixes
└── tracks/             # Individual track directories (created per-track)

Your Task

1. Check if Already Initialized

If `conductor/` directory exists, show current status instead of reinitializing.

2. Create Directory Structure

mkdir -p conductor/tracks
mkdir -p conductor/knowledge

3. Create config.json

{
  "mode": "agentic",
  "max_fix_cycles": 5,
  "planning_model": "opus",
  "execution_model": "sonnet"
}

**Mode Options:**

  • `"agentic"` (default) — Fully autonomous. Never stops for user input. All decisions resolved by agents, leads, and board.
  • `"human-in-the-loop"` — Stops at key decision points to ask the user. Pauses on ambiguity, blockers, fix limits, and high-impact decisions.

4. Create tracks.md

# Conductor Track Registry

Active and completed development tracks.

## Active Tracks

| Track ID | Name | Type | Status | Step | Created |
|----------|------|------|--------|------|---------|
| (none yet) | | | | | |

## Completed Tracks

| Track ID | Name | Completed | Summary |
|----------|------|-----------|---------|
| (none yet) | | | |

5. Create index.md

# Project Status

**Last Updated**: YYYY-MM-DD

## Current Focus
(no active tracks)

## Recent Completions
(none)

## System Health
- Conductor v3 initialized
- Superpowers: enabled

6. Create decision-log.md

# Decision Log

Technical and business decisions made during development.

## Format

### DECISION-XXX: [Title]
- **Date**: YYYY-MM-DD
- **Track**: track-id
- **Decision**: What was decided
- **Rationale**: Why this decision was made
- **Alternatives**: What else was considered
- **Impact**: Effects on architecture/product/business

7. Create knowledge/patterns.md

# Code Patterns & Conventions

Discovered patterns from the codebase.

## Architecture Patterns
(add as discovered)

## Common Solutions
(add as discovered)

## Anti-patterns to Avoid
(add as discovered)

8. Create knowledge/errors.json

{
  "version": 1,
  "errors": []
}

9. Create workflow.md Link/Copy

Copy or reference the Conductor workflow documentation from the plugin's `docs/workflow.md`.

Confirmation Output

## Conductor Initialized

**Location**: conductor/
**Files Created**: 7 files, 2 directories
**Mode**: agentic (fully autonomous)
**To switch modes**: Edit `conductor/config.json` → set `"mode": "human-in-the-loop"`

**Next Steps**:
1. Run `/conductor:new-track` to create your first development track
2. Or run `/orchestrator-supaconductor:go <your goal>` to create and start a track automatically

**Quick Start**:
/orchestrator-supaconductor:go Add user authentication

Re-initialization

If conductor/ already exists:

## Conductor Already Initialized

**Status**: Active
**Tracks**: 3 active, 7 complete
**Last Activity**: 2026-02-16

Run `/conductor:status` to see current state.

Related

  • `/conductor:new-track` — Create your first track
  • `/orchestrator-supaconductor:go` — Start working immediately
  • `conductor/workflow.md` — Full process documentation
Read more
Ships withorchestrator-supaconductor

Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills

Get the whole plugin