TopRank Skills

Home / Claw Skills / 其他 / guitar-chord
Official OpenClaw rules 15%

guitar-chord

Guitar chord toolkit with chord identification, chord diagrams, capo calculation, and more. Features: - Identify chord from notes (reverse lookup) - Look up notes and diagrams from chord name - View chord inversions - View scales and scale diagrams - Capo transposition calculator

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 guitar-chord 技能。 若已安装,则直接安装 guitar-chord 技能。

Overview

Skill Key
deantiwang/guitar-chord
Author
deantiwang
Source Repo
openclaw/skills
Version
1.0.1
Source Path
skills/deantiwang/guitar-chord
Latest Commit SHA
60b3c48d129d8870f5fd49b0a36fb3b8cf7f7c4a

Extracted Content

SKILL.md excerpt

# Guitar Chord Tool

## 1. Forward Lookup (Chord Name → Notes)

```bash
python3 chord_identifier.py <chord_name>
```

Example:
```
python3 chord_identifier.py Cmaj7
→ **Cmaj7**
  Notes: C, E, G, B
```

## 2. With Chord Diagram

```bash
python3 chord_identifier.py <chord_name> --diagram
```

## 3. Reverse Lookup (Notes → Chord Name)

```bash
python3 chord_identifier.py --identify <note1> [note2] ...
```

Example:
```
python3 chord_identifier.py --identify C E G B
→ Result:
  • Cmaj7
```

## 4. Chord Inversions

```bash
python3 chord_identifier.py --inversion <chord_name>
```

Example:
```
python3 chord_identifier.py --inversion C7
→ **C7** inversions:
  Root: C, E, G, A#
  1st: E, G, A#, C
  2nd: G, A#, C, E
  3rd: A#, C, E, G
```

## 5. Scale Lookup

```bash
python3 chord_identifier.py --scale "<scale>"
python3 chord_identifier.py --scale "<scale>" --diagram
```

Supported scales:
- `major`, `minor`, `harmonic_minor`, `melodic_minor`
- `pentatonic_major`, `pentatonic_minor`, `blues`
- `dorian`, `phrygian`, `lydian`, `mixolydian`, `locrian`

Example:
```
python3 chord_identifier.py --scale "C major"
→ **C Major**
  Scale: C, D, E, F, G, A, B
```

## 6. Capo Calculator

Formula: **Actual Pitch = Open Chord Pitch + Capo Fret**

Quick Reference:
| Chord | 1st | 2nd | 3rd | 4th |
|-------|-----|-----|-----|-----|
| C | C#/Db | D | D#/Eb | E |
| G | G#/Ab | A | A#/Bb | C |
| Am | A#/Bb | B | C | C#/Db |

## Supported Chord Types

- **Triads**: major, minor, diminished, augmented, sus2, sus4
- **Sevenths**: maj7, 7, m7, m7b5, dim7, aug7, maj7#5, 7#5, 7b5, mMaj7
- **Ninths**: maj9, 9, m9

## Note Formats

Supports:
- Natural: C, D, E, F, G, A, B
- Sharps: C#, D#, F#, G#, A#
- Flats: Db, Eb, Gb, Ab, Bb
- Symbols: ♯ (sharp), ♭ (flat)
- Case insensitive

Related Claw Skills