track-creation

track-creation is a skill for Claude Code, Codex from richardcb/oh-my-gemini. It costs 48 tokens per session (681 once invoked), scanned A, original, MIT.

A guided way to start a Conductor feature track, which is a folder of files used to describe and plan a piece of work.

In plain words
What is it for?
It helps begin a new feature workflow from a feature name, using prepared templates and a dated track identifier.
Why use it?
It avoids creating the specification, implementation plan, and tracking information from scratch or forgetting part of the required structure.

Skill for Claude CodeCodex

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

Good fit It helps begin a new feature workflow from a feature name, using prepared templates and a dated track identifier.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/richardcb/oh-my-gemini/track-creation
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 track-creation
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 track-creation

README.md
[![agentmods](https://agentmods.dev/badge/skills/richardcb/oh-my-gemini/track-creation/github.svg)](https://agentmods.dev/skills/richardcb/oh-my-gemini/track-creation)
Your own site
<a href="https://agentmods.dev/skills/richardcb/oh-my-gemini/track-creation"><img src="https://agentmods.dev/badge/skills/richardcb/oh-my-gemini/track-creation/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 track-creation

Your own site · 80×15
<a href="https://agentmods.dev/skills/richardcb/oh-my-gemini/track-creation"><img src="https://agentmods.dev/badge/skills/richardcb/oh-my-gemini/track-creation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 681 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.00048 $0.00681
Opus 5 $0.00024 $0.00341
Sonnet 5 $0.00010 $0.00136
Haiku 4.5 $0.00005 $0.00068

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

Security

Grade A, and why

track-creation 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 10d 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/track-creation/SKILL.md · 104 lines

How it starts

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

Track Creation Skill

Goal

Create complete Conductor tracks with properly structured spec, plan, and metadata files.

Activation Triggers

  • User runs /omg:track with a feature name
  • User asks to "start a new track", "create a feature track", or "plan a feature"
  • User wants to begin a new Conductor workflow for a feature

Bundled Resources

This skill includes templates that the agent can read and use:

  • templates/spec.md - Track specification template
  • templates/plan.md - Implementation plan template
  • templates/metadata.json - Track metadata template

Process

1. Generate Track ID

Create a unique track ID:

FEATURE_SNAKE=$(echo "{{FEATURE_NAME}}" | tr '[:upper:]' '[:lower:]' | tr ' ' '_' | tr -cd '[:alnum:]_')
DATE=$(date +%Y%m%d)
TRACK_ID="${FEATURE_SNAKE}_${DATE}"
echo $TRACK_ID

2. Create Track Directory

mkdir -p conductor/tracks/${TRACK_ID}

3. Read and Customize Templates

Read each template from this skill's directory, replace placeholders, and write to the track directory.

Placeholders to replace:

  • {{FEATURE_NAME}} - User-provided feature name
  • {{TRACK_ID}} - Generated track ID
  • {{DATE}} - Current date (YYYY-MM-DD)
  • {{ISO_TIMESTAMP}} - Current ISO timestamp

4. Gather Requirements

Before writing the spec, ask clarifying questions:

  • What problem does this solve?
  • Who is the primary user?
  • What are the must-have requirements?
  • What's explicitly out of scope?

5. Write Files

Create three files in conductor/tracks/${TRACK_ID}/:

  1. spec.md - Filled with user's requirements
  2. plan.md - Phased implementation tasks
  3. metadata.json - Track state tracking

6. Update tracks.md

Add entry to conductor/tracks.md:

## [ ] Track: {{FEATURE_NAME}}
*ID: {{TRACK_ID}}*
*Link: [./tracks/{{TRACK_ID}}/]*
*Status: New*
*Created: {{DATE}}*

7. Verify Creation

ls -la conductor/tracks/${TRACK_ID}/
cat conductor/tracks/${TRACK_ID}/metadata.json

Read the full file on GitHub · 104 lines

Files

What ships with it

3 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. 10d ago First seen · 104 lines · 48 tokens per session scan A c0d2471f5d46

Subscribe to this mod's changes

track-creation is a skill published in the GitHub repository richardcb/oh-my-gemini (16 stars, last pushed 6mo ago), licensed MIT. It adds 48 tokens to every session and 681 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