conductor-setup

Configure Rails projects with Conductor workspace scaffolding and Redis setup.

Updated May 7, 2026
One-click install
npx skills add https://github.com/lgzarturo/codeconductor --skill conductor-setup-lgzarturo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: conductor-setup
Source: https://github.com/lgzarturo/codeconductor/tree/main/.agents/skills/conductor-setup
Command: npx skills add https://github.com/lgzarturo/codeconductor --skill conductor-setup-lgzarturo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill configures a Rails project to run Conductor, enabling parallel coding agents within isolated workspaces and consistent scaffolding.

Core Features & Use Cases

  • Workspace scaffolding: creates conductor.json, bin/conductor-setup, and script/server to standardize setup for Rails apps.
  • Redis-ready configuration: guides updating Rails config to use ENV['REDIS_URL'] (or ENV.fetch) for Redis endpoints across environments.
  • Workflow verification: provides steps to verify executables exist and Rails configs reference Redis URL correctly.

Quick Start

Run the Conductor setup on a Rails project to initialize workspace scaffolding and Redis-ready configuration.

Frequently Asked Questions about conductor-setup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I configure a Rails project for parallel coding agents with Conductor?

Configuring a Rails project for Conductor involves generating workspace scaffolding, including conductor.json, bin/conductor-setup, and script/server, to standardize isolated environments for parallel coding agents.

How do I set up Redis for Rails when using Conductor workspaces?

Setting up Redis for Rails with Conductor requires updating your environment configuration to reference Redis endpoints via ENV['REDIS_URL'] or ENV.fetch('REDIS_URL', 'redis://localhost:6379/0') to ensure port isolation across isolated workspaces.

What files does Conductor setup generate for Rails apps?

Conductor setup generates a conductor.json configuration file, a bin/conductor-setup executable script, and a script/server file to integrate parallel coding agent workflows directly into your Rails project structure.

Can I use Conductor with Rails projects that do not use Redis?

Conductor setup is designed for Rails projects needing Redis setup for workspace isolation, specifically guiding updates to use ENV['REDIS_URL']. Rails apps without Redis may not fully utilize the port isolation and workspace scaffolding features provided.

How do I verify my Rails app is correctly configured for Conductor?

Verifying Rails configuration for Conductor involves checking that the bin/conductor-setup and script/server executables exist in your project, and confirming your Rails configs correctly reference the Redis URL using ENV['REDIS_URL'] or ENV.fetch.