conductor-json

Installation
SKILL.md

Conductor JSON

Generate conductor.json to share workspace scripts with teammates.

Schema

Field Type Description
scripts.setup string Command when setting up workspace
scripts.run string Command to start dev server
scripts.archive string Command when archiving workspace
runScriptMode "concurrent" | "nonconcurrent" Kill in-progress run scripts before new one

Setup Script Pattern

Standard setup copies config dirs and env file from repo root to workspace:

bun install; for d in .agents .claude .codex .cursor; do [ -d "$CONDUCTOR_ROOT_PATH/$d" ] && mkdir -p "$CONDUCTOR_WORKSPACE_PATH/$d" && rsync -a "$CONDUCTOR_ROOT_PATH/$d/." "$CONDUCTOR_WORKSPACE_PATH/$d/"; done; [ -f "$CONDUCTOR_ROOT_PATH/{ENV_FILE}" ] && cp "$CONDUCTOR_ROOT_PATH/{ENV_FILE}" "$CONDUCTOR_WORKSPACE_PATH/{ENV_FILE}"
Related skills

More from robinebers/skills

Installs
2
GitHub Stars
24
First Seen
Mar 16, 2026