{"id":"913a0409-1ef9-49f0-b470-2002c69dad72","shortId":"8RtMSH","kind":"skill","title":"conductor-new-track","tagline":"Create a new track with specification and phased implementation plan","description":"# New Track\n\nCreate a new track (feature, bug fix, chore, or refactor) with a detailed specification and phased implementation plan.\n\n## Use this skill when\n\n- Working on new track tasks or workflows\n- Needing guidance, best practices, or checklists for new track\n\n## Do not use this skill when\n\n- The task is unrelated to new track\n- You need a different domain or tool outside this scope\n\n## Instructions\n\n- Clarify goals, constraints, and required inputs.\n- Apply relevant best practices and validate outcomes.\n- Provide actionable steps and verification.\n- If detailed examples are required, open `resources/implementation-playbook.md`.\n\n## Pre-flight Checks\n\n1. Verify Conductor is initialized:\n   - Check `conductor/product.md` exists\n   - Check `conductor/tech-stack.md` exists\n   - Check `conductor/workflow.md` exists\n   - If missing: Display error and suggest running `/conductor:setup` first\n\n2. Load context files:\n   - Read `conductor/product.md` for product context\n   - Read `conductor/tech-stack.md` for technical context\n   - Read `conductor/workflow.md` for TDD/commit preferences\n\n## Track Classification\n\nDetermine track type based on description or ask user:\n\n```\nWhat type of track is this?\n\n1. Feature - New functionality\n2. Bug - Fix for existing issue\n3. Chore - Maintenance, dependencies, config\n4. Refactor - Code improvement without behavior change\n```\n\n## Interactive Specification Gathering\n\n**CRITICAL RULES:**\n\n- Ask ONE question per turn\n- Wait for user response before proceeding\n- Tailor questions based on track type\n- Maximum 6 questions total\n\n### For Feature Tracks\n\n**Q1: Feature Summary**\n\n```\nDescribe the feature in 1-2 sentences.\n[If argument provided, confirm: \"You want to: {argument}. Is this correct?\"]\n```\n\n**Q2: User Story**\n\n```\nWho benefits and how?\n\nFormat: As a [user type], I want to [action] so that [benefit].\n```\n\n**Q3: Acceptance Criteria**\n\n```\nWhat must be true for this feature to be complete?\n\nList 3-5 acceptance criteria (one per line):\n```\n\n**Q4: Dependencies**\n\n```\nDoes this depend on any existing code, APIs, or other tracks?\n\n1. No dependencies\n2. Depends on existing code (specify)\n3. Depends on incomplete track (specify)\n```\n\n**Q5: Scope Boundaries**\n\n```\nWhat is explicitly OUT of scope for this track?\n(Helps prevent scope creep)\n```\n\n**Q6: Technical Considerations (optional)**\n\n```\nAny specific technical approach or constraints?\n(Press enter to skip)\n```\n\n### For Bug Tracks\n\n**Q1: Bug Summary**\n\n```\nWhat is broken?\n[If argument provided, confirm]\n```\n\n**Q2: Steps to Reproduce**\n\n```\nHow can this bug be reproduced?\nList steps:\n```\n\n**Q3: Expected vs Actual Behavior**\n\n```\nWhat should happen vs what actually happens?\n```\n\n**Q4: Affected Areas**\n\n```\nWhat parts of the system are affected?\n```\n\n**Q5: Root Cause Hypothesis (optional)**\n\n```\nAny hypothesis about the cause?\n(Press enter to skip)\n```\n\n### For Chore/Refactor Tracks\n\n**Q1: Task Summary**\n\n```\nWhat needs to be done?\n[If argument provided, confirm]\n```\n\n**Q2: Motivation**\n\n```\nWhy is this work needed?\n```\n\n**Q3: Success Criteria**\n\n```\nHow will we know this is complete?\n```\n\n**Q4: Risk Assessment**\n\n```\nWhat could go wrong? Any risky changes?\n```\n\n## Track ID Generation\n\nGenerate track ID in format: `{shortname}_{YYYYMMDD}`\n\n- Extract shortname from feature/bug summary (2-3 words, lowercase, hyphenated)\n- Use current date\n- Example: `user-auth_20250115`, `nav-bug_20250115`\n\nValidate uniqueness:\n\n- Check `conductor/tracks.md` for existing IDs\n- If collision, append counter: `user-auth_20250115_2`\n\n## Specification Generation\n\nCreate `conductor/tracks/{trackId}/spec.md`:\n\n```markdown\n# Specification: {Track Title}\n\n**Track ID:** {trackId}\n**Type:** {Feature|Bug|Chore|Refactor}\n**Created:** {YYYY-MM-DD}\n**Status:** Draft\n\n## Summary\n\n{1-2 sentence summary}\n\n## Context\n\n{Product context from product.md relevant to this track}\n\n## User Story (for features)\n\nAs a {user}, I want to {action} so that {benefit}.\n\n## Problem Description (for bugs)\n\n{Bug description, steps to reproduce}\n\n## Acceptance Criteria\n\n- [ ] {Criterion 1}\n- [ ] {Criterion 2}\n- [ ] {Criterion 3}\n\n## Dependencies\n\n{List dependencies or \"None\"}\n\n## Out of Scope\n\n{Explicit exclusions}\n\n## Technical Notes\n\n{Technical considerations or \"None specified\"}\n\n---\n\n_Generated by Conductor. Review and edit as needed._\n```\n\n## User Review of Spec\n\nDisplay the generated spec and ask:\n\n```\nHere is the specification I've generated:\n\n{spec content}\n\nIs this specification correct?\n1. Yes, proceed to plan generation\n2. No, let me edit (opens for inline edits)\n3. Start over with different inputs\n```\n\n## Plan Generation\n\nAfter spec approval, generate `conductor/tracks/{trackId}/plan.md`:\n\n### Plan Structure\n\n```markdown\n# Implementation Plan: {Track Title}\n\n**Track ID:** {trackId}\n**Spec:** spec.md\n**Created:** {YYYY-MM-DD}\n**Status:** [ ] Not Started\n\n## Overview\n\n{Brief summary of implementation approach}\n\n## Phase 1: {Phase Name}\n\n{Phase description}\n\n### Tasks\n\n- [ ] Task 1.1: {Description}\n- [ ] Task 1.2: {Description}\n- [ ] Task 1.3: {Description}\n\n### Verification\n\n- [ ] {Verification step for phase 1}\n\n## Phase 2: {Phase Name}\n\n{Phase description}\n\n### Tasks\n\n- [ ] Task 2.1: {Description}\n- [ ] Task 2.2: {Description}\n\n### Verification\n\n- [ ] {Verification step for phase 2}\n\n## Phase 3: {Phase Name} (if needed)\n\n...\n\n## Final Verification\n\n- [ ] All acceptance criteria met\n- [ ] Tests passing\n- [ ] Documentation updated (if applicable)\n- [ ] Ready for review\n\n---\n\n_Generated by Conductor. Tasks will be marked [~] in progress and [x] complete._\n```\n\n### Phase Guidelines\n\n- Group related tasks into logical phases\n- Each phase should be independently verifiable\n- Include verification task after each phase\n- TDD tracks: Include test writing tasks before implementation tasks\n- Typical structure:\n  1. **Setup/Foundation** - Initial scaffolding, interfaces\n  2. **Core Implementation** - Main functionality\n  3. **Integration** - Connect with existing system\n  4. **Polish** - Error handling, edge cases, docs\n\n## User Review of Plan\n\nDisplay the generated plan and ask:\n\n```\nHere is the implementation plan:\n\n{plan content}\n\nIs this plan correct?\n1. Yes, create the track\n2. No, let me edit (opens for inline edits)\n3. Add more phases/tasks\n4. Start over\n```\n\n## Track Creation\n\nAfter plan approval:\n\n1. Create directory structure:\n\n   ```\n   conductor/tracks/{trackId}/\n   ├── spec.md\n   ├── plan.md\n   ├── metadata.json\n   └── index.md\n   ```\n\n2. Create `metadata.json`:\n\n   ```json\n   {\n     \"id\": \"{trackId}\",\n     \"title\": \"{Track Title}\",\n     \"type\": \"feature|bug|chore|refactor\",\n     \"status\": \"pending\",\n     \"created\": \"ISO_TIMESTAMP\",\n     \"updated\": \"ISO_TIMESTAMP\",\n     \"phases\": {\n       \"total\": N,\n       \"completed\": 0\n     },\n     \"tasks\": {\n       \"total\": M,\n       \"completed\": 0\n     }\n   }\n   ```\n\n3. Create `index.md`:\n\n   ```markdown\n   # Track: {Track Title}\n\n   **ID:** {trackId}\n   **Status:** Pending\n\n   ## Documents\n\n   - Specification\n   - Implementation Plan\n\n   ## Progress\n\n   - Phases: 0/{N} complete\n   - Tasks: 0/{M} complete\n\n   ## Quick Links\n\n   - Back to Tracks\n   - Product Context\n   ```\n\n4. Register in `conductor/tracks.md`:\n   - Add row to tracks table\n   - Format: `| [ ] | {trackId} | {title} | {created} | {created} |`\n\n5. Update `conductor/index.md`:\n   - Add track to \"Active Tracks\" section\n\n## Completion Message\n\n```\nTrack created successfully!\n\nTrack ID: {trackId}\nLocation: conductor/tracks/{trackId}/\n\nFiles created:\n- spec.md - Requirements specification\n- plan.md - Phased implementation plan\n- metadata.json - Track metadata\n- index.md - Track navigation\n\nNext steps:\n1. Review spec.md and plan.md, make any edits\n2. Run /conductor:implement {trackId} to start implementation\n3. Run /conductor:status to see project progress\n```\n\n## Error Handling\n\n- If directory creation fails: Halt and report, do not register in tracks.md\n- If any file write fails: Clean up partial track, report error\n- If tracks.md update fails: Warn user to manually register track","tags":["conductor","new","track","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding"],"capabilities":["skill","source-sickn33","skill-conductor-new-track","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/conductor-new-track","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34882 github stars · SKILL.md body (8,063 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-24T12:50:49.863Z","embedding":null,"createdAt":"2026-04-18T21:34:56.390Z","updatedAt":"2026-04-24T12:50:49.863Z","lastSeenAt":"2026-04-24T12:50:49.863Z","tsv":"'-2':227,516 '-3':457 '-5':274 '/conductor':129,972,980 '/plan.md':636 '/spec.md':494 '0':874,879,897,901 '1':108,168,226,293,515,554,607,664,684,768,812,838,962 '1.1':671 '1.2':674 '1.3':677 '2':132,172,296,456,488,556,613,686,703,773,817,848,970 '2.1':693 '2.2':696 '20250115':468,472,487 '3':178,273,302,558,622,705,778,826,880,978 '4':183,784,830,911 '5':925 '6':213 'accept':260,275,551,713 'action':93,255,538 'activ':931 'actual':366,373 'add':827,915,928 'affect':376,384 'api':289 'append':482 'appli':85 'applic':721 'approach':331,662 'approv':632,837 'area':377 'argument':230,236,348,411 'ask':160,195,593,800 'assess':433 'auth':467,486 'back':906 'base':156,208 'behavior':188,367 'benefit':244,258,541 'best':48,87 'boundari':310 'brief':658 'broken':346 'bug':22,173,339,342,358,471,504,545,546,859 'case':789 'caus':387,394 'chang':189,440 'check':107,113,116,119,475 'checklist':51 'chore':24,179,505,860 'chore/refactor':400 'clarifi':79 'classif':152 'clean':1005 'code':185,288,300 'collis':481 'complet':271,430,873,878,899,903,934 'complete._':736 'conductor':2,110,578,727 'conductor-new-track':1 'conductor/index.md':927 'conductor/product.md':114,137 'conductor/tech-stack.md':117,142 'conductor/tracks':492,634,842,943 'conductor/tracks.md':476,914 'conductor/workflow.md':120,147 'config':182 'confirm':232,350,413 'connect':780 'consider':326,572 'constraint':81,333 'content':602,807 'context':134,140,145,519,521,910 'core':774 'correct':239,606,811 'could':435 'counter':483 'creat':5,17,491,507,649,814,839,849,864,881,923,924,937,946 'creation':834,990 'creep':323 'criteria':261,276,423,552,714 'criterion':553,555,557 'critic':193 'current':462 'date':463 'dd':511,653 'depend':181,281,284,295,297,303,559,561 'describ':222 'descript':158,543,547,668,672,675,678,690,694,697 'detail':29,98 'determin':153 'differ':71,626 'directori':840,989 'display':124,588,795 'doc':790 'document':718,891 'domain':72 'done':409 'draft':513 'edg':788 'edit':581,617,621,821,825,969 'enter':335,396 'error':125,786,986,1010 'exampl':99,464 'exclus':568 'exist':115,118,121,176,287,299,478,782 'expect':364 'explicit':313,567 'extract':451 'fail':991,1004,1014 'featur':21,169,217,220,224,268,503,531,858 'feature/bug':454 'file':135,945,1002 'final':710 'first':131 'fix':23,174 'flight':106 'format':247,448,920 'function':171,777 'gather':192 'generat':443,444,490,576,590,600,612,629,633,725,797 'go':436 'goal':80 'group':739 'guidanc':47 'guidelin':738 'halt':992 'handl':787,987 'happen':370,374 'help':320 'hyphen':460 'hypothesi':388,391 'id':442,446,479,500,645,852,887,940 'implement':13,33,640,661,764,775,804,893,952,973,977 'improv':186 'includ':751,759 'incomplet':305 'independ':749 'index.md':847,882,957 'initi':112,770 'inlin':620,824 'input':84,627 'instruct':78 'integr':779 'interact':190 'interfac':772 'iso':865,868 'issu':177 'json':851 'know':427 'let':615,819 'line':279 'link':905 'list':272,361,560 'load':133 'locat':942 'logic':743 'lowercas':459 'm':877,902 'main':776 'mainten':180 'make':967 'manual':1018 'mark':731 'markdown':495,639,883 'maximum':212 'messag':935 'met':715 'metadata':956 'metadata.json':846,850,954 'miss':123 'mm':510,652 'motiv':415 'must':263 'n':872,898 'name':666,688,707 'nav':470 'nav-bug':469 'navig':959 'need':46,69,406,420,709 'needed._':583 'new':3,7,15,19,41,53,66,170 'next':960 'none':563,574 'note':570 'one':196,277 'open':102,618,822 'option':327,389 'outcom':91 'outsid':75 'overview':657 'part':379 'partial':1007 'pass':717 'pend':863,890 'per':198,278 'phase':12,32,663,665,667,683,685,687,689,702,704,706,737,744,746,756,870,896,951 'phases/tasks':829 'plan':14,34,611,628,637,641,794,798,805,806,810,836,894,953 'plan.md':845,950,966 'polish':785 'practic':49,88 'pre':105 'pre-flight':104 'prefer':150 'press':334,395 'prevent':321 'problem':542 'proceed':205,609 'product':139,520,909 'product.md':523 'progress':733,895,985 'project':984 'provid':92,231,349,412 'q1':219,341,402 'q2':240,351,414 'q3':259,363,421 'q4':280,375,431 'q5':308,385 'q6':324 'question':197,207,214 'quick':904 'read':136,141,146 'readi':722 'refactor':26,184,506,861 'regist':912,997,1019 'relat':740 'relev':86,524 'report':994,1009 'reproduc':354,360,550 'requir':83,101,948 'resources/implementation-playbook.md':103 'respons':203 'review':579,585,724,792,963 'risk':432 'riski':439 'root':386 'row':916 'rule':194 'run':128,971,979 'scaffold':771 'scope':77,309,316,322,566 'section':933 'see':983 'sentenc':228,517 'setup':130 'setup/foundation':769 'shortnam':449,452 'skill':37,59 'skill-conductor-new-track' 'skip':337,398 'source-sickn33' 'spec':587,591,601,631,647 'spec.md':648,844,947,964 'specif':10,30,191,329,489,496,597,605,892,949 'specifi':301,307,575 'start':623,656,831,976 'status':512,654,862,889,981 'step':94,352,362,548,681,700,961 'stori':242,529 'structur':638,767,841 'success':422,938 'suggest':127 'summari':221,343,404,455,514,518,659 'system':382,783 'tabl':919 'tailor':206 'task':43,62,403,669,670,673,676,691,692,695,728,741,753,762,765,875,900 'tdd':757 'tdd/commit':149 'technic':144,325,330,569,571 'test':716,760 'timestamp':866,869 'titl':498,643,854,856,886,922 'tool':74 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'total':215,871,876 'track':4,8,16,20,42,54,67,151,154,165,210,218,292,306,319,340,401,441,445,497,499,527,642,644,758,816,833,855,884,885,908,918,929,932,936,939,955,958,1008,1020 'trackid':493,501,635,646,843,853,888,921,941,944,974 'tracks.md':999,1012 'true':265 'turn':199 'type':155,163,211,251,502,857 'typic':766 'uniqu':474 'unrel':64 'updat':719,867,926,1013 'use':35,57,461 'user':161,202,241,250,466,485,528,534,584,791,1016 'user-auth':465,484 'valid':90,473 've':599 'verif':96,679,680,698,699,711,752 'verifi':109,750 'vs':365,371 'wait':200 'want':234,253,536 'warn':1015 'without':187 'word':458 'work':39,419 'workflow':45 'write':761,1003 'wrong':437 'x':735 'yes':608,813 'yyyi':509,651 'yyyy-mm-dd':508,650 'yyyymmdd':450","prices":[{"id":"ce4c8e17-7f0d-483e-af35-7eee3fc22248","listingId":"913a0409-1ef9-49f0-b470-2002c69dad72","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:34:56.390Z"}],"sources":[{"listingId":"913a0409-1ef9-49f0-b470-2002c69dad72","source":"github","sourceId":"sickn33/antigravity-awesome-skills/conductor-new-track","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/conductor-new-track","isPrimary":false,"firstSeenAt":"2026-04-18T21:34:56.390Z","lastSeenAt":"2026-04-24T12:50:49.863Z"}],"details":{"listingId":"913a0409-1ef9-49f0-b470-2002c69dad72","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"conductor-new-track","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34882,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-24T06:41:17Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"f8a438e7c1b5aa869322eff731f1d59f98efe64d","skill_md_path":"skills/conductor-new-track/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/conductor-new-track"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"conductor-new-track","description":"Create a new track with specification and phased implementation plan"},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/conductor-new-track"},"updatedAt":"2026-04-24T12:50:49.863Z"}}