···28282929### Method 1: One-Shot SKILL.md (Easiest)
30303131-Fetch the installer and give it to your AI:
3131+Copy-paste this command to fetch and execute the installer:
32323333```bash
3434-# Download the installer skill
3535-curl -O https://tangled.org/metaend.eth.xyz/open-conductor/conductor-install.md
3434+curl -fsSL https://tangled.org/metaend.eth.xyz/open-conductor/conductor-install.md -o /tmp/conductor-install.md && echo "Now give /tmp/conductor-install.md to your AI and say: Run this skill"
3635```
37363838-Then in Claude Code or OpenCode:
3939-1. Say: "Run this skill" and attach `conductor-install.md`
4040-2. The AI will install Conductor automatically
4141-3. Run `/conductor-setup` to configure
3737+Or inline (paste this directly in Claude Code or OpenCode):
3838+3939+```
4040+Fetch https://tangled.org/metaend.eth.xyz/open-conductor/conductor-install.md and execute it as a skill to install Conductor
4141+```
4242+4343+Then run `/conductor-setup` to configure.
42444345**Perfect for:** Quick setup without leaving your editor.
4446
+19
conductor-install.md
···4949.opencode/commands/
5050```
51515252+### 4. Fetch and Write Directive Files
5353+5454+Use curl to fetch each directive file from the remote repository:
5555+5656+```bash
5757+# Base URL for raw files
5858+BASE_URL="https://tangled.org/metaend.eth.xyz/open-conductor/conductor/commands"
5959+6060+# Fetch all 6 directive files
6161+curl -fsSL "$BASE_URL/setup.md" -o conductor/commands/setup.md
6262+curl -fsSL "$BASE_URL/new-track.md" -o conductor/commands/new-track.md
6363+curl -fsSL "$BASE_URL/implement.md" -o conductor/commands/implement.md
6464+curl -fsSL "$BASE_URL/status.md" -o conductor/commands/status.md
6565+curl -fsSL "$BASE_URL/review.md" -o conductor/commands/review.md
6666+curl -fsSL "$BASE_URL/revert.md" -o conductor/commands/revert.md
6767+```
6868+6969+If curl fails on any file, report the error and HALT.
7070+5271### 4. Write All Directive Files
53725473Create the 6 core directive files in `conductor/commands/`: