conductor-setup

conductor-setup is a skill for Claude Code, Codex from richardcb/oh-my-gemini. It costs 47 tokens per session (1,104 once invoked), scanned A, original, MIT.

A setup skill for Conductor, a structured workflow that organizes project context, technology details, development processes, and work tracks.

In plain words
What is it for?
It is for initializing a project’s conductor directory with product, technology, workflow, track, and code-style templates.
Why use it?
It creates the configuration files an agent needs to follow a consistent planning workflow in a project.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for initializing a project’s conductor directory with product, technology, workflow, track, and code-style templates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/richardcb/oh-my-gemini/conductor-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add richardcb/oh-my-gemini --skill conductor-setup
Clone the repo
git clone --depth 1 https://github.com/richardcb/oh-my-gemini

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for conductor-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/richardcb/oh-my-gemini/conductor-setup.svg)](https://agentmods.dev/skills/richardcb/oh-my-gemini/conductor-setup)
Your own site
<a href="https://agentmods.dev/skills/richardcb/oh-my-gemini/conductor-setup"><img src="https://agentmods.dev/badge/skills/richardcb/oh-my-gemini/conductor-setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,104 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00047 $0.01104
Opus 5 $0.00023 $0.00552
Sonnet 5 $0.00009 $0.00221
Haiku 4.5 $0.00005 $0.00110

Measured 8d ago against content hash 4df7e738ff16, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

conductor-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/conductor-setup/SKILL.md · 173 lines

How it starts

The opening of the file, as written. The whole thing — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Conductor Setup Skill

Goal

Initialize a complete Conductor workflow in the user's project with all necessary configuration files.

Activation Triggers

  • User runs /omg:setup or /omg:conductor-setup
  • User asks to "set up Conductor", "initialize workflow", or "enable planning"
  • Project has no conductor/ directory and user wants structured development

Hook Integration

Conductor phase enforcement is now handled by the phase-gate hook:

  • Advisory mode (default): Shows message at phase boundaries
  • Strict mode: Blocks progression until user confirms

Setup now focuses on creating files; enforcement is automatic via hooks.

Bundled Resources

This skill includes all Conductor templates:

  • templates/product.md - Product context template
  • templates/tech-stack.md - Technology stack template
  • templates/workflow.md - Development workflow template
  • templates/tracks.md - Track listing template
  • templates/code_styleguides/general.md - General code style guide

Process

1. Check Existing Setup

ls -la conductor/ 2>/dev/null && echo "EXISTS" || echo "NOT_FOUND"

If Conductor already exists, ask user if they want to:

  • Skip (keep existing)
  • Merge (add missing files)
  • Replace (overwrite all)

2. Create Directory Structure

mkdir -p conductor/tracks
mkdir -p conductor/code_styleguides

3. Gather Product Context

Ask the user:

  1. "What is this project? (one sentence)"
  2. "Who are the main users?"
  3. "What problem does it solve?"

4. Detect Tech Stack

Examine project files:

# Check for package.json (Node.js)
cat package.json 2>/dev/null | head -20

# Check for requirements.txt (Python)
cat requirements.txt 2>/dev/null | head -10

# Check for go.mod (Go)
cat go.mod 2>/dev/null | head -5

Ask user to confirm/correct detected stack.

5. Configure Hook Behavior (Optional)

Ask if they want to customize phase gate behavior:

Read the full file on GitHub · 173 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 173 lines · 47 tokens per session scan A 4df7e738ff16

Subscribe to this mod's changes

conductor-setup is a skill published in the GitHub repository richardcb/oh-my-gemini (16 stars, last pushed 5mo ago), licensed MIT. It adds 47 tokens to every session and 1,104 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

intuitive-tests

Use this skill whenever the user asks about unit test best practices, test organization, flat test suites, redundant tests, test refactors, pytest/JUnit/Jest/xUnit layout, test taxonomy, flaky tests, coverage quality, fixtures, mocks, parametrization, pruning existing UTs, or "which tests are worth keeping." It…

MiaoDX/intuitive-flow · 154 tokens

intuitive-preflight

Turn a vague task, plan, issue, or "LGTM/go ahead" request into an approval-ready preflight contract before implementation starts. Use when the user wants prompt preflight, clearer scope, non-goals, context package, acceptance criteria, definition of done, verification, stop gates, the exact execution command, or…

MiaoDX/intuitive-flow · 112 tokens

intuitive-shape

Shape a raw product or project idea into a bounded decision before planning or implementation. Use when deciding whether an idea deserves a bet, setting an appetite, comparing candidate bets under finite capacity, cutting scope, exposing rabbit holes and no-gos, or choosing BET, RESEARCH, RESHAPE, or PASS. This skill…

MiaoDX/intuitive-flow · 126 tokens

skill-runner

Run a bounded development task through named skills in an isolated, tmux-backed Codex or Claude session. Use for durable or artifact-sensitive worker phases, supervised skill runs, and post-run skill evaluation.

MiaoDX/intuitive-flow · 45 tokens

intuitive-doc

Create and maintain an intuitive human documentation surface for AI-agent-developed repos. Use when humans should only need README.md, ARCHITECTURE.md, STATUS.md, and docs/human/ while planning logs, generated docs, retrospectives, ADR detail, and implementation evidence stay in AI-agent-only folders.

MiaoDX/intuitive-flow · 64 tokens

create-migration

Create and manage Entity Framework Core database migrations including schema changes, seed data, and rollback strategies. Use when adding or modifying EF Core entities, setting up a new DbContext, applying data seeding, running dotnet ef commands, or troubleshooting migration conflicts.

andresharpe/dotbot · 55 tokens