Agent skill

conductor-setup

Configure a Rails project to work with Conductor (parallel coding agents)

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorread-onlyMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill conductor-setup --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.0
Declared author: Shpigford
Allowed tools: Bash(chmod*)Bash(bundle*)Bash(npm*)Bash(script/server)
Path: skills/conductor-setup/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

Set up this Rails project for Conductor, the Mac app for parallel coding agents. ## When to Use - You need to configure a Rails project so it runs correctly inside Conductor workspaces. - The project should support parallel coding agents with isolated ports, Redis settings, and shared secrets. - You want the standard `conductor.json`, `bin/conductor-setup`, and `script/server` scaffolding for a Rails repo. # What to Create ## 1. conductor.json (project root) Create `conductor.json` in the project root if it doesn't already exist: ```json { "scripts": { "setup": "bin/conductor-setup", "run": "script/server" } } ``` ## 2. bin/conductor-setup (executable) Create `bin/conductor-setup` if it doesn't already exist: ```bash #!/bin/bash set -e # Symlink .env from repo root (where secrets live, outside worktrees) [ -f "$CONDUCTOR_ROOT_PATH/.env" ] && ln -sf "$CONDUCTOR_ROOT_PATH/.env" .env # Symlink Rails master key [ -f "$CONDUCTOR_ROOT_PATH/config/master.key" ] && ln -sf "$CONDUCTOR_ROOT_PATH/config/master.key" config/master.key # Install dependencies bundle install npm install ``` Make it executable with `chmod +x bin/conductor-setup`. ## 3. script/server (executable) Create the `script`

What's inside
Steps it walks through
  1. When to Use
  2. 1. conductor.json (project root)
  3. 2. bin/conductor-setup (executable)
  4. 3. script/server (executable)
  5. 4. Update Rails Config Files
  6. config/initializers/sidekiq.rb
  7. config/cable.yml
  8. config/environments/development.rb
  9. config/initializers/rackattack.rb
  10. Limitations
Commands it runs
set -e
Symlink .env from repo root (where secrets live, outside worktrees)
Symlink Rails master key
Install dependencies
bundle install
npm install
export PORT=${CONDUCTOR_PORT:-3000}
export VITE_RUBY_PORT=$((PORT + 1000))
if [ -n "$CONDUCTOR_WORKSPACE_NAME" ]; then
export REDIS_URL="redis://localhost:6379/${REDIS_DB}"
More from agentic-awesome-skills
All skills →
About this skill
What does the conductor-setup skill do?

Configure a Rails project to work with Conductor (parallel coding agents)

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill conductor-setup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going