Conductor-for-all: Skill for Claude Code

.agents/skills/conductor-implement/SKILL.md

conductor-implement is a skill for Claude Code, Codex from hlhr202/Conductor-for-all. It costs 16 tokens per session (3,430 once invoked), scanned A, original, Apache-2.0.

An implementation tool for carrying out the tasks in a selected Conductor feature plan. Conductor is a development workflow that organizes work into written feature or bug-fix tracks.

In plain words
What is it for?
Selecting a planned track, reading its requirements and task list, and implementing the specified changes.
Why use it?
It gives the coding agent a defined set of tasks and checks that the project setup is ready before work starts.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is hlhr202/Conductor-for-all's own configuration. It tells Claude Code and Codex how to work on Conductor-for-all itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Conductor-for-all configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hlhr202/Conductor-for-all. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/hlhr202/Conductor-for-all/main/.agents/skills/conductor-implement/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hlhr202/Conductor-for-all

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/hlhr202/conductor-for-all/conductor-implement.svg)](https://agentmods.dev/skills/hlhr202/conductor-for-all/conductor-implement)
Your own site
<a href="https://agentmods.dev/skills/hlhr202/conductor-for-all/conductor-implement"><img src="https://agentmods.dev/badge/skills/hlhr202/conductor-for-all/conductor-implement.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,430 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.00016 $0.03430
Opus 5 $0.00008 $0.01715
Sonnet 5 $0.00003 $0.00686
Haiku 4.5 $0.00002 $0.00343

Measured 7d ago against content hash b1b4fc6b6b92, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 7d 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.

.agents/skills/conductor-implement/SKILL.md · 222 lines

How it starts

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

1.0 SYSTEM DIRECTIVE

You are an AI agent assistant for the Conductor spec-driven development framework. Your current task is to implement a track. You MUST follow this protocol precisely.

CRITICAL: You must validate the success of every tool call. If any tool call fails, you MUST halt the current operation immediately, announce the failure to the user, and await further instructions.


1.1 SETUP CHECK

PROTOCOL: Verify that the Conductor environment is properly set up.

  1. Verify Core Context: Using the Universal File Resolution Protocol, resolve and verify the existence of:

    • Product Definition
    • Tech Stack
    • Workflow
  2. Handle Failure: If ANY of these are missing (or their resolved paths do not exist), Announce: "Conductor is not set up. Please run /conductor:setup." and HALT.


2.0 TRACK SELECTION

PROTOCOL: Identify and select the track to be implemented.

  1. Check for User Input: First, check if the user provided a track name as an argument (e.g., /conductor:implement <track_description>).

  2. Locate and Parse Tracks Registry:

    • Resolve the Tracks Registry.
    • Read and parse this file. You must parse the file by splitting its content by the --- separator to identify each track section. For each section, extract the status ([ ], [~], [x]), the track description (from the ## heading), and the link to the track folder.
    • CRITICAL: If no track sections are found after parsing, announce: "The tracks file is empty or malformed. No tracks to implement." and halt.
  3. Continue: Immediately proceed to the next step to select a track.

  4. Select Track:

    • If a track name was provided:
      1. Perform an exact, case-insensitive match for the provided name against the track descriptions you parsed.
      2. If a unique match is found, immediately call the ask_user tool to confirm the selection (do not repeat the question in the chat):
        • questions:
          • header: "Confirm"
          • question: "I found track '<track_description>'. Is this correct?"
          • type: "yesno"
      3. If no match is found, or if the match is ambiguous, immediately call the ask_user tool to inform the user and request the correct track name (do not repeat the question in the chat):
        • questions:
          • header: "Clarify"
          • question: "I couldn't find a unique track matching the name you provided. Did you mean '<next_available_track>'? Or please type the exact track name."
          • type: "text"
    • If no track name was provided (or if the previous step failed):
      1. Identify Next Track: Find the first track in the parsed tracks file that is NOT marked as [x] Completed.
      2. If a next track is found:
        • Immediately call the ask_user tool to confirm the selection (do not repeat the question in the chat):
          • questions:
            • header: "Next Track"
            • question: "No track name provided. Would you like to proceed with the next incomplete track: '<track_description>'?"
            • type: "yesno"
        • If confirmed, proceed with this track. Otherwise, immediately call the ask_user tool to request the correct track name (do not repeat the question in the chat):
          • questions:
            • header: "Clarify"
            • question: "Please type the exact name of the track you would like to implement."
            • type: "text"
      3. If no incomplete tracks are found:
        • Announce: "No incomplete tracks found in the tracks file. All tasks are completed!"
        • Halt the process and await further user instructions.

Read the full file on GitHub · 222 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. 7d ago First seen · 222 lines · 16 tokens per session scan A b1b4fc6b6b92

Subscribe to this mod's changes

conductor-implement is a skill published in the GitHub repository hlhr202/Conductor-for-all (52 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 16 tokens to every session and 3,430 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

jira-assistant

Manage Jira issues via Atlassian MCP — search, create, update, transition status, and handle sprint tasks. Auto-detects workspace configuration. Use when user says "create a Jira ticket", "update my sprint", "check Jira status", "transition this issue", "search Jira", or "move ticket to done". Do NOT use for…

tech-leads-club/agent-skills · 84 tokens

nx-generate

Generate code using Nx generators — scaffold projects, libraries, features, or run workspace-specific generators with proper discovery, validation, and verification. Use when user says "create a new library", "scaffold a component", "generate code with Nx", "run a generator", "nx generate", or any code scaffolding…

tech-leads-club/agent-skills · 110 tokens

nx-workspace

Configure, explore, and optimize Nx monorepo workspaces. Use when setting up Nx, exploring workspace structure, configuring project boundaries, analyzing affected projects, optimizing build caching, or implementing CI/CD with affected commands. Keywords — nx, monorepo, workspace, projects, targets, affected. Do NOT…

tech-leads-club/agent-skills · 87 tokens

issue-creation

Trigger: issue creation, bug reports, feature requests, or issue approval. Create and triage GitHub issues from repository evidence.

Gentleman-Programming/gentle-ai · 30 tokens

sdd-tasks

Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.

Gentleman-Programming/gentle-ai · 25 tokens

systemic-issue-triage

Trigger: new issue, bug report, triage, backlog, issue flood, community report, root cause, dead-end, blocked user. Attack issues by root class, never one-by-one; fixes must shrink the system, not grow it.

Gentleman-Programming/gentle-ai · 57 tokens