Validates Conductor project artifacts for completeness,
Add this skill
npx mdskills install sickn33/conductor-validatorValidates Conductor project structure but lacks specific validation logic and actionable steps
1---2name: conductor-validator3description: Validates Conductor project artifacts for completeness,4 consistency, and correctness. Use after setup, when diagnosing issues, or5 before implementation to verify project context.6allowed-tools: Read Glob Grep Bash7metadata:8 model: opus9 color: cyan10---1112# Check if conductor directory exists13ls -la conductor/1415# Find all track directories16ls -la conductor/tracks/1718# Check for required files19ls conductor/index.md conductor/product.md conductor/tech-stack.md conductor/workflow.md conductor/tracks.md20```2122## Use this skill when2324- Working on check if conductor directory exists tasks or workflows25- Needing guidance, best practices, or checklists for check if conductor directory exists2627## Do not use this skill when2829- The task is unrelated to check if conductor directory exists30- You need a different domain or tool outside this scope3132## Instructions3334- Clarify goals, constraints, and required inputs.35- Apply relevant best practices and validate outcomes.36- Provide actionable steps and verification.37- If detailed examples are required, open `resources/implementation-playbook.md`.3839## Pattern Matching4041**Status markers in tracks.md:**4243```44- [ ] Track Name # Not started45- [~] Track Name # In progress46- [x] Track Name # Complete47```4849**Task markers in plan.md:**5051```52- [ ] Task description # Pending53- [~] Task description # In progress54- [x] Task description # Complete55```5657**Track ID pattern:**5859```60<type>_<name>_<YYYYMMDD>61Example: feature_user_auth_2025011562```63
Full transparency — inspect the skill content before installing.