ported googles conductor to claude and opencode meta.orbiter.website
skills conductor opencode claudecli ai
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

conductor(install): Use curl to fetch directive files

chris fa09a187 8b386776

+28 -7
+9 -7
README.md
··· 28 28 29 29 ### Method 1: One-Shot SKILL.md (Easiest) 30 30 31 - Fetch the installer and give it to your AI: 31 + Copy-paste this command to fetch and execute the installer: 32 32 33 33 ```bash 34 - # Download the installer skill 35 - curl -O https://tangled.org/metaend.eth.xyz/open-conductor/conductor-install.md 34 + 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" 36 35 ``` 37 36 38 - Then in Claude Code or OpenCode: 39 - 1. Say: "Run this skill" and attach `conductor-install.md` 40 - 2. The AI will install Conductor automatically 41 - 3. Run `/conductor-setup` to configure 37 + Or inline (paste this directly in Claude Code or OpenCode): 38 + 39 + ``` 40 + Fetch https://tangled.org/metaend.eth.xyz/open-conductor/conductor-install.md and execute it as a skill to install Conductor 41 + ``` 42 + 43 + Then run `/conductor-setup` to configure. 42 44 43 45 **Perfect for:** Quick setup without leaving your editor. 44 46
+19
conductor-install.md
··· 49 49 .opencode/commands/ 50 50 ``` 51 51 52 + ### 4. Fetch and Write Directive Files 53 + 54 + Use curl to fetch each directive file from the remote repository: 55 + 56 + ```bash 57 + # Base URL for raw files 58 + BASE_URL="https://tangled.org/metaend.eth.xyz/open-conductor/conductor/commands" 59 + 60 + # Fetch all 6 directive files 61 + curl -fsSL "$BASE_URL/setup.md" -o conductor/commands/setup.md 62 + curl -fsSL "$BASE_URL/new-track.md" -o conductor/commands/new-track.md 63 + curl -fsSL "$BASE_URL/implement.md" -o conductor/commands/implement.md 64 + curl -fsSL "$BASE_URL/status.md" -o conductor/commands/status.md 65 + curl -fsSL "$BASE_URL/review.md" -o conductor/commands/review.md 66 + curl -fsSL "$BASE_URL/revert.md" -o conductor/commands/revert.md 67 + ``` 68 + 69 + If curl fails on any file, report the error and HALT. 70 + 52 71 ### 4. Write All Directive Files 53 72 54 73 Create the 6 core directive files in `conductor/commands/`: