Conductor-for-all: Skill for Claude Code

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

conductor-newTrack is a skill for Claude Code, Codex from hlhr202/Conductor-for-all. It costs 19 tokens per session (2,847 once invoked), scanned A, original, Apache-2.0.

A planning tool for starting a new feature or bug fix in the Conductor development framework. It creates the feature's written requirements and task plan, then records it in the project tracker.

In plain words
What is it for?
Creating a new feature or bug-fix track, writing its specification and plan, and updating the list of planned work.
Why use it?
It gives each piece of work a clear scope and checklist before coding begins.

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-newTrack/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-newTrack

README.md
[![agentmods](https://agentmods.dev/badge/skills/hlhr202/conductor-for-all/conductor-newtrack/github.svg)](https://agentmods.dev/skills/hlhr202/conductor-for-all/conductor-newtrack)
Your own site
<a href="https://agentmods.dev/skills/hlhr202/conductor-for-all/conductor-newtrack"><img src="https://agentmods.dev/badge/skills/hlhr202/conductor-for-all/conductor-newtrack/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for conductor-newTrack

Your own site · 80×15
<a href="https://agentmods.dev/skills/hlhr202/conductor-for-all/conductor-newtrack"><img src="https://agentmods.dev/badge/skills/hlhr202/conductor-for-all/conductor-newtrack.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,847 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.00019 $0.02847
Opus 5 $0.00010 $0.01424
Sonnet 5 $0.00004 $0.00569
Haiku 4.5 $0.00002 $0.00285

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

Security

Grade A, and why

conductor-newTrack 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 12d 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-newTrack/SKILL.md · 188 lines

How it starts

The opening of the file, as written. The whole thing — 188 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 guide the user through the creation of a new "Track" (a feature or bug fix), generate the necessary specification (spec.md) and plan (plan.md) files, and organize them within a dedicated track directory.

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.

PLAN MODE PROTOCOL: Parts of this process run within Plan Mode. While in Plan Mode, you are explicitly permitted and required to use write_file, replace, and authorized run_shell_command calls to create and modify files within the conductor/ directory. CRITICAL: You MUST use relative paths starting with conductor/ (e.g., conductor/product.md) for all file operations. Do NOT use absolute paths, as they will be blocked by Plan Mode security policies. REDIRECTION (e.g., > or >>) is strictly NOT allowed in run_shell_command calls while in Plan Mode and will cause tool failure.


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 files are missing, you MUST halt the operation immediately.
    • Announce: "Conductor is not set up. Please run /conductor:setup to set up the environment."
    • Do NOT proceed to New Track Initialization.

2.0 NEW TRACK INITIALIZATION

PROTOCOL: Follow this sequence precisely.

2.1 Get Track Description and Determine Type

  1. Load Project Context: Read and understand the content of the project documents (Product Definition, Tech Stack, etc.) resolved via the Universal File Resolution Protocol.
  2. Get Track Description & Enter Plan Mode:
    • If {{args}} is empty:
      1. Call the enter_plan_mode tool with the reason: "Defining new track".
      2. Ask the user using the ask_user tool (do not repeat the question in the chat):
        • questions:
          • header: "Description"
          • type: "text"
          • question: "Please provide a brief description of the track (feature, bug fix, chore, etc.) you wish to start."
          • placeholder: "e.g., Implement user authentication" Await the user's response and use it as the track description.
    • If {{args}} contains a description:
      1. Use the content of {{args}} as the track description.
      2. Call the enter_plan_mode tool with the reason: "Defining new track".
  3. Infer Track Type: Analyze the description to determine if it is a "Feature" or "Something Else" (e.g., Bug, Chore, Refactor). Do NOT ask the user to classify it.

Read the full file on GitHub · 188 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. 12d ago First seen · 188 lines · 19 tokens per session scan A 5e89f28351d0

Subscribe to this mod's changes

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