What is the problem?
I (And many others) do not know a lot about music theory, but know how to play chords or what chords we seek for our composition.
What should this feature achieve?
This method of constructing chords would involve playing the desired chords (In the internal pads or external MIDI device) and record them for further use.
Are there any workarounds?
None that I know of (Apart of sending them from a DAW, of course) I can always seek for the chrods through the menus, but it can be a long and frustrating endeavour.
Any links to related discussions?
I know you guys probably work with C, rust or something like that, but this library can do the the chord detection i suggest: tonal/packages/chord-detect at main · tonaljs/tonal · GitHub
Chord.detect(["D", "F#", "A", "C"]); // => ["D7"]
Chord.detect(["F#", "A", "C", "D"]); // => ["D7/F#"]
Chord.detect(["A", "C", "D", "F#"]); // => ["D7/A"]
Chord.detect(["E", "G#", "B", "C#"]); // => ["E6", "C#m7/E"]
Any references to other products?
EDIT: Synthesia has a functionality ni which, if you play a chord it gets “translated” to words, such algorythm could be used to input the chords in the chord editor.