guitar-fretboard
Installation
SKILL.md
Guitar Fretboard Visualization Skill
Create interactive React artifacts for guitar fretboard visualizations with proper music theory.
Core Music Theory Reference
Notes and Intervals
const NOTES = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B']
const STANDARD_TUNING = ['E', 'A', 'D', 'G', 'B', 'E'] // low to high (6th to 1st string)
// Semitone intervals from root
const INTERVALS = {
root: 0, minor2nd: 1, major2nd: 2, minor3rd: 3, major3rd: 4,
perfect4th: 5, tritone: 6, perfect5th: 7, minor6th: 8,
major6th: 9, minor7th: 10, major7th: 11, octave: 12
}