feat(kb): intermediate progressions + level tags for jazz, gospel, rnb (task P-20)
6 new level:'intermediate' progressions (tritone sub, rhythm-changes bridge, gospel passing-dim walk-up, tonicized amen w/ borrowed iv, Just-the-Two-of-Us loop, Sir Duke chromatic vi) x 2 guitar plays each; all progressions in the three styles now carry explicit level. KB: 56 progressions / 112 plays. Critic returned once (3 caption theory misstatements), fixed, PASS on re-gate (voice-leading arithmetic hand-verified from shape constants). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -146,6 +146,54 @@ export default {
|
||||
},
|
||||
],
|
||||
|
||||
'jazz-tritone-sub': [
|
||||
{
|
||||
label: 'Shells down one string (chromatic slide)',
|
||||
level: 'intermediate',
|
||||
chords: [
|
||||
{ shape: SHELL_5.min7, note: 'ii7 — root on the A string' },
|
||||
{ shape: SHELL_5.dom7, note: '♭II7 — two fingers drop a fret; the guide-tone finger stays put' },
|
||||
{ shape: SHELL_5.maj7, note: 'Imaj7 — one more fret down: home' },
|
||||
],
|
||||
tips: 'The tritone sub turns the ii–V–I bass into a one-string chromatic slide: 2 → ♭2 → 1, one fret per chord. It works because ♭II7 and V7 share their guide tones — the 3rd and ♭7 swap names (in C: Db7 has F and B, exactly G7\'s B and F). Target the ♭II7\'s 3rd when soloing; it is the old V7\'s ♭7.',
|
||||
},
|
||||
{
|
||||
label: 'Drop-2 slide, top four strings',
|
||||
level: 'intermediate',
|
||||
chords: [
|
||||
{ shape: DROP2.min7Root, note: 'ii7 — root position, root on the D string' },
|
||||
{ shape: DROP2.dom7Root, note: '♭II7 — same architecture, one fret down' },
|
||||
{ shape: DROP2.maj7Root, note: 'Imaj7 — one more fret down: three voices fall a half step, one holds' },
|
||||
],
|
||||
tips: 'The upper-register version: three root-position drop-2 grips, roots falling a fret at a time. Each change is three voices dropping a half step around one common tone — the ii7\'s ♭3 is held to become the ♭II7\'s 3rd, then the ♭II7\'s ♭7 is held to become the Imaj7\'s 7. High and thin, it stays out of the piano\'s way, and the top string sings the guide-tone line: held into the ♭II7, falling a half step into home.',
|
||||
},
|
||||
],
|
||||
|
||||
'jazz-rhythm-bridge': [
|
||||
{
|
||||
label: 'Shells around the circle',
|
||||
level: 'intermediate',
|
||||
chords: [
|
||||
{ shape: SHELL_6.dom7, note: 'III7 — V7 of vi, the first domino' },
|
||||
{ shape: SHELL_5.dom7, note: 'VI7 — root string up, nearly the same fret' },
|
||||
{ shape: SHELL_6.dom7, note: 'II7 — the pattern repeats a whole step down' },
|
||||
{ shape: SHELL_5.dom7, note: 'V7 — hands you back the A section' },
|
||||
],
|
||||
tips: 'One grip pair, four chords: roots falling in fifths alternate 6th → 5th string at almost the same fret, so the whole bridge sits in one position. Each chord is the V of the next — comp two bars each and voice-lead the ♭7 falling a half step onto the next chord\'s 3rd.',
|
||||
},
|
||||
{
|
||||
label: 'Drop-2, alternating inversions (top four strings)',
|
||||
level: 'intermediate',
|
||||
chords: [
|
||||
{ shape: DROP2.dom7Inv2, note: 'III7 — 3rd in the bass voice' },
|
||||
{ shape: DROP2.dom7Root, note: 'VI7 — nearest root-position grip' },
|
||||
{ shape: DROP2.dom7Inv2, note: 'II7 — back to the inversion' },
|
||||
{ shape: DROP2.dom7Root, note: 'V7 — root position into the turnaround' },
|
||||
],
|
||||
tips: 'Alternating the 3rd-in-the-bass grip with root-position drop-2 keeps every change a short hop — root-position-only would force five-fret jumps around this circle. Two bars per chord is room to decorate: restrike on the Charleston, or walk the top voice.',
|
||||
},
|
||||
],
|
||||
|
||||
'jazz-blues': [
|
||||
{
|
||||
label: 'Shells through the form',
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
// Level tags + the two intermediate progressions added by task P-20.
|
||||
// Intermediate-entry theory verified against: musictheorymanual.com &
|
||||
// learnjazzstandards.com (Girl from Ipanema tritone sub, ii–♭II7–I),
|
||||
// pianogroove.com (Ipanema harmony/comping analysis), Wikipedia: Rhythm changes
|
||||
// (bridge = III7–VI7–II7–V7 circle of dominants), docs/progression-repertoire.md §1.
|
||||
export default [
|
||||
{
|
||||
id: 'jazz-251-major',
|
||||
@@ -9,6 +14,7 @@ export default [
|
||||
mode: 'major',
|
||||
songs: ['All The Things You Are', 'Tune Up — Miles Davis', 'Honeysuckle Rose'],
|
||||
tip: 'The 7th of each chord resolves down a half-step to the 3rd of the next — that two-note thread is the whole progression.',
|
||||
level: 'foundation',
|
||||
},
|
||||
{
|
||||
id: 'jazz-251-minor',
|
||||
@@ -20,6 +26,7 @@ export default [
|
||||
mode: 'minor',
|
||||
songs: ['Autumn Leaves (bridge)', 'Blue Bossa', 'Beautiful Love'],
|
||||
tip: 'Same engine as the major ii–V–I, darker fuel: the ♭5 of the iiø7 is the ♭9 colour waiting to happen on the V7.',
|
||||
level: 'foundation',
|
||||
},
|
||||
{
|
||||
id: 'jazz-rhythm-a',
|
||||
@@ -31,6 +38,7 @@ export default [
|
||||
mode: 'major',
|
||||
songs: ['I Got Rhythm — Gershwin', 'Oleo — Sonny Rollins', 'Blue Moon'],
|
||||
tip: 'A loop, not a line — bar 4 hands you straight back to bar 1. Learn it as one circular shape your hands repeat.',
|
||||
level: 'foundation',
|
||||
},
|
||||
{
|
||||
id: 'jazz-625',
|
||||
@@ -42,6 +50,7 @@ export default [
|
||||
mode: 'major',
|
||||
songs: ['Fly Me to the Moon', 'Autumn Leaves (A section, relative view)'],
|
||||
tip: 'Pure circle-of-fifths motion: every root falls a fifth. If you can hear this one, you can predict half the jazz repertoire.',
|
||||
level: 'foundation',
|
||||
},
|
||||
{
|
||||
id: 'jazz-blues',
|
||||
@@ -53,5 +62,30 @@ export default [
|
||||
mode: 'major',
|
||||
songs: ["Billie's Bounce — Charlie Parker", "Now's the Time — Charlie Parker", 'Tenor Madness — Sonny Rollins'],
|
||||
tip: 'A 12-bar blues wearing a suit: bars 8-10 swap the plain V-IV for a VI7 → ii–V turnaround. Hear bar 8 coming and you sound like a jazz player.',
|
||||
level: 'foundation',
|
||||
},
|
||||
{
|
||||
id: 'jazz-tritone-sub',
|
||||
name: 'Tritone-sub cadence (ii–♭II7–I)',
|
||||
rn: ['ii7', '♭II7', 'Imaj7'],
|
||||
degrees: [2, 1, 0],
|
||||
qualities: ['min7', 'dom7', 'maj7'],
|
||||
bars: [1, 1, 2],
|
||||
mode: 'major',
|
||||
songs: ['The Girl from Ipanema — Jobim (ii–♭II7–I in the A section)', 'standard substitute for any V7 in any tune'],
|
||||
tip: 'The ♭II7 replaces V7 because they share the same tritone — the 3rd and ♭7 simply trade names. What changes is the bass: 2–♭2–1, a chromatic slide instead of a fifth-fall. Your old ii–V line still works over it.',
|
||||
level: 'intermediate',
|
||||
},
|
||||
{
|
||||
id: 'jazz-rhythm-bridge',
|
||||
name: 'Rhythm changes bridge (circle of dominants)',
|
||||
rn: ['III7', 'VI7', 'II7', 'V7'],
|
||||
degrees: [4, 9, 2, 7],
|
||||
qualities: ['dom7', 'dom7', 'dom7', 'dom7'],
|
||||
bars: [2, 2, 2, 2],
|
||||
mode: 'major',
|
||||
songs: ['I Got Rhythm — Gershwin (bridge)', 'Oleo — Sonny Rollins (bridge)', 'Anthropology — Parker/Gillespie (bridge)'],
|
||||
tip: 'Four dominants, each the V of the next — the bridge leaves home and falls back in fifths until it hands you the A section. Follow the ♭7 of each chord dropping a half step onto the 3rd of the next; that chromatic thread is your solo map.',
|
||||
level: 'intermediate',
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user