conductor-setup
Configure a Rails project to work with Conductor (parallel coding agents)
npx skills add sickn33/agentic-awesome-skills --skill conductor-setup --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
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`
- When to Use
- 1. conductor.json (project root)
- 2. bin/conductor-setup (executable)
- 3. script/server (executable)
- 4. Update Rails Config Files
- config/initializers/sidekiq.rb
- config/cable.yml
- config/environments/development.rb
- config/initializers/rackattack.rb
- Limitations
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}"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.