conductor-implement

conductor-implement is a skill for Claude Code, Codex from vasilistsavalias/conductor_for_codex. It costs 23 tokens per session (1,597 once invoked), scanned A, original, Apache-2.0.

An execution step for the Conductor framework, which organizes coding work into planned tracks. It carries out the tasks in a track and then sends the result through a review checkpoint.

In plain words
What is it for?
Executing track plans, checking the required Conductor project files, and running the review step after implementation.
Why use it?
It connects the written plan to the actual code changes and automatically checks the completed work. It also verifies the framework setup before starting.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/vasilistsavalias/conductor_for_codex/conductor-implement
Any agent
npx skills add vasilistsavalias/conductor_for_codex --skill conductor-implement
Clone the repo
git clone --depth 1 https://github.com/vasilistsavalias/conductor_for_codex

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-implement

README.md
[![agentmods](https://agentmods.dev/badge/skills/vasilistsavalias/conductor_for_codex/conductor-implement.svg)](https://agentmods.dev/skills/vasilistsavalias/conductor_for_codex/conductor-implement)
Your own site
<a href="https://agentmods.dev/skills/vasilistsavalias/conductor_for_codex/conductor-implement"><img src="https://agentmods.dev/badge/skills/vasilistsavalias/conductor_for_codex/conductor-implement.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,597 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00023 $0.01597
Opus 5 $0.00012 $0.00798
Sonnet 5 $0.00005 $0.00319
Haiku 4.5 $0.00002 $0.00160

Measured 5d ago against content hash a946da8f9431, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

conductor-implement 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 5d 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-implement/SKILL.md · 146 lines

How it starts

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

User Input

$ARGUMENTS

CRITICAL: Conductor artifacts are local-only.

  • You MUST NOT modify anything outside the repository root.
  • Ensure .gitignore includes conductor/. If missing, add it.
  • You MUST NOT git add/git commit Conductor artifacts unless implementing tasks that explicitly require it.

1.0 SYSTEM DIRECTIVE

You are an autonomous AI agent executing tracks in the Conductor spec-driven development framework. Operate independently. Do not stop to ask for confirmation unless you encounter an unrecoverable error or a genuine high-impact ambiguity that cannot be resolved from available context. Announce your decisions as you make them.

If any file operation or shell command fails, halt immediately, report the specific failure, and wait for instructions.


1.1 SETUP CHECK

Verify the Conductor environment before proceeding.

  1. Check for the existence of these files using the Universal File Resolution Protocol (see below):

    • Product Definition (conductor/product.md)
    • Tech Stack (conductor/tech-stack.md)
    • Workflow (conductor/workflow.md)
    • Tracks Registry (conductor/tracks.md)
  2. Universal File Resolution Protocol: Resolve each file by checking in this order:

    • conductor/<file> (default location)
    • conductor/index.md → read it to find the canonical path
  3. If any required file is missing: report which file is missing, announce "Conductor is not set up. Please run /conductor-setup first.", and halt.


2.0 TRACK SELECTION

Identify the track to implement without requiring user confirmation.

  1. Resolve Tracks Registry using the Universal File Resolution Protocol.

  2. Parse the registry: Split on --- separators. For each section extract:

    • Status: [ ] (new), [~] (in_progress), [x] (implemented)
    • Track description (from **Track: ...** line)
    • Link to track folder
  3. Select track:

    • If $ARGUMENTS is provided: find the first track whose description contains the argument text (case-insensitive). If no match found, report "No track matching '$ARGUMENTS' found." and list available tracks, then halt.
    • If $ARGUMENTS is empty: select the first track with status [ ] or [~] (resume in-progress first, then start the next new one).
    • If no eligible track found: announce "No incomplete tracks found. All tracks are implemented or the registry is empty." and halt.

Read the full file on GitHub · 146 lines

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. 5d ago First seen · 146 lines · 23 tokens per session scan A a946da8f9431

Subscribe to this mod's changes

conductor-implement is a skill published in the GitHub repository vasilistsavalias/conductor_for_codex (20 stars, last pushed 16d ago), licensed Apache-2.0. It adds 23 tokens to every session and 1,597 once invoked, about $0.0001 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

prisma-postgres-setup

Set up a new Prisma Postgres database and connect it to a local project using the Management API. Use when asked to "set up a database", "create a Prisma Postgres project", "get a connection string", "connect my app to Prisma Postgres", or "provision a database".

nitrocloudofficial/nitrostack · 67 tokens

prisma-client-api

Prisma Client API reference covering model queries, filters, operators, and client methods. Use when writing database queries, using CRUD operations, filtering data, or configuring Prisma Client. Triggers on "prisma query", "findMany", "create", "update", "delete", "$transaction".

nitrocloudofficial/nitrostack · 64 tokens

release

Prepare, validate, and publish a Pake release. Not for version bumps without release intent.

tw93/Pake · 21 tokens

pake

Package any website or local web build into a lightweight desktop app using Pake (Tauri/Rust). Use when the user wants to: wrap a URL as a native app, build a desktop app from a website or a local dist/ folder, use Pake CLI to package a page, set up proxy for a packaged app, customize app icons or bundle IDs, or…

tw93/Pake · 119 tokens

prisma-mongodb-upgrade

Decision and migration guide for Prisma ORM MongoDB projects on v6, which have no upgrade path to v7. Use when a MongoDB project asks about upgrading Prisma, when "upgrade to prisma 7" comes up in a project with provider = "mongodb", or when evaluating a move to Prisma Next. Triggers on "upgrade prisma mongodb"…

nitrocloudofficial/nitrostack · 95 tokens

acceptance

End-to-end verification and self-evidence for a delivery in any repository, with or without a preconfigured verify plan. Discover an existing plan when one was handed to this run; otherwise author checks and publish a standalone acceptance. Pick the proving surface (CLI / web / desktop / iOS Simulator), drive the real…

lobehub/lobehub · 163 tokens