program-nord-electro-6

program-nord-electro-6 is a skill for Claude Code from chardigio/nord-electro-6-skill. It costs 86 tokens per session (1,893 once invoked), scanned A, original, MIT.

A tool for managing saved sounds, called programs, on a Nord Electro 6 keyboard connected by USB.

In plain words
What is it for?
Use it to list, copy, move, swap, rename, or delete programs and arrange them for a live setlist.
Why use it?
It avoids manually rearranging keyboard presets and provides commands for viewing and changing their order and names.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the nord-electro-6 plugin — 1 skill shipped together

Good fit Use it to list, copy, move, swap, rename, or delete programs and arrange them for a live setlist.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chardigio/nord-electro-6-skill/program-nord-electro-6
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add chardigio/nord-electro-6-skill --skill program-nord-electro-6
Clone the repo
git clone --depth 1 https://github.com/chardigio/nord-electro-6-skill

Made for: Claude Code.

Or install nord-electro-6, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for program-nord-electro-6

README.md
[![agentmods](https://agentmods.dev/badge/skills/chardigio/nord-electro-6-skill/program-nord-electro-6/github.svg)](https://agentmods.dev/skills/chardigio/nord-electro-6-skill/program-nord-electro-6)
Your own site
<a href="https://agentmods.dev/skills/chardigio/nord-electro-6-skill/program-nord-electro-6"><img src="https://agentmods.dev/badge/skills/chardigio/nord-electro-6-skill/program-nord-electro-6/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for program-nord-electro-6

Your own site · 80×15
<a href="https://agentmods.dev/skills/chardigio/nord-electro-6-skill/program-nord-electro-6"><img src="https://agentmods.dev/badge/skills/chardigio/nord-electro-6-skill/program-nord-electro-6.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,893 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.01893
Opus 5 $0.00043 $0.00946
Sonnet 5 $0.00017 $0.00379
Haiku 4.5 $0.00009 $0.00189

Measured 12d ago against content hash f720e6bfbfde, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

program-nord-electro-6 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/integration/verify-nord.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/program-nord-electro-6/SKILL.md · 215 lines

How it starts

The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Nord Electro 6 Program Manager

Manage program presets on a Nord Electro 6 keyboard connected over USB using the nord CLI tool.

Prerequisites

  • Hardware: Nord Electro 6 connected via USB
  • Binary: Compiled nord CLI in this skill's directory (<skill-dir>/nord)

All commands below assume you are cd'd into this skill's directory (the one this SKILL.md lives in). cd there once at the start and stay for the duration of the skill.

Build the CLI

make

Run Tests

# Unit tests (no hardware needed)
make test

# Integration tests (requires Nord connected via USB)
make test-integration

CLI Commands

List Programs

nord list                  # List populated banks (Program partition)
nord list -a               # Include empty banks
nord list -d               # Show sample dependencies
nord list -v               # Verbose (per-slot sizes, metadata)
nord list A                # Show all 16 slots in bank A
nord list -p 5             # List Live partition instead of Program

Output marks the active bank/slot with > and shows program names in quotes:

Nord Electro 6 — Program (partition 4)

  > A:1:1  "Grand Piano"
    B:2:3  "Rhodes Warm"
    C:1:1  "Organ Perc"

  3 populated / 26 total banks
  Active: Bank A

Per-bank view (nord list A) shows all 16 slots (4 pages x 4 programs):

Nord Electro 6 — Bank A

  > A:1:1  "Grand Piano"
    A:1:2  (empty)
    A:1:3  (empty)
    ...
    A:4:4  (empty)
  Active: A:1:1

Status

nord status    # Firmware version, protocols, partition summary

Copy

nord copy A F            # Copy A:1:1 -> F:1:1
nord copy A:1:3 F:2:1    # Copy bank A page 1 prog 3 -> bank F page 2 prog 1
  • Fails if destination is not empty (status=4). Delete first or pick an empty slot.
  • Firmware auto-assigns a unique name if the source name conflicts.

Move

nord move A F            # Move A:1:1 -> F:1:1 (source becomes empty)
nord move A:1:3 F:2:1    # Move specific slot

Read the full file on GitHub · 215 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 215 lines · 86 tokens per session scan A f720e6bfbfde

Subscribe to this mod's changes

program-nord-electro-6 is a skill published in the GitHub repository chardigio/nord-electro-6-skill (2 stars, last pushed 4mo ago), licensed MIT. It adds 86 tokens to every session and 1,893 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.